/* =========================================================
   VISMATE — brand marketing homepage
   Hand-written rebuild (no framework). Design tokens ported
   1:1 from the original (dark theme, oklch color space).
   ========================================================= */

/* ---------- Fonts ---------- */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");
/* Bebas Neue + Space Grotesk come from Google Fonts (linked in <head>). */

/* ---------- Design tokens (dark) ---------- */
:root {
  --radius: 0.5rem;

  --background: oklch(0.13 0.005 260);
  --foreground: oklch(0.98 0 0);
  --card: oklch(0.18 0.008 260);
  --primary: oklch(0.62 0.19 265);
  --primary-foreground: oklch(0.98 0 0);
  --muted-foreground: oklch(0.7 0.02 260);

  --brand-from: oklch(0.62 0.19 260);
  --brand-to: oklch(0.55 0.22 300);
  --brand-mint: oklch(0.86 0.15 170);
  --brand-deep: oklch(0.32 0.16 285);

  /* Derived helpers used across the page */
  --border-subtle: rgba(255, 255, 255, 0.06); /* original: border-border/60 */
  --border-card: rgba(255, 255, 255, 0.10);   /* original: border-white/10 */

  --font-sans: "Pretendard", "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Bebas Neue", "Pretendard", sans-serif;

  --maxw: 80rem; /* max-w-7xl */
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; border: 0 solid var(--border-subtle); }

html { scroll-behavior: smooth; }

html, body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
body { overflow-x: hidden; }

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; cursor: pointer; }
ul { list-style: none; }

.font-display { font-family: var(--font-display); letter-spacing: 0.02em; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.5rem; /* px-6 */
}
section { scroll-margin-top: 5rem; }
.section { padding-block: 6rem; } /* py-24 */
.section--divider { border-top: 1px solid var(--border-subtle); }
.bg-background { background: var(--background); }

/* Gradient text (brand) */
.grad-text {
  background: linear-gradient(to right, var(--brand-from), var(--brand-to));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Gradient CTA button */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--brand-from), var(--brand-to));
  color: var(--primary-foreground);
  font-weight: 600;
  transition: transform 0.2s ease;
}
.btn-brand:hover { transform: scale(1.02); }
.btn-brand svg { width: 1rem; height: 1rem; }

