:root {
  --ink: #0e1116;
  --ink-2: #2c3440;
  --muted: #626d7d;
  --line: #e3e7ed;
  --line-strong: #cdd4de;
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --bg-ink: #0e1116;

  --accent: #2b55f0;
  --accent-dark: #1c3ec4;
  --accent-soft: #e9eefc;

  --warm: #b8420f;
  --warm-soft: #fdf2ec;

  --forest: #1c6b46;
  --forest-soft: #eef7f2;
  --forest-ink: #0b1a13;
  --forest-lite: #79d2a5;

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 40px);

  --font: "Pretendard", system-ui, -apple-system, "Segoe UI", "Malgun Gothic",
    "Apple SD Gothic Neo", "Noto Sans KR", Roboto, sans-serif;

  --t-display: clamp(2.9rem, 7.4vw, 6.6rem);
  --t-h2:      clamp(1.75rem, 3.4vw, 2.75rem);
  --t-h3:      clamp(1.15rem, 1.9vw, 1.45rem);
  --t-body:    1.0625rem;
  --t-small:   .875rem;
  --t-xs:      .8125rem;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/pretendard.woff2") format("woff2") tech("variations"),
       url("fonts/pretendard.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

[id] { scroll-margin-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.01em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.section { padding-block: clamp(56px, 9vw, 104px); }

.section--tall  { padding-block: clamp(76px, 13vw, 168px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--flush-b { padding-bottom: 0; }
.section--flush-t { padding-top: 0; }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--bg-ink); color: #fff; }
.section--ink .lead,
.section--ink .muted { color: #a9b3c2; }

.eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
  margin: 0 0 14px;
  text-transform: none;
}
.section--ink .eyebrow { color: #8fa6ff; }

h1, h2, h3, h4 { margin: 0 0 16px; }
h1, h2 { line-height: 1.06; letter-spacing: -.035em; }
h3, h4 { line-height: 1.25; letter-spacing: -.022em; }

h1 { font-size: var(--t-display); font-weight: 800; }
h2 { font-size: var(--t-h2); font-weight: 800; }
h3 { font-size: var(--t-h3); font-weight: 700; }

.h-display { font-size: var(--t-display); line-height: 1.02; letter-spacing: -.04em; font-weight: 800; }

.h2--quiet { font-size: clamp(1.35rem, 2.2vw, 1.75rem); letter-spacing: -.025em; }

.h2--peak { font-size: clamp(2.5rem, 4.8vw, 4.4rem); line-height: 1.02; letter-spacing: -.04em; }

p { margin: 0 0 14px; }
.lead { font-size: clamp(1.0625rem, 1.5vw, 1.2rem); line-height: 1.62; color: var(--ink-2); }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.xsmall { font-size: .8125rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--on-ink { background: #fff; color: var(--ink); }
.btn--on-ink:hover { background: #e9edf5; }
.btn--warm { background: var(--warm); color: #fff; }
.btn--warm:hover { background: #9a330a; }
.btn--sm { padding: 10px 18px; font-size: .9375rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}
.brand {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.brand span { font-size: .75rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }

.site-header .brand,
.site-header .nav a,
.site-header .nav .btn { white-space: nowrap; }

@media (max-width: 1279px) {
  .brand span { display: none; }
}

.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink-2);
}
.nav a:hover { color: var(--accent); }

.site-header .nav .btn--primary,
.site-header .nav .btn--primary:hover { color: #fff; }
.site-header .nav .btn--ghost,
.site-header .nav .btn--warm { color: inherit; }
.site-header .nav .btn--warm { color: #fff; }
.nav a[aria-current="page"] { color: var(--accent); }

.nav-toggle {
  display: none;
  min-height: 44px;   
  background: none;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    inset: 66px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 12px; }
}

.hero {
  padding-block: clamp(52px, 8vw, 96px);
  background:
    radial-gradient(900px 420px at 78% -12%, #e8edff 0%, rgba(232, 237, 255, 0) 70%),
    var(--bg);
}
.hero h1 { max-width: 17ch; }
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 18px;
}
.hero-body { max-width: 56ch; font-size: clamp(1rem, 1.7vw, 1.1rem); color: var(--ink-2); }
.hero-slogan {
  margin-top: 22px;
  font-weight: 700;
  font-size: 1.0625rem;
}
.pricenote {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--muted);
  max-width: 62ch;
}
.pricenote a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.pricenote a:hover { color: var(--accent); }

.hero--video {
  position: relative;
  isolation: isolate;
  background: var(--bg-ink);
  color: #fff;
  padding-top: clamp(24px, 3.5vw, 44px);
}

.hero-media {
  position: relative;
  inset: auto;
  z-index: 0;
  width: calc(100% - var(--pad) * 2);
  
  --hero-vh: clamp(200px, min(52svh, 100svh - 400px), 630px);
  max-width: min(1120px, calc(var(--hero-vh) * 16 / 9));
  aspect-ratio: 16 / 9;
  margin: 0 auto clamp(24px, 4vw, 40px);
  background: #0e1116;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-scrim { display: none; }

.hero--video h1 { max-width: 24ch; }

.hero-inner { position: relative; }
.hero--video .eyebrow { color: #8fa6ff; }
.hero--video .hero-sub { color: #a8bcff; }
.hero--video .hero-body { color: #dbe2ec; }
.hero--video .hero-slogan { color: #fff; }
.hero--video .pricenote { color: #a9b3c2; border-top-color: rgba(255, 255, 255, .18); }
.hero--video .pricenote strong { color: #fff; }
.hero--video .pricenote a:hover { color: #a8bcff; }
.hero--video .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .45); }
.hero--video .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

@media (max-width: 780px) {
  .hero--video { padding-top: 0; }
  .hero-media {
    width: 100%;
    max-width: none;
    border-radius: 0;
    margin-bottom: clamp(22px, 5vw, 34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media { background: #0e1116; }
}

.hero-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 17, 22, .72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font: inherit;
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
}
.hero-play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 13px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.hero-media.is-blocked .hero-play { display: inline-flex; }

.grid { display: grid; gap: 20px; }

.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.grid--5 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid--5 > * { grid-column: span 2; }
.grid--5 > *:nth-child(4) { grid-column: 2 / span 2; }
.grid--5 > *:nth-child(5) { grid-column: 4 / span 2; }

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--5 > *, .grid--5 > *:nth-child(4), .grid--5 > *:nth-child(5) { grid-column: auto; }
}
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .grid--2, .grid--3 { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
  .grid--4, .grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 440px) {
  .grid--4, .grid--5 { grid-template-columns: minmax(0, 1fr); }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.section--soft .card { background: #fff; }

.numcard { display: flex; gap: 16px; }
.numcard .n {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: .9375rem;
  display: grid; place-items: center;
}

.pkg {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  align-content: start;
}
.pkg .pkg-tag {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.pkg .pkg-target {
  font-weight: 700;
  color: var(--ink-2);
  font-size: .9375rem;
  margin-bottom: 12px;
}
.pkg .pkg-scope {
  margin: 16px 0;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 600;
}
.pkg .btn { margin-top: auto; width: 100%; }

.price { margin: 18px 0 14px; }
.price-main {
  display: block;
  font-size: clamp(1.6rem, 3.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.price-unit {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -.01em;
}

.price-unit--month { background: var(--accent-dark); }
.pkg-compose {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--warm);
  background: var(--warm-soft);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
}

.unit-note {
  margin-top: 22px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
}
.section--soft .unit-note { background: #fff; }
.unit-note strong { color: var(--accent); }

.pricelist { display: flex; flex-direction: column; }
.pricelist-tag {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 5px 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.pricelist ul { list-style: none; margin: 0; padding: 0; }
.pricelist li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
}
.pricelist li:last-child { border-bottom: 0; }
.pricelist .n { flex: 1 1 auto; font-weight: 700; }
.pricelist .n em {
  font-style: normal;
  font-weight: 500;
  font-size: .8125rem;
  color: var(--muted);
  margin-left: 4px;
}
.pricelist .v {
  flex: 0 0 auto;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.reel { margin: 0; }
.reel-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b0d11;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.reel figcaption {
  margin-top: 14px;
  font-size: .9375rem;
  color: var(--ink-2);
  max-width: 66ch;
}
.reel figcaption strong { display: block; margin-bottom: 4px; color: var(--ink); }
.reel-note { display: block; margin-top: 8px; font-size: .8125rem; color: var(--muted); }

.ph--done {
  border-style: solid;
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.ph--done a { color: inherit; }

.brandcard h4 { margin: 0 0 8px; font-size: 1.0625rem; font-weight: 800; letter-spacing: .04em; }
.brandcard-cat {
  margin: 0 0 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
  text-transform: uppercase;
}
.ph--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  margin: 0 0 14px;
  padding: 12px;
}

.offer {
  background: var(--bg-ink);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
.offer .eyebrow { color: #ffb384; }
.offer h2 { color: #fff; max-width: 22ch; }
.offer p { color: #c3ccda; }
.offer strong { color: #fff; }
.offer-terms {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 26px 0 22px;
}
.offer-term {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.offer-term .t {
  font-size: .8125rem;
  font-weight: 800;
  color: #ffb384;
  margin-bottom: 6px;
}
.offer-term p { margin: 0; color: #dbe2ec; font-size: .9375rem; }
.offer-close {
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 6px;
}
.offer-alt {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .875rem;
  color: #a9b3c2 !important;
}

.promise {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  display: flex;
  gap: 18px;
}
.promise .idx {
  flex: none;
  font-size: .75rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 11px;
  height: fit-content;
  white-space: nowrap;
}
.promise h3 { margin-bottom: 8px; }
.promise p { margin-bottom: 8px; color: var(--ink-2); }
.promise p:last-child { margin-bottom: 0; }
.promise .hl { font-weight: 700; color: var(--ink); }

.notice {
  border-left: 4px solid var(--warm);
  background: var(--warm-soft);
  color: #6f3117;
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
  font-size: .9375rem;
  margin-bottom: 24px;
}
.sample { display: flex; flex-direction: column; }
.sample h3 { font-size: 1.0625rem; }
.ph, .sample .ph {
  margin-top: 16px;
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: repeating-linear-gradient(45deg, #fafbfc, #fafbfc 10px, #f2f4f7 10px, #f2f4f7 20px);
  color: var(--muted);
  font-weight: 800;
  font-size: .9375rem;
  text-align: center;
  padding: 30px 12px;
  letter-spacing: .02em;
}
.sample .opt {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 2px 9px;
  margin-left: 6px;
  vertical-align: middle;
}

.badge-report {
  display: inline-block;
  background: var(--warm-soft);
  color: var(--warm);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .9375rem;
  font-weight: 700;
}

.banner {
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
}
.banner h3 { margin-bottom: 10px; }
.banner p:last-child { margin-bottom: 0; }

.faq-group { margin-bottom: 34px; }
.faq-group > h3 {
  font-size: .875rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .04em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-soft);
  margin-bottom: 6px;
}
details.qa {
  border-bottom: 1px solid var(--line);
}
details.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 40px 18px 0;
  font-weight: 700;
  font-size: 1.0625rem;
  position: relative;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
details.qa[open] summary::after { content: "−"; }
details.qa .a { padding: 0 0 20px; color: var(--ink-2); }
details.qa .a > *:last-child { margin-bottom: 0; }
details.qa ul { margin: 0 0 12px; padding-left: 20px; }
details.qa li { margin-bottom: 6px; }

.steps { counter-reset: step; }
.step { position: relative; padding-left: 58px; padding-bottom: 30px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  display: grid; place-items: center;
}
.step::after {
  content: "";
  position: absolute;
  left: 18.5px; top: 44px; bottom: 6px;
  width: 1px;
  background: var(--line-strong);
}
.step:last-child::after { display: none; }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--ink-2); }

.form { display: grid; gap: 20px; max-width: 720px; }
.field { transition: transform .18s var(--ease); }
.field:focus-within { transform: translateY(-1px); }
.field:focus-within > label { color: var(--accent); transition: color .18s ease; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; }
.field .hint { display: block; font-size: .875rem; color: var(--muted); margin-bottom: 8px; font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

.req {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--warm-soft);
  color: var(--warm);
  font-size: .75rem;
  font-weight: 700;
  vertical-align: middle;
}
.field-error {
  margin: 8px 0 0;
  font-size: .875rem;
  font-weight: 700;
  color: var(--warm);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--warm);
  background: var(--warm-soft);
}
.form-status {
  margin: 16px 0 0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9375rem;
}
.form-status--ok { background: var(--forest-soft); color: var(--forest); }
.form-status--error { background: var(--warm-soft); color: #6f3117; }
.form-status--info { background: var(--accent-soft); color: var(--accent-dark); }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.checks { display: grid; gap: 8px; }

.checks label,
.consent label {
  display: flex; gap: 12px; align-items: center;
  min-height: 44px; font-weight: 500; cursor: pointer;
}
.checks input,
.consent input[type="checkbox"] {
  width: 22px; height: 22px; margin: 0; flex: none;
  accent-color: var(--accent); cursor: pointer;
}

.table-wrap { overflow-x: auto; }
table.plain {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
  font-size: .9375rem;
}
table.plain th, table.plain td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.plain th { font-weight: 800; background: var(--bg-soft); white-space: nowrap; }

.forest { background: var(--forest-soft); }
.forest .eyebrow { color: var(--forest); }
.forest .principle .n { background: #fff; color: var(--forest); }
.badge-forest {
  display: inline-block;
  background: var(--forest);
  color: #fff;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .8125rem;
  font-weight: 700;
}

.site-footer {
  background: var(--bg-ink);
  color: #a9b3c2;
  padding-block: 48px 40px;
  font-size: .9375rem;
}
.site-footer a { color: #dbe2ec; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .foot-top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.site-footer .brand { color: #fff; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.site-footer .foot-bottom { padding-top: 22px; font-size: .8125rem; }
.site-footer .foot-price { color: #dbe2ec; font-weight: 600; margin-bottom: 6px; }

.stack-lg > * + * { margin-top: 20px; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-24 { margin-bottom: 24px; }
.center { text-align: center; }
.maxw-60 { max-width: 60ch; }

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px; top: 12px;
  z-index: 100;
  background: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--accent);
}

.reveal { opacity: 0; transform: translate3d(0, 22px, 0); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .7s linear, transform .7s var(--ease);
}
.reveal-d1 { transition-delay: .07s; }
.reveal-d2 { transition-delay: .14s; }
.reveal-d3 { transition-delay: .21s; }
.reveal-d4 { transition-delay: .28s; }

.card,
.promise,
.pkg,
.brandcard,
.sample {
  transition: transform .34s var(--ease), border-color .34s ease, box-shadow .34s ease;
}
.card:hover,
.brandcard:hover,
.sample:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 14px 34px rgba(14, 17, 22, .07);
}
a.card:hover, a.brandcard:hover, a.sample:hover { border-color: var(--accent); }

.nav a, .site-footer a, .pricenote a { transition: color .18s ease; }

.media {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: var(--radius);
}
.media > img,
.media > video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3  { aspect-ratio: 4 / 3; }
.media--1x1  { aspect-ratio: 1 / 1; }
.media--4x5  { aspect-ratio: 4 / 5; }
.media--9x16 { aspect-ratio: 9 / 16; }
.media--flat { border-radius: 0; }
:is(.card, .brandcard, .sample, a):hover > .media > img { transform: scale(1.045); }

.bleed {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  background: var(--bg-soft);
}
.bleed > img, .bleed > video { width: 100%; height: 100%; object-fit: cover; display: block; }
.bleed--wide { aspect-ratio: 21 / 9; }
.bleed--cine { aspect-ratio: 16 / 9; }
.bleed figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px var(--pad) 18px;
  color: #fff; font-size: var(--t-small); font-weight: 600;
  
  background: linear-gradient(180deg,
    rgba(14,17,22,0) 0%, rgba(14,17,22,.58) 46%, rgba(14,17,22,.93) 100%);
}
@media (max-width: 640px) {
  .bleed--wide { aspect-ratio: 4 / 3; }
  .bleed--cine { aspect-ratio: 4 / 3; }
}

.split-media {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.split-media--flip { grid-template-columns: .85fr 1.15fr; }
@media (max-width: 860px) {
  .split-media, .split-media--flip { grid-template-columns: minmax(0, 1fr); }
}

.hero-media.bleed { max-width: none; }

a.card, a.brandcard, a.sample { text-decoration: none; color: inherit; }

.section--ink .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.section--ink .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

.section--ink .card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
}
.section--ink .card .muted,
.section--ink .refcard-note,
.section--ink .refcard-title { color: #a9b3c2; }
.section--ink .refcard-cat { color: #8fa6ff; }
.section--ink a.card:hover {
  border-color: var(--forest-lite);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
}

:is(.grid, .split-media, .refgrid, .bento) > figure { margin: 0; }

@media (max-width: 660px) {
  .table-wrap--cards { overflow: visible; }
  .table-wrap--cards table.plain { min-width: 0; }
  .table-wrap--cards thead {
    position: absolute; width: 1px; height: 1px; margin: -1px;
    padding: 0; overflow: hidden; clip: rect(0 0 0 0);
    clip-path: inset(50%); white-space: nowrap;
  }
  .table-wrap--cards tbody tr {
    display: block; border: 1px solid var(--line);
    border-radius: var(--radius-sm); background: #fff;
    padding: 14px 16px; margin-bottom: 10px;
  }
  .table-wrap--cards tbody td { display: block; border: 0; padding: 0; }
  .table-wrap--cards tbody td:first-child {
    margin-bottom: 4px; font-size: .8125rem; font-weight: 800;
    letter-spacing: .02em; color: var(--forest);
  }
}

.bleed--capfoot > figcaption {
  position: static; background: none;
  color: var(--muted); padding: 10px var(--pad) 0;
  font-weight: 500;
}

.media--player > video { object-fit: contain; background: #0b0d11; }

.cardstrip { -webkit-mask-image: linear-gradient(90deg, #000 0 92%, transparent 100%);
             mask-image: linear-gradient(90deg, #000 0 92%, transparent 100%); }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .media > img, .media > video { transform: none !important; }
  * { transition: none !important; }
}

.ref-page { padding-bottom: 132px; }   

.ref-hero {
  background: var(--bg-ink);
  color: #fff;
  padding-block: clamp(40px, 6vw, 72px) clamp(24px, 3vw, 36px);
}
.ref-hero h1 { max-width: 20ch; margin: 0 0 14px; }
.ref-hero .eyebrow { color: #8fa6ff; }
.ref-lede {
  max-width: 60ch;
  color: #cfd7e2;
  font-size: clamp(.95rem, 1.6vw, 1.0625rem);
  margin: 0 0 26px;
}

.ref-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.ref-tabs::-webkit-scrollbar { display: none; }
.ref-tab {
  flex: 0 0 auto;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: transparent;
  color: #cfd7e2;
  font: inherit;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
}
.ref-tab:hover { border-color: rgba(255, 255, 255, .5); color: #fff; }
.ref-tab.is-on { background: #fff; color: #0e1116; border-color: #fff; }

.ref-block { padding-block: clamp(34px, 5vw, 56px); }
.ref-block + .ref-block { border-top: 1px solid var(--line); }
.ref-h2 { margin: 0 0 6px; font-size: clamp(1.25rem, 2.6vw, 1.6rem); }
.ref-h3 { margin: 40px 0 14px; font-size: 1.0625rem; }
.ref-note { margin: 0 0 24px; color: var(--muted); max-width: 62ch; font-size: .9375rem; }

.refgrid { display: grid; gap: clamp(10px, 1.4vw, 16px); }
.refgrid--v { grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); }
.refgrid--s { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.refgrid--h { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.refgrid--b { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }

.refgrid.refgrid--v4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.refgrid.refgrid--v5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.refgrid.refgrid--v6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.refgrid.refgrid--v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.refgrid.refgrid--v3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .refgrid.refgrid--v5, .refgrid.refgrid--v6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .refgrid.refgrid--v4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .refgrid.refgrid--v2, .refgrid.refgrid--v3,
  .refgrid.refgrid--v4, .refgrid.refgrid--v5, .refgrid.refgrid--v6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.refcard-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0e1116;
  margin-bottom: 10px;
}
.refgrid--v .refcard-media { aspect-ratio: 9 / 16; }
.refgrid--s .refcard-media { aspect-ratio: 1 / 1; background: #f2f4f8; }
.refgrid--h .refcard-media { aspect-ratio: 16 / 9; }
.refgrid--b .refcard-media { aspect-ratio: 4 / 3; background: #fff; }
.refgrid--b .refcard-media > img { object-fit: cover; }

.refcard-media > video,
.refcard-media > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;   
}
.refgrid--s .refcard-media > img { object-fit: contain; }

.refcard-cat {
  margin: 0 0 2px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--accent);
}
.refcard-title {
  margin: 0;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.45;
}

.refcard-sound {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 5px 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 17, 22, .62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font: inherit;
  font-size: .6875rem;
  font-weight: 700;
  cursor: pointer;
  opacity: .8;
}
.refcard-sound:hover { opacity: 1; }
.refcard-sound.is-on { background: var(--accent); opacity: 1; }

.quickbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(14, 17, 22, .08);
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
}
.quickform { max-width: 1120px; margin: 0 auto; }
.quickform-lead {
  margin: 0 0 8px;
  font-size: .8125rem;
  color: var(--muted);
}
.quickform-row { display: flex; gap: 8px; }
.quickform-row input[type="text"] {
  flex: 1 1 0;
  min-width: 0;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: .9375rem;
  background: #fff;
}
.quickform-row input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.quickform-row .btn { flex: 0 0 auto; white-space: nowrap; }
.quickform-status { margin: 8px 0 0; font-size: .8125rem; }
.quickform-status--ok { color: #0a7c47; }
.quickform-status--error { color: #b3271b; }
.quickform-status--info { color: var(--muted); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

@media (max-width: 560px) {
  .ref-page { padding-bottom: 168px; }
  .quickform-row { flex-wrap: wrap; }
  .quickform-row input[type="text"] { flex: 1 1 100%; }
  .quickform-row .btn { flex: 1 1 100%; }
  .quickform-lead { font-size: .75rem; }
  .refgrid--v { grid-template-columns: repeat(2, 1fr); }
}

.refcard-media--frame { background: #fff; }
.refcard-media--frame iframe {
  width: 1440px;
  height: 810px;
  border: 0;
  transform-origin: 0 0;
  transform: scale(.25);   
  pointer-events: none;
}
.refcard-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(14,17,22,0) 55%, rgba(14,17,22,.55) 100%);
}
.refcard-cover:hover { background: linear-gradient(180deg, rgba(14,17,22,.1) 0%, rgba(14,17,22,.7) 100%); }

.refcard-badge{
  margin: 4px 0 0;
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .6875rem;
  font-weight: 700;
  color: var(--muted);
  background: #fff;
}

.refcard-note{
  margin: 4px 0 0;
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--muted);
}

.cardstrip{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  margin-bottom: 8px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.cardstrip:focus-visible{ outline: 2px solid var(--accent); outline-offset: 4px; }
.cardslide{
  flex: 0 0 auto;
  width: clamp(190px, 24vw, 268px);
  margin: 0;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f4f8;
  border: 1px solid var(--line);
}
.cardslide img{ width: 100%; height: auto; display: block; aspect-ratio: 4 / 5; object-fit: cover; }

.ref-tab { transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s var(--ease); }
.refcard { transition: transform .34s var(--ease); }
.refcard:hover { transform: translateY(-4px); }
.refcard:hover .refcard-media { box-shadow: 0 16px 38px rgba(14, 17, 22, .18); }
.refcard-media { transition: box-shadow .34s ease; }
.refcard-media > img { transition: transform .6s var(--ease); }
.refcard:hover .refcard-media > img { transform: scale(1.04); }

.refcard-cover { opacity: 0; transition: opacity .26s ease; }
.refcard-media--frame:hover .refcard-cover,
.refcard-media--frame:focus-within .refcard-cover,
.refcard-cover:focus-visible { opacity: 1; }

.refcard-sound {
  min-width: 46px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(14, 17, 22, .82);
  transition: opacity .2s ease, background .25s ease, transform .25s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  .refcard, .refcard-media > img, .ref-tab, .refcard-sound { transition: none !important; transform: none !important; }
  .refcard-cover { opacity: 1; }
}

.stickycta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; gap: 10px; align-items: center;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .28s var(--ease);
}
.stickycta.is-on { transform: none; }
.stickycta .btn { flex: 1 1 auto; padding: 13px 18px; font-size: .9375rem; }
.stickycta .stickycta-alt {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  min-width: 48px; min-height: 48px;
  border: 1.5px solid var(--line-strong); border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: .875rem; color: var(--ink);
  transition: border-color .18s ease, color .18s ease;
}
.stickycta .stickycta-alt:hover { border-color: var(--ink); }
@media (max-width: 760px) {
  .stickycta { display: flex; }
  body.has-stickycta { padding-bottom: 78px; }
}
@media (prefers-reduced-motion: reduce) {
  .stickycta { transition: none; }
}

@media (hover: none) {
  .refcard-cover { opacity: 1; }
  .refcard-media--frame:hover .refcard-media > img { transform: none; }
}

@media (max-width: 900px) {
  .site-footer nav a,
  .nav a,
  button,
  [role="button"],
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .site-footer nav { gap: 4px 16px; }
  .site-footer nav a { min-width: 44px; padding-inline: 10px; justify-content: center; }
  .brand, .skip { min-height: 44px; display: inline-flex; align-items: center; }
  
  [class$="-play"], [class*="-play "] { min-height: 44px; }
}

.checks input[type="checkbox"],
.consent input[type="checkbox"],
.check input[type="checkbox"] { width: 24px; height: 24px; }

.field input,
.field select,
.field textarea {
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field [aria-invalid="true"] { transition: border-color .18s ease, box-shadow .18s ease; }