/* Horizontal, snap card rail */
.rail {
  margin-inline: -1.5rem;
  padding: 0 1.5rem 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail__track {
  display: flex;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-subtle);
  background: color-mix(in oklab, var(--background) 80%, transparent);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.site-header__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  height: 4rem;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.brand-word {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 1.5rem;
  line-height: 1;
}
.main-nav { display: none; }
.main-nav a {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
  position: relative;
  padding-block: 1.25rem;
}
.main-nav a:hover { color: var(--foreground); }
.main-nav a.is-active { color: var(--foreground); }
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--foreground);
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}
.header-cta { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.menu-btn { color: rgba(255, 255, 255, 0.7); display: inline-flex; }
.menu-btn:hover { color: var(--foreground); }
.menu-btn svg { width: 1.25rem; height: 1.25rem; }

/* mobile dropdown */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  background: color-mix(in oklab, var(--background) 92%, transparent);
  backdrop-filter: blur(24px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.mobile-nav a:hover { color: var(--foreground); }

/* ============================================================
   HERO (full-bleed video)
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - 4rem);
  width: 100%;
  overflow: hidden;
  background: #000;
}
.hero video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ============================================================
   MASCOT SECTION
   ============================================================ */
.mascot-sec {
  position: relative;
  overflow: hidden;
  background: #000;
  padding-block: 5rem;
  text-align: center;
}
.mascot-eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  color: #a3a3a3; /* neutral-400 */
}
.mascot-title {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.mascot-stage {
  margin-top: 4rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.bubble {
  position: relative;
  max-width: 36rem;
}
.bubble__inner {
  position: relative;
  border-radius: 1rem;
  border: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  text-align: left;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bubble__tail {
  display: none;
  position: absolute;
  right: -0.5rem;
  top: 2.5rem;
  height: 1rem;
  width: 1rem;
  transform: rotate(45deg);
  border-right: 1px solid var(--border-card);
  border-top: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.04);
}
.bubble__text {
  white-space: pre-line;
  font-weight: 500;
  line-height: 1.65;
  color: #fff;
}
.caret {
  display: inline-block;
  height: 1.25rem;
  width: 2px;
  margin-left: 0.125rem;
  transform: translateY(0.25rem);
  background: #fff;
  animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

.mascot-holder {
  position: relative;
  height: 16rem;
  width: 16rem;
  perspective: 900px;
}
.mascot-tilt {
  position: relative;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
  will-change: transform;
}
.mascot-float {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  animation: mascotFloat 3.5s ease-in-out infinite;
}
@keyframes mascotFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.mascot-glow {
  position: absolute;
  left: 1.5rem; right: 1.5rem;
  bottom: 1rem;
  height: 2.5rem;
  border-radius: 50%;
  background: color-mix(in oklab, var(--brand-from) 30%, transparent);
  filter: blur(32px);
}
.mascot-img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(139, 92, 246, 0.45));
}

/* ============================================================
   SECTION HEADER (ghost English word behind Korean title)
   ============================================================ */
.sec-head { position: relative; }
.sec-head__en {
  pointer-events: none;
  position: absolute;
  left: -0.25rem;
  top: -1.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 3.75rem;
  color: rgba(255, 255, 255, 0.06);
}
.sec-head__ko {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
}
.sec-lead {
  margin-top: 2rem;
  max-width: 42rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Design section custom header */
.design-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: linear-gradient(to right, #7c5cff, #4f8bff);
  padding: 0.375rem 1rem;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(124, 92, 255, 0.25);
}
.design-title {
  margin-top: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
.design-sub { margin-top: 1rem; font-size: 0.875rem; color: var(--muted-foreground); }

.rail-wrap { margin-top: 3.5rem; }

/* ============================================================
   AD IMAGE CARD (client-supplied full-card images)
   ============================================================ */
.ad-image-card {
  display: block;
  width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ad-image-card img { display: block; width: 100%; height: auto; }
.ad-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(124, 92, 255, 0.45);
}
@media (min-width: 768px) {
  .ad-image-card { width: 380px; }
}

/* ============================================================
   SECTION IMAGE (client-supplied full-section designs:
   film, real-result, CTA, subscription)
   ============================================================ */
.section-image {
  display: block;
  margin-inline: auto;
  width: 100%;
  max-width: 700px;   /* portrait section cards */
}
.section-image img { display: block; width: 100%; height: auto; }
.section-image--wide { max-width: 960px; }   /* landscape CTA */
a.section-image { transition: transform 0.3s ease; }
a.section-image:hover { transform: translateY(-4px); }
.section-image + .section-image { margin-top: 3.5rem; }

/* ============================================================
   TEAM
   ============================================================ */
.team-intro {
  margin-top: 1.5rem;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.team-stack { margin-top: 4rem; display: flex; flex-direction: column; gap: 3rem; }
.tilt-wrap {
  margin-inline: auto;
  width: 100%;
  max-width: 64rem;
  perspective: 1400px;
}
.tilt-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border-card);
  background: #0f0f14;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
  will-change: transform;
}
.tilt-card img { width: 100%; height: auto; user-select: none; }
.tilt-glare {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}
.tilt-ring {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--background);
  padding-block: 3.5rem;
}
.footer-word { font-family: var(--font-display); letter-spacing: 0.1em; font-size: 1.5rem; }
.site-footer p { margin-top: 0.5rem; font-size: 0.75rem; line-height: 1.6; color: var(--muted-foreground); }
.site-footer p.first { margin-top: 1.5rem; }
.site-footer p.copy { margin-top: 2rem; }

/* ============================================================
   DESIGN DETAIL PAGE (/design)
   ============================================================ */
.dpage-hero {
  position: relative;
  height: 360px;
  width: 100%;
  overflow: hidden;
}
.dpage-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.dpage-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6) 55%,
    var(--background));
}
.dpage-hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 3rem;
}
.dpage-hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}

.dpage-intro {
  border-bottom: 1px solid var(--border-subtle);
  padding-block: 5rem;
}
.dpage-intro h2 { font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.dpage-intro__rule { margin-top: 1.5rem; height: 1px; width: 4rem; background: rgba(255, 255, 255, 0.4); }
.dpage-intro p { margin-top: 2rem; max-width: 42rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }

.portfolio { padding-block: 5rem; }
.portfolio__head { text-align: center; }
.portfolio__eyebrow { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.4em; color: var(--primary); }
.portfolio__title { margin-top: 1rem; font-size: 1.875rem; font-weight: 700; color: var(--foreground); }
.portfolio__sub { margin-top: 1rem; font-size: 0.875rem; color: var(--muted-foreground); }
.portfolio__frame {
  margin: 3rem auto 0;
  max-width: 48rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--card);
  padding: 1rem;
}
.portfolio__frame img { height: auto; width: 100%; max-width: 640px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .main-nav { display: flex; align-items: center; justify-content: center; gap: 2.5rem; }
  .menu-btn { display: none; }

  .mascot-eyebrow { font-size: 0.875rem; }
  .mascot-title { font-size: 3rem; }
  .mascot-sec { padding-block: 7rem; }
  .mascot-stage { margin-top: 5rem; flex-direction: row; gap: 3.5rem; }
  .bubble__tail { display: block; }
  .bubble__inner { padding: 1.75rem 2rem; }
  .bubble__text { font-size: 1.125rem; }
  .caret { height: 1.5rem; }
  .mascot-holder { height: 20rem; width: 20rem; }
  .mascot-glow { height: 3.5rem; }

  .sec-head__en { top: -2rem; font-size: 6rem; }
  .sec-head__ko { font-size: 3rem; }
  .sec-lead, .design-sub { font-size: 1rem; }
  .design-title { font-size: 3.75rem; }


  .team-intro { font-size: 1rem; }
  .team-stack { gap: 4rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mascot-float, .caret { animation: none; }
  .mascot-tilt, .tilt-card { transition: none; }
}

/* ---------- Design detail page (md) ---------- */
@media (min-width: 768px) {
  .dpage-hero { height: 460px; }
  .dpage-hero h1 { font-size: 4.5rem; }
  .dpage-intro h2 { font-size: 1.875rem; }
  .dpage-intro p { font-size: 1rem; }
  .portfolio__title { font-size: 2.25rem; }
}

/* ============================================================
   ADVERTISEMENT OVERVIEW PAGE (/advertisement)
   ============================================================ */
.adpage-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border-subtle); }
.adpage-hero__bg {
  pointer-events: none; position: absolute; inset: 0;
  background: linear-gradient(to bottom right,
    color-mix(in oklab, var(--brand-from) 15%, transparent),
    var(--background) 50%,
    color-mix(in oklab, var(--brand-to) 15%, transparent));
}
.adpage-hero__glow { pointer-events: none; position: absolute; height: 24rem; width: 24rem; border-radius: 50%; filter: blur(64px); }
.adpage-hero__glow--l { left: -10rem; top: 2.5rem; background: color-mix(in oklab, var(--brand-from) 25%, transparent); }
.adpage-hero__glow--r { right: -10rem; bottom: 0; background: color-mix(in oklab, var(--brand-to) 25%, transparent); }
.adpage-hero__inner { position: relative; max-width: var(--maxw); margin-inline: auto; padding: 5rem 1.5rem; }
.adpage-hero__eyebrow { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.4em; color: var(--primary); }
.adpage-hero h1 { margin-top: 1rem; font-size: 3rem; font-weight: 700; line-height: 1.1; }
.adpage-hero p { margin-top: 1.5rem; max-width: 42rem; font-size: 1rem; line-height: 1.7; color: var(--muted-foreground); }

.adtabs-wrap { border-bottom: 1px solid var(--border-subtle); padding-block: 2rem; }
.adtabs { margin-inline: -1.5rem; overflow-x: auto; padding: 1.25rem 1.5rem 0; scrollbar-width: none; }
.adtabs::-webkit-scrollbar { display: none; }
.adtabs__grid { position: relative; margin-inline: auto; display: grid; min-width: 720px; max-width: var(--maxw); grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border-subtle); }
.adtab { position: relative; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--border-subtle); padding: 1rem; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.7); transition: background 0.2s ease, color 0.2s ease; }
.adtab:last-child { border-right: 0; }
.adtab:hover { background: rgba(255,255,255,0.05); color: var(--foreground); }
.adtab__badge { pointer-events: none; position: absolute; top: -0.5rem; right: 0.5rem; border-radius: 0.25rem; background: linear-gradient(to right, var(--brand-from), var(--brand-to)); padding: 0.25rem 0.5rem; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--primary-foreground); }

.adgrid { padding-block: 5rem; }

@media (min-width: 768px) {
  .adpage-hero__inner { padding-block: 7rem; }
  .adpage-hero h1 { font-size: 3.75rem; }
  .adpage-hero p { font-size: 1.125rem; }
}

/* ============================================================
   FILM PAGE (/film)
   ============================================================ */
.fpage-hero { position: relative; height: 520px; width: 100%; overflow: hidden; }
.fpage-hero img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.fpage-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5) 55%, var(--background)); }
.fpage-hero__inner { position: relative; max-width: var(--maxw); margin-inline: auto; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 1.5rem 4rem; }
.fpage-hero__eyebrow { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.4em; color: rgba(255,255,255,0.7); }
.fpage-hero h1 { margin-top: 1.5rem; font-family: var(--font-display); font-size: 3.75rem; font-weight: 800; letter-spacing: -0.01em; color: #fff; }
.fpage-hero__sub { margin-top: 1.5rem; max-width: 32rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }

.eyebrow-p { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.4em; color: var(--primary); }

.film-showreel { margin-top: 3.5rem; }
.film-showreel__media { margin-top: 1rem; aspect-ratio: 16/9; width: 100%; overflow: hidden; border: 1px solid var(--border-subtle); background: #000; }
.film-showreel__media video { height: 100%; width: 100%; object-fit: contain; }
.film-showreel__cap { margin-top: 1rem; font-size: 0.75rem; color: var(--muted-foreground); }

.fcat-list { max-width: var(--maxw); margin-inline: auto; padding-inline: 1.5rem; display: flex; flex-direction: column; gap: 6rem; }
.fcat { display: grid; gap: 2.5rem; align-items: center; }
.fcat__media { overflow: hidden; border: 1px solid var(--border-subtle); background: #000; aspect-ratio: 16/9; }
.fcat__media--vertical { margin-inline: auto; width: 100%; max-width: 360px; aspect-ratio: 9/16; border: 0; }
.fcat__media iframe, .fcat__media video { display: block; height: 100%; width: 100%; border: 0; }
.fcat__media--vertical video { object-fit: contain; }
.fcat__eyebrow { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.4em; color: var(--primary); }
.fcat__title { margin-top: 1rem; font-size: 1.875rem; font-weight: 700; color: var(--foreground); }
.fcat__rule { margin-top: 1.5rem; height: 1px; width: 3rem; background: rgba(255,255,255,0.4); }
.fcat__desc { margin-top: 1.5rem; max-width: 28rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }
.fcat__items { margin-top: 2rem; display: grid; max-width: 28rem; gap: 0.5rem; }
.fcat__items li { border-left: 1px solid var(--border-subtle); padding-left: 0.75rem; font-size: 0.75rem; color: rgba(255,255,255,0.8); }

.fauto { border-top: 1px solid var(--border-subtle); background: #0b0b12; padding-block: 6rem; color: #fff; }
.fauto__grid { max-width: var(--maxw); margin-inline: auto; display: grid; gap: 3rem; align-items: center; padding-inline: 1.5rem; }
.fauto__media { overflow: hidden; border: 1px solid var(--border-card); background: #000; aspect-ratio: 16/9; }
.fauto__media video { height: 100%; width: 100%; object-fit: cover; }
.fauto__badge { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid color-mix(in oklab, var(--brand-to) 40%, transparent); background: color-mix(in oklab, var(--brand-to) 10%, transparent); padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 500; color: var(--brand-to); }
.fauto__badge svg { width: 0.875rem; height: 0.875rem; }
.fauto__eyebrow { margin-top: 1.5rem; font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.4em; color: var(--brand-to); }
.fauto h2 { margin-top: 1rem; font-size: 1.875rem; font-weight: 700; }
.fauto__sub { margin-top: 1rem; font-size: 1.125rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.fauto__rule { margin-top: 2rem; height: 1px; width: 3rem; background: rgba(255,255,255,0.3); }
.fauto p.lead { margin-top: 2rem; max-width: 36rem; font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.7); }
.fauto__features { margin-top: 2.5rem; display: grid; max-width: 36rem; gap: 1.5rem; }
.fauto__features li { border-left: 1px solid color-mix(in oklab, var(--brand-to) 40%, transparent); padding-left: 1rem; }
.fauto__features .t { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; }
.fauto__features .d { margin-top: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.fprocess { border-top: 1px solid var(--border-subtle); padding-block: 6rem; }
.fprocess h2 { margin-top: 1rem; font-size: 1.875rem; font-weight: 700; color: var(--foreground); }
.fprocess__grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
.fprocess__card { border: 1px solid var(--border-subtle); padding: 2rem; }
.fprocess__card .num { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.3em; color: var(--muted-foreground); }
.fprocess__card h3 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 700; color: var(--foreground); }
.fprocess__card p { margin-top: 0.75rem; font-size: 0.75rem; line-height: 1.7; color: var(--muted-foreground); }

.fcta { border-top: 1px solid var(--border-subtle); padding-block: 6rem; }
.fcta__box { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; border: 1px solid var(--border-subtle); padding: 2.5rem; }
.fcta__box h3 { font-size: 1.5rem; font-weight: 700; line-height: 1.25; }
.fcta__box p { margin-top: 1rem; max-width: 36rem; font-size: 0.875rem; color: var(--muted-foreground); }
.fcta__box .btn-brand { flex-shrink: 0; padding: 1rem 2rem; font-size: 0.875rem; }

@media (min-width: 768px) {
  .fpage-hero { height: 640px; }
  .fpage-hero h1 { font-size: 6rem; }
  .fpage-hero__sub, .fcat__desc, .fauto p.lead { font-size: 1rem; }
  .fcat__title, .fprocess h2 { font-size: 2.25rem; }
  .fcat__items { grid-template-columns: 1fr 1fr; }
  .fauto h2 { font-size: 3rem; }
  .fauto__sub { font-size: 1.25rem; }
  .fauto__features { grid-template-columns: repeat(3, 1fr); }
  .fprocess__grid { grid-template-columns: 1fr 1fr; }
  .fcta__box { flex-direction: row; align-items: center; padding: 3.5rem; }
  .fcta__box h3 { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .fcat { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .fcat--reverse .fcat__media { order: 2; }
  .fcat--reverse .fcat__body { order: 1; }
  .fauto__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .fprocess__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   SUBSCRIPTION PAGE (/advertisingsupport)  — prefix .sp-
   ============================================================ */
.sp-mint { color: var(--brand-mint); }
.sp-grad-hero { background: linear-gradient(to right, #fff, var(--brand-mint), #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sp-grad-wm { background: linear-gradient(to right, var(--brand-mint), #fff, var(--brand-mint)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sp-grad-growth { background: linear-gradient(to right, var(--brand-mint), #fff, var(--brand-from)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Pill CTA + Hex pill */
.sp-pill-cta { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px; background: var(--brand-mint); padding: 1rem 2rem; font-size: 0.875rem; font-weight: 700; color: var(--brand-deep); box-shadow: 0 10px 25px -5px color-mix(in oklab, var(--brand-mint) 20%, transparent); transition: transform 0.2s ease; }
.sp-pill-cta:hover { transform: scale(1.03); }
.sp-pill-cta svg { width: 1rem; height: 1rem; }
.sp-hexpill { display: inline-flex; align-items: center; gap: 0.75rem; border-radius: 9999px; padding: 0.625rem 1.5rem; backdrop-filter: blur(8px); }
.sp-hexpill--dark { background: color-mix(in oklab, var(--brand-deep) 70%, transparent); }
.sp-hexpill--light { background: color-mix(in oklab, var(--background) 70%, transparent); }
.sp-hexpill span { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em; }
.sp-clover { width: 0.875rem; height: 0.875rem; color: var(--brand-mint); flex-shrink: 0; }
.sp-center { text-align: center; }
.sp-flexc { display: flex; justify-content: center; }

/* generic section shells */
.sp-sec { position: relative; overflow: hidden; padding-block: 6rem; }
.sp-sec--bd { border-top: 1px solid var(--border-subtle); background: color-mix(in oklab, var(--brand-deep) 40%, var(--background)); }
.sp-sec--bt { border-top: 1px solid var(--border-subtle); }
.sp-glow { pointer-events: none; position: absolute; border-radius: 9999px; filter: blur(64px); }
.sp-wrap { position: relative; margin-inline: auto; max-width: 72rem; padding-inline: 1.5rem; }
.sp-wrap--narrow { max-width: 64rem; }
.sp-h2 { margin-top: 1.5rem; text-align: center; font-size: 1.875rem; font-weight: 700; line-height: 1.2; }
.sp-h2--tl { line-height: 1.15; }

/* HERO */
.sp-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border-subtle); }
.sp-hero__bg { pointer-events: none; position: absolute; inset: 0; background: linear-gradient(to bottom right, color-mix(in oklab, var(--brand-from) 20%, transparent), var(--background) 50%, color-mix(in oklab, var(--brand-to) 25%, transparent)); }
.sp-hero__inner { position: relative; margin-inline: auto; max-width: 72rem; padding: 6rem 1.5rem; text-align: center; }
.sp-eyebrow { font-family: var(--font-display); font-size: 0.875rem; letter-spacing: 0.45em; color: var(--brand-mint); }
.sp-hero h1 { margin-top: 1.5rem; font-size: 2.25rem; font-weight: 700; line-height: 1.25; }
.sp-hero p { margin: 2rem auto 0; max-width: 42rem; font-size: 1rem; line-height: 1.7; color: var(--muted-foreground); }
.sp-hero__cta { margin-top: 2.5rem; display: flex; justify-content: center; }

/* PAIN */
.sp-pain__grid { margin-top: 4rem; display: grid; gap: 2rem; }
.sp-pain__card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.sp-bubble { position: relative; width: 100%; border-radius: 1rem; border: 1px solid var(--border-subtle); background: color-mix(in oklab, var(--card) 80%, transparent); padding: 1.5rem; backdrop-filter: blur(8px); }
.sp-bubble p.s { font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }
.sp-bubble p.b { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; line-height: 1.7; color: var(--foreground); }
.sp-bubble__tail { position: absolute; bottom: -0.5rem; left: 50%; height: 1rem; width: 1rem; transform: translateX(-50%) rotate(45deg); border-bottom: 1px solid var(--border-subtle); border-right: 1px solid var(--border-subtle); background: color-mix(in oklab, var(--card) 80%, transparent); }
.sp-hexicon { position: relative; margin-top: 2.5rem; display: flex; height: 8rem; width: 8rem; align-items: center; justify-content: center; }
.sp-hexicon svg.hex { position: absolute; inset: 0; height: 100%; width: 100%; color: color-mix(in oklab, var(--brand-from) 30%, transparent); }
.sp-hexicon__box { position: relative; display: flex; height: 4rem; width: 4rem; align-items: center; justify-content: center; border-radius: 1rem; background: linear-gradient(to bottom right, var(--brand-from), var(--brand-to)); box-shadow: 0 10px 20px -5px color-mix(in oklab, var(--brand-to) 30%, transparent); }
.sp-hexicon__box svg { width: 2rem; height: 2rem; color: var(--primary-foreground); }
.sp-pain__role { margin-top: 1.5rem; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.02em; color: var(--foreground); }

/* WHITE feature cards (reason + solution) */
.sp-wgrid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
.sp-wcard { display: flex; align-items: flex-start; gap: 1.25rem; border-radius: 1rem; background: #fff; padding: 1.75rem; color: #0f172a; box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3); }
.sp-wcard__ico { display: flex; height: 3.5rem; width: 3.5rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 1rem; }
.sp-wcard__ico svg { width: 1.75rem; height: 1.75rem; }
.sp-wcard__ico--soft { background: linear-gradient(to bottom right, color-mix(in oklab, var(--brand-from) 15%, transparent), color-mix(in oklab, var(--brand-to) 20%, transparent)); }
.sp-wcard__ico--soft svg { color: var(--brand-deep); }
.sp-wcard__ico--grad { background: linear-gradient(to bottom right, var(--brand-from), var(--brand-to)); }
.sp-wcard__ico--grad svg { color: var(--primary-foreground); }
.sp-wcard h3 { font-size: 1.125rem; font-weight: 700; }
.sp-wcard p.d { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.7; color: #64748b; }
.sp-wcard p.b { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; line-height: 1.7; color: #0f172a; }

/* MANIFESTO */
.sp-mani__line { margin: 2rem auto 0; height: 1.5rem; width: 0.25rem; background: color-mix(in oklab, var(--muted-foreground) 40%, transparent); }
.sp-mani__box { margin-top: 2rem; display: inline-block; background: var(--brand-mint); padding: 1rem 1.5rem; font-size: 1rem; font-weight: 700; color: var(--brand-deep); }
.sp-lead { margin: 2rem auto 0; max-width: 48rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }

/* RESULTS cases */
.sp-cases { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 2rem; }
.sp-case { overflow: hidden; border-radius: 1rem; border: 1px solid var(--border-subtle); background: color-mix(in oklab, var(--brand-deep) 40%, var(--background)); padding: 1rem; box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3); }
.sp-case__label { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px; background: color-mix(in oklab, var(--brand-mint) 90%, transparent); padding: 0.375rem 1rem; font-size: 0.75rem; font-weight: 700; color: var(--brand-deep); margin-bottom: 1rem; }
.sp-case__label svg { width: 0.875rem; height: 0.875rem; }
.sp-case img { width: 100%; border-radius: 0.75rem; display: block; }

/* PLANS */
.sp-plans__lineup { margin-top: 4rem; text-align: center; font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.sp-plans__grid { margin-top: 3rem; display: grid; gap: 2rem; }
.sp-plan { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: 1rem; background: #fff; padding: 2rem; color: #0f172a; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3); outline: 1px solid #e2e8f0; }
.sp-plan h4 { font-size: 1.25rem; font-weight: 700; }
.sp-plan h4 .tag { font-size: 0.875rem; font-weight: 500; color: #94a3b8; }
.sp-plan__price { margin-top: 1rem; display: flex; align-items: baseline; gap: 0.25rem; }
.sp-plan__price .p { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: #0f172a; }
.sp-plan__price .u { font-size: 0.875rem; font-weight: 600; color: #64748b; }
.sp-plan__price .v { margin-left: 0.25rem; font-size: 0.75rem; color: #94a3b8; }
.sp-plan__sum { margin-top: 1rem; font-size: 0.875rem; font-weight: 600; line-height: 1.7; color: var(--brand-deep); }
.sp-plan__scope { margin-top: 1.5rem; border-radius: 0.75rem; background: #f1f5f9; padding: 1rem 1.25rem; text-align: center; }
.sp-plan__scope .a { font-size: 0.75rem; font-weight: 500; color: #64748b; }
.sp-plan__scope .b { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 700; color: var(--brand-deep); }
.sp-plan__items { margin-top: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.sp-plan__items li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: #334155; }
.sp-plan__items svg { margin-top: 0.125rem; width: 1rem; height: 1rem; flex-shrink: 0; color: var(--brand-deep); }
.sp-plan__btn { margin-top: 2rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 0.75rem; background: #0f172a; padding: 1rem 1.5rem; font-size: 0.875rem; font-weight: 700; color: #fff; transition: transform 0.2s ease; }
.sp-plan__btn:hover { transform: scale(1.02); }
.sp-plan__btn svg { width: 1rem; height: 1rem; }

/* COMPARISON (VS table) */
.sp-vs { position: relative; margin-top: 3.5rem; overflow: hidden; border-radius: 1rem; border: 1px solid var(--border-subtle); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4); }
.sp-vs__wm { pointer-events: none; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: 7rem; font-weight: 900; line-height: 1; color: rgba(255,255,255,0.1); z-index: 1; }
.sp-vs__row { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; }
.sp-vs__row + .sp-vs__row { border-top: 1px solid var(--border-subtle); }
.sp-vs__cell { padding: 1.25rem 1.5rem; text-align: center; }
.sp-vs__cell--mint { background: var(--brand-mint); font-size: 1.125rem; font-weight: 700; color: var(--brand-deep); }
.sp-vs__cell--slate { background: color-mix(in oklab, #334155 80%, transparent); font-size: 1.125rem; font-weight: 700; color: #fff; }
.sp-vs__cell--w { background: #fff; font-weight: 700; color: #0f172a; }
.sp-vs__cell--d { background: color-mix(in oklab, #1e293b 70%, transparent); color: #fff; }
.sp-vs__big { display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 3rem; font-weight: 900; padding-block: 4rem; }
.sp-vs__cell--d.small { font-size: 0.875rem; font-weight: 600; line-height: 1.7; padding-block: 2.5rem; }
.sp-comp__save { margin-top: 2.5rem; text-align: center; font-size: 1.5rem; font-weight: 700; line-height: 1.2; }

/* SPECIALIST */
.sp-spec { position: relative; overflow: hidden; border-top: 1px solid var(--border-subtle); padding-block: 6rem; }
.sp-spec__bg { pointer-events: none; position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in oklab, var(--brand-deep) 60%, var(--background)), color-mix(in oklab, var(--brand-deep) 80%, var(--background)), color-mix(in oklab, var(--brand-deep) 60%, var(--background))); }
.sp-spec__pill { display: inline-flex; align-items: center; gap: 0.75rem; border-radius: 9999px; background: color-mix(in oklab, var(--background) 80%, transparent); padding: 0.75rem 1.5rem; backdrop-filter: blur(8px); }
.sp-spec__pill span { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.sp-spec__pill svg { width: 1rem; height: 1rem; color: var(--brand-mint); }
.sp-pkgs { margin: 4rem auto 0; display: grid; max-width: 56rem; gap: 2rem; }
.sp-pkg { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 9999px; background: var(--brand-mint); padding: 2rem 1.5rem; color: var(--brand-deep); box-shadow: 0 10px 20px -5px rgba(0,0,0,0.4); transition: transform 0.2s ease; }
.sp-pkg:hover { transform: scale(1.02); }
.sp-pkg__badge { position: absolute; top: -0.75rem; white-space: nowrap; border-radius: 9999px; background: var(--brand-deep); padding: 0.375rem 1rem; font-size: 11px; font-weight: 700; letter-spacing: 0.02em; color: var(--brand-mint); }
.sp-pkg .l { font-size: 0.875rem; font-weight: 700; }
.sp-pkg .p { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.sp-spec__foot { margin: 3rem auto 0; max-width: 56rem; }
.sp-spec__rule { height: 1px; width: 100%; background: color-mix(in oklab, var(--brand-mint) 40%, transparent); }
.sp-spec__link { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 700; color: var(--brand-mint); transition: opacity 0.2s ease; }
.sp-spec__link:hover { opacity: 0.8; }
.sp-spec__link svg { width: 1rem; height: 1rem; }

/* ADDONS */
.sp-addons { margin-top: 3.5rem; display: grid; gap: 1.25rem; }
.sp-addon { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; border-radius: 1rem; border: 1px solid var(--border-subtle); background: color-mix(in oklab, var(--card) 80%, transparent); padding: 1.5rem; transition: border-color 0.2s ease; }
.sp-addon:hover { border-color: color-mix(in oklab, var(--brand-mint) 60%, transparent); }
.sp-addon__ico { display: flex; height: 3rem; width: 3rem; align-items: center; justify-content: center; border-radius: 0.75rem; background: linear-gradient(to bottom right, var(--brand-from), var(--brand-to)); }
.sp-addon__ico svg { width: 1.5rem; height: 1.5rem; color: var(--primary-foreground); }
.sp-addon h3 { font-size: 1.125rem; font-weight: 700; color: var(--foreground); }
.sp-addon p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }
.sp-addon__price { margin-top: auto; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--brand-mint); }

/* GROWTH CTA */
.sp-growth { position: relative; overflow: hidden; border-top: 1px solid var(--border-subtle); padding-block: 7rem; }
.sp-growth h2 { font-size: 1.875rem; font-weight: 700; line-height: 1.2; color: var(--brand-mint); }
.sp-growth__steps { margin-top: 4rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.sp-growth__line { height: 1px; width: 2.5rem; background: color-mix(in oklab, var(--brand-mint) 40%, transparent); }
.sp-gstep { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.sp-gstep__hex { position: relative; display: flex; height: 3.5rem; width: 3.5rem; align-items: center; justify-content: center; }
.sp-gstep__hex svg.hex { position: absolute; inset: 0; height: 100%; width: 100%; color: var(--brand-mint); filter: drop-shadow(0 0 16px rgba(120,255,220,0.4)); }
.sp-gstep__hex svg.clv { position: relative; width: 1.5rem; height: 1.5rem; color: #fff; }
.sp-gstep span { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em; color: var(--brand-mint); }
.sp-growth h3 { margin-top: 4rem; font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; letter-spacing: 0.1em; }
.sp-growth__cta { margin-top: 3rem; display: flex; justify-content: center; }

@media (min-width: 768px) {
  .sp-hero h1 { font-size: 3.75rem; }
  .sp-hero p, .sp-lead, .sp-growth p.sp-lead { font-size: 1.125rem; }
  .sp-h2, .sp-comp__save, .sp-plans__lineup, .sp-growth h2 { font-size: 3rem; }
  .sp-hexpill span, .sp-spec__pill span { font-size: 1rem; }
  .sp-pain__grid { grid-template-columns: repeat(3, 1fr); }
  .sp-wgrid { grid-template-columns: 1fr 1fr; }
  .sp-plans__grid { grid-template-columns: repeat(3, 1fr); }
  .sp-plans__lineup { font-size: 1.875rem; }
  .sp-addons { grid-template-columns: repeat(3, 1fr); }
  .sp-pkgs { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .sp-vs__wm { font-size: 10rem; }
  .sp-vs__cell--mint, .sp-vs__cell--slate { font-size: 1.5rem; }
  .sp-vs__cell--w, .sp-vs__cell--d:not(.small) { font-size: 1.25rem; }
  .sp-vs__big { font-size: 4.5rem; }
  .sp-plan h4 { font-size: 1.5rem; }
  .sp-plan__price .p { font-size: 2.25rem; }
  .sp-growth h3 { font-size: 4.5rem; }
  .sp-pkg .l { font-size: 1rem; }
  .sp-pkg .p { font-size: 1.5rem; }
  .sp-mani__box { font-size: 1.125rem; }
}

/* ============================================================
   AD DETAIL PAGES (/VIBAL, /SNSadvertisement, ...)  — prefix .adp-
   ============================================================ */
.adp-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border-subtle); }
.adp-hero__grid { position: relative; margin-inline: auto; display: grid; max-width: var(--maxw); gap: 2.5rem; padding: 5rem 1.5rem; }
.adp-hero h1 { margin-top: 1rem; font-size: 3rem; font-weight: 700; line-height: 1.1; }
.adp-hero__tag { margin-top: 1.5rem; max-width: 32rem; font-size: 1rem; line-height: 1.7; color: var(--muted-foreground); }
.adp-hero__img { position: relative; aspect-ratio: 4/5; width: 100%; max-width: 24rem; justify-self: center; overflow: hidden; border: 1px solid var(--border-subtle); background: var(--card); }
.adp-hero__img img { height: 100%; width: 100%; object-fit: cover; }

.adp-tabs { position: sticky; top: 4rem; z-index: 40; border-bottom: 1px solid var(--border-subtle); background: color-mix(in oklab, var(--background) 90%, transparent); padding-block: 1rem; backdrop-filter: blur(24px); }
.adtab--active { background: linear-gradient(to right, var(--brand-from), var(--brand-to)); color: var(--primary-foreground); }
.adtab--active:hover { background: linear-gradient(to right, var(--brand-from), var(--brand-to)); color: var(--primary-foreground); }
.adtab__badge--inv { background: color-mix(in oklab, var(--background) 95%, transparent); color: var(--foreground); }

.adp-intro { padding-block: 5rem; }
.adp-intro p { margin-inline: auto; max-width: 56rem; text-align: center; font-size: 1.125rem; line-height: 1.7; color: rgba(255,255,255,0.85); padding-inline: 1.5rem; }

.adp-products { border-top: 1px solid var(--border-subtle); padding-block: 4rem; }
.adp-products h2 { font-size: 1.875rem; font-weight: 700; color: var(--foreground); }
.adp-plist { margin-top: 4rem; display: flex; flex-direction: column; }
.adp-prod { display: flex; flex-direction: column; align-items: center; padding-block: 4rem; }
.adp-prod + .adp-prod { border-top: 1px solid var(--border-subtle); }
.adp-prod__inner { margin-inline: auto; width: 100%; max-width: 56rem; text-align: center; }
.adp-prod__no { display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 700; background: linear-gradient(to right, var(--brand-from), var(--brand-to)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.adp-prod__en { margin-top: 1rem; display: block; font-family: var(--font-display); font-size: 10px; letter-spacing: 0.4em; color: var(--primary); }
.adp-prod h3 { margin-top: 0.75rem; font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.adp-prod__lead { margin: 1rem auto 0; max-width: 42rem; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.adp-prod__img { position: relative; margin-top: 2rem; width: 100%; overflow: hidden; border: 1px solid var(--border-subtle); background: var(--card); }
.adp-prod__img img { display: block; height: auto; width: 100%; }
.adp-prod__desc { margin: 2rem auto 0; max-width: 42rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }
.adp-prod__bullets { margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.adp-prod__bullets li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.adp-prod__bullets .dot { height: 0.375rem; width: 0.375rem; flex-shrink: 0; border-radius: 9999px; background: linear-gradient(to right, var(--brand-from), var(--brand-to)); }

.adp-cta { border-top: 1px solid var(--border-subtle); padding-block: 5rem; }
.adp-cta__box { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; border: 1px solid var(--border-subtle); background: var(--card); padding: 2.5rem; }
.adp-cta__box h3 { font-size: 1.5rem; font-weight: 700; line-height: 1.25; }
.adp-cta__box p { margin-top: 1rem; max-width: 36rem; font-size: 0.875rem; color: var(--muted-foreground); }
.adp-cta__box .btn-brand { flex-shrink: 0; padding: 1rem 2rem; font-size: 0.875rem; }

@media (min-width: 768px) {
  .adp-hero__grid { grid-template-columns: 1.1fr 1fr; align-items: center; padding-block: 7rem; }
  .adp-hero h1 { font-size: 3.75rem; }
  .adp-hero__tag { font-size: 1.125rem; }
  .adp-hero__img { justify-self: end; }
  .adp-intro p { font-size: 1.25rem; }
  .adp-products h2 { font-size: 2.25rem; }
  .adp-prod { padding-block: 6rem; }
  .adp-prod__no { font-size: 4.5rem; }
  .adp-prod__en { font-size: 0.75rem; }
  .adp-prod h3 { margin-top: 1rem; font-size: 2.25rem; }
  .adp-prod__lead { font-size: 1.125rem; }
  .adp-prod__img { margin-top: 2.5rem; }
  .adp-prod__desc { margin-top: 2.5rem; font-size: 1rem; }
  .adp-prod__bullets { margin-top: 2rem; flex-direction: row; flex-wrap: wrap; justify-content: center; column-gap: 1.5rem; row-gap: 0.75rem; }
  .adp-prod__bullets li { font-size: 1rem; }
  .adp-services__grid { grid-template-columns: 1fr 1fr; }
  .adp-cta__box { flex-direction: row; align-items: center; padding: 3.5rem; }
  .adp-cta__box h3 { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .adp-services__grid { grid-template-columns: repeat(3, 1fr); }
}
