/* ============================================================
   rubberduck.id — landing page styles
   Tokens copied from design-system/Ducky Design System/colors_and_type.css
   Marketing patterns adapted from design-system/.../ui_kits/marketing/marketing.css
   ============================================================ */

@import url("https://api.fontshare.com/v2/css?f[]=satoshi@500,700,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap");

:root {
  /* ---- Brand palette ---- */
  --duck-yellow: #F5B82E;
  --yolk:        #E09A1A;
  --beak:        #E8602C;
  --beak-deep:   #C44A1B;
  --pond:        #5BB0C6;
  --pond-deep:   #2E7F94;

  /* ---- Surface ---- */
  --bath:        #E6F1FB;
  --bubble:      #F7FBFE;
  --foam:        #D5E6F3;
  --rim:         #C0D5E7;
  --sky-deep:    #BBDDF1;

  /* ---- Ink ---- */
  --ink:         #15181C;
  --ink-soft:    #475260;
  --ink-quiet:   #7E8B98;
  --ink-on-dark: #F7FBFE;

  /* ---- Semantic ---- */
  --success:     #5E9F5C;
  --warning:     #F39A3A;
  --danger:      #D8533E;

  --bg:          var(--bath);
  --fg:          var(--ink);
  --link:        var(--beak);
  --link-hover:  var(--beak-deep);
  --border:      rgba(26, 22, 20, 0.08);

  /* ---- Type ---- */
  --font-display: "Satoshi", system-ui, sans-serif;
  --font-body:    "Satoshi", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  --fs-display: clamp(2.25rem, 3vw + 1rem, 4rem);
  --fs-h1:      clamp(1.75rem, 2vw + 1rem, 2.75rem);
  --fs-h2:      clamp(1.75rem, 2vw + 1rem, 2.5rem);
  --fs-h3:      clamp(1.125rem, 0.5vw + 1rem, 1.375rem);
  --header-h:   64px;
  --fs-body:    1.0625rem;
  --fs-small:   0.875rem;
  --fs-caption: 0.75rem;

  /* ---- Spacing (4px base) ---- */
  --s-1:  4px;  --s-2:  8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px;  --s-6: 24px;  --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;

  /* ---- Radii ---- */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* ---- Shadows ---- */
  --sh-1:     0 1px 2px rgba(30, 60, 94, 0.07);
  --sh-2:     0 4px 12px rgba(30, 60, 94, 0.09);
  --sh-3:     0 12px 28px rgba(30, 60, 94, 0.14);
  --sh-press: inset 0 2px 0 rgba(30, 60, 94, 0.14);
  --sh-glow:  0 0 0 4px rgba(232, 96, 44, 0.22);

  /* ---- Motion ---- */
  --ease-duck: cubic-bezier(0.34, 1.2, 0.64, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:  140ms;
  --dur-med:   220ms;
  --dur-slow:  360ms;

  /* ---- Layout ---- */
  --w-marketing: 1120px;
  --w-prose:     680px;
}

/* ============================================================
   Base
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; }
body { overflow-x: clip; } /* clip, NOT hidden — does not create scrolling context, keeps position:sticky working */

::selection { background: var(--duck-yellow); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}

p { margin: 0 0 var(--s-4); color: var(--ink-soft); text-wrap: pretty; }

a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease-soft);
}
a:hover { color: var(--link-hover); }

.eyebrow {
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beak);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 0;
  padding: 12px 22px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--dur-med) var(--ease-duck);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}
.btn--lg { padding: 16px 28px; font-size: 17px; border-radius: 16px; }
.btn--primary { background: var(--beak); color: var(--bubble); }
.btn--primary:hover { background: var(--beak-deep); color: var(--bubble); transform: translateY(-1px); }
.btn--primary:active { box-shadow: var(--sh-press); transform: translateY(1px); }
.btn--secondary { background: var(--bubble); color: var(--ink); border: 1px solid var(--ink); }
.btn--secondary:hover { background: var(--foam); color: var(--ink); }
.btn--ghost { background: var(--bubble); color: var(--ink); box-shadow: 0 1px 2px rgba(30, 60, 94, 0.06); }
.btn--ghost:hover { background: var(--foam); color: var(--ink); box-shadow: var(--sh-2); transform: translateY(-1px); }
.btn:hover { text-decoration: none; }
.btn:focus-visible { outline: none; box-shadow: var(--sh-glow); }
.btn i { width: 18px; height: 18px; stroke-width: 1.75; }

/* ============================================================
   Header (sticky nav)
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background var(--dur-med), backdrop-filter var(--dur-med), border-color var(--dur-med);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(230, 241, 251, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--rim);
}
.header__inner {
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand img { display: block; flex-shrink: 0; }
.brand__tld { color: var(--beak); }
.brand:hover { color: var(--ink); }
.brand:hover .brand__tld { color: var(--beak-deep); }
.brand--lg { font-size: 32px; gap: 12px; }
.nav { display: flex; gap: 26px; margin-left: 8px; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color var(--dur-fast);
}
.nav a:hover { color: var(--ink); }
.header__cta { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.link-quiet {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}
.link-quiet:hover { color: var(--beak); }
.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; flex-direction: column; gap: 4px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 99px; }
.mobilenav { display: none; }

/* ============================================================
   Quack icons — sprite reference (.ic class)
   Usage: <svg class="ic ic--md"><use href="/static/assets/quack-icons.svg#name"/></svg>
   ============================================================ */
.ic {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  vertical-align: -0.125em;
}
.ic--sm { font-size: 14px; }
.ic--md { font-size: 20px; }
.ic--lg { font-size: 28px; }
.ic--xl { font-size: 40px; }

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; margin-left: auto; }
  .mobilenav.is-open {
    display: flex;
    flex-direction: column;
    padding: 0 24px 16px;
    background: var(--bath);
    border-bottom: 1px solid var(--rim);
  }
  .mobilenav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 24px 24px 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  position: relative;
}
.hero__col .eyebrow { display: block; margin-bottom: var(--s-4); }
.display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-4);
  color: var(--ink);
  text-wrap: balance;
}
.display--accent { color: var(--beak); }
.lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 var(--s-5);
  max-width: 540px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.honest-proof {
  margin-top: var(--s-6);
  background: var(--bubble);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  max-width: 540px;
}
.honest-proof__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yolk);
  font-weight: 700;
  margin-bottom: 6px;
}
.honest-proof__dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--duck-yellow);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--duck-yellow) 25%, transparent);
}
.honest-proof p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.honest-proof p b { color: var(--ink); }
.honest-proof a {
  color: var(--beak);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--beak) 40%, transparent);
}
.honest-proof a:hover { color: var(--beak-deep); text-decoration-color: var(--beak-deep); }

.hero__duck {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.duckring {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #F7FBFE 0%, #D5E6F3 70%, transparent 71%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}
.duckring__bob {
  animation: bob 4.6s var(--ease-duck) infinite;
  filter: drop-shadow(0 12px 24px rgba(94,60,30,0.18));
  width: 78%;
  height: auto;
}
.hero__ripple {
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 5%;
  width: 90%;
  opacity: 0.8;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 24px 32px;
    min-height: auto;
  }
  .hero__duck { max-width: 280px; margin: 0 auto; }
  .hero__col .eyebrow { margin-bottom: var(--s-3); }
}

/* ============================================================
   Section heads
   ============================================================ */

.section__head {
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  margin-bottom: var(--s-12);
}
.section__head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.section__head .eyebrow { display: block; margin-bottom: var(--s-3); }
.section__head p {
  max-width: var(--w-prose);
  margin: var(--s-4) auto 0;
  color: var(--ink-soft);
}

/* ============================================================
   Services — 2 service cards
   ============================================================ */

.services { padding: var(--s-24) 0; }
.services__grid {
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bubble);
  border: 2px solid var(--beak);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform var(--dur-med) var(--ease-duck), box-shadow var(--dur-med);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.service-card__icn {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
}
.service-card__icn i { width: 28px; height: 28px; stroke-width: 1.75; }
.service-card--yellow .service-card__icn { background: var(--duck-yellow); color: var(--ink); }
.service-card--orange .service-card__icn { background: var(--beak); color: var(--bubble); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 var(--s-3);
  color: var(--ink);
}
.service-card p { margin: 0 0 var(--s-5); color: var(--ink-soft); font-size: 16px; line-height: 1.55; }
.service-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.service-card__list li i { width: 16px; height: 16px; color: var(--beak); stroke-width: 2.75; flex-shrink: 0; margin-top: 3px; }
.service-card__list li > span { flex: 1; min-width: 0; }
.service-card__list li b { color: var(--ink); font-weight: 700; }

.service-card__tag {
  display: inline-block;
  margin: -8px 0 var(--s-3);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--beak) 12%, transparent);
  color: var(--beak-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-card__tag--soft {
  background: color-mix(in srgb, var(--duck-yellow) 22%, transparent);
  color: #8a5e10;
}

.service-card__example {
  margin-top: var(--s-5);
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--bath) 60%, var(--bubble));
  border: 1px dashed color-mix(in srgb, var(--beak) 28%, transparent);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.service-card--yellow .service-card__example {
  border-color: color-mix(in srgb, var(--duck-yellow) 50%, transparent);
}
.service-card__example-label {
  display: inline-block;
  margin-right: 6px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.section__sub {
  max-width: var(--w-prose);
  margin: var(--s-4) auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 880px) { .services__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Paradigm — single-column callout
   ============================================================ */

.paradigm {
  padding: var(--s-24) 0;
  background: var(--bubble);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.paradigm__inner {
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.paradigm__col .eyebrow { display: block; margin-bottom: var(--s-3); }
.paradigm h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--s-5);
}
.paradigm__list {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.paradigm__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.paradigm__list li i { color: var(--beak); flex-shrink: 0; margin-top: 3px; }

.paradigm__visual {
  background: var(--bubble);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
  overflow: hidden;
  font-family: var(--font-body);
  color: var(--ink-soft);
}

.ops__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: color-mix(in srgb, var(--ink) 4%, var(--bubble));
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}
.ops__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.ops__pulse {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 22%, transparent);
  animation: ops-pulse 1.6s ease-in-out infinite;
}
@keyframes ops-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.82); }
}
.ops__time { color: var(--ink-quiet); font-weight: 500; letter-spacing: 0.04em; }

.ops__list { list-style: none; margin: 0; padding: 4px 0; }
.ops__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px dashed var(--border);
}
.ops__row:last-child { border-bottom: none; }
.ops__dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  margin-top: 7px;
  flex-shrink: 0;
}
.ops__row--run  .ops__dot {
  background: var(--success);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 16%, transparent);
}
.ops__row--wait .ops__dot {
  background: var(--warning);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--warning) 18%, transparent);
}
.ops__row--done .ops__dot { background: var(--ink-quiet); opacity: 0.7; }

.ops__body { flex: 1; min-width: 0; }
.ops__title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}
.ops__title b {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.ops__pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 99px;
  line-height: 1;
  white-space: nowrap;
}
.ops__pill--run  { background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success); }
.ops__pill--wait { background: color-mix(in srgb, var(--warning) 18%, transparent); color: var(--beak-deep); }
.ops__pill--done { background: color-mix(in srgb, var(--ink-quiet) 14%, transparent); color: var(--ink-quiet); }
.ops__task { font-size: 13px; line-height: 1.45; color: var(--ink-soft); }

.ops__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: color-mix(in srgb, var(--ink) 4%, var(--bubble));
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--ink-soft);
}
.ops__foot b { color: var(--ink); font-weight: 700; }
.ops__sep { color: var(--ink-quiet); }

@media (max-width: 880px) {
  .paradigm__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   Pricing — 4 tiers
   ============================================================ */

.pricing { padding: var(--s-24) 0; }
.pricing__grid {
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plan {
  background: var(--bubble);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--rim);
  position: relative;
}
.plan--featured {
  background: var(--ink);
  color: var(--bubble);
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: var(--sh-3);
}
.plan__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--duck-yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.plan__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.plan__blurb { font-size: 13px; opacity: 0.75; line-height: 1.5; }
.plan--featured .plan__blurb { color: var(--bubble); opacity: 0.85; }
.plan__price { display: flex; align-items: baseline; gap: 4px; padding: 6px 0; flex-wrap: wrap; }
.plan__amt {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan__per { font-size: 13px; opacity: 0.6; }
.plan__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.plan__list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; line-height: 1.45; }
.plan__list li i { width: 16px; height: 16px; color: var(--beak); stroke-width: 2.5; flex-shrink: 0; margin-top: 2px; }
.plan--featured .plan__list li i { color: var(--duck-yellow); }
.plan .btn { margin-top: auto; justify-content: center; width: 100%; }
.plan--featured .btn--secondary { background: transparent; color: var(--bubble); border-color: var(--bubble); }
.plan--featured .btn--secondary:hover { background: rgba(247,251,254,0.08); color: var(--bubble); }

@media (max-width: 1024px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pricing__grid { grid-template-columns: 1fr; } .plan--featured { transform: none; } }

/* ============================================================
   How it works — process steps
   ============================================================ */

.how {
  padding: var(--s-24) 0;
  background: var(--bubble);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how__grid {
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--bath);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  position: relative;
  border: 1px solid var(--rim);
}
.step__num {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--duck-yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-1);
}
.step h3 { font-family: var(--font-display); font-size: 18px; margin: var(--s-3) 0 var(--s-2); }
.step p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

@media (max-width: 880px) { .how__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .how__grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA strip
   ============================================================ */

.cta-strip { padding: var(--s-24) 0; }
.cta-strip__inner {
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.cta-strip__card {
  background: var(--beak);
  color: var(--bubble);
  border-radius: var(--r-xl);
  padding: 64px 32px;
  box-shadow: var(--sh-2);
  position: relative;
  overflow: hidden;
}
.cta-strip__card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2vw + 1rem, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--bubble);
  margin: 0 0 var(--s-4);
}
.cta-strip__card p {
  color: var(--bubble);
  opacity: 0.9;
  margin: 0 auto var(--s-6);
  max-width: 520px;
  font-size: 17px;
}
.cta-strip .btn--primary { background: var(--ink); color: var(--bubble); }
.cta-strip .btn--primary:hover { background: #000; color: var(--bubble); }
.cta-strip__duck {
  position: absolute;
  right: -24px;
  bottom: -8px;
  width: 340px;
  opacity: 0.92;
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(95, 35, 10, 0.18));
}
@media (max-width: 720px) {
  .cta-strip__duck { width: 220px; right: -32px; bottom: -16px; opacity: 0.55; }
}

/* ============================================================
   Footer
   ============================================================ */

.footer { background: var(--bath); padding: var(--s-20) 0 var(--s-8); position: relative; }
.footer__ripple {
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  width: 100%;
  height: 56px;
  opacity: 0.85;
  pointer-events: none;
}
.footer__inner {
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
}
.footer__brand img { display: block; }
.footer__brand p { font-size: 14px; color: var(--ink-soft); max-width: 320px; margin-top: var(--s-4); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__h { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: var(--s-3); }
.footer__cols a { display: block; color: var(--ink-soft); text-decoration: none; padding: 4px 0; font-size: 14px; }
.footer__cols a:hover { color: var(--beak); }
.footer__bottom {
  max-width: var(--w-marketing);
  margin: var(--s-12) auto 0;
  padding: var(--s-5) 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-quiet);
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Qualifier — "Kami bukan untuk semua orang" disqualifier
   ============================================================ */

.qualifier {
  padding: var(--s-24) 0;
  background: var(--bubble);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.qualifier__grid {
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.qual-col {
  background: var(--bath);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 2px solid var(--border);
}
.qual-col--match {
  background: color-mix(in srgb, var(--success) 5%, var(--bubble));
  border: 2px solid var(--success);
}
.qual-col--miss {
  background: color-mix(in srgb, var(--danger) 5%, var(--bubble));
  border: 2px solid var(--danger);
}
.qual-col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.qual-col__icn {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qual-col__icn i { width: 18px; height: 18px; stroke-width: 2.5; }
.qual-col--match .qual-col__icn { background: color-mix(in srgb, var(--success) 15%, transparent); color: var(--success); }
.qual-col--miss .qual-col__icn  { background: color-mix(in srgb, var(--danger) 12%, transparent); color: var(--danger); }
.qual-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qual-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.qual-col li b {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.qual-col__mark {
  width: 20px;
  height: 20px;
  border-radius: 99px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.qual-col__mark i { width: 12px; height: 12px; stroke-width: 3; }
.qual-col--match .qual-col__mark { background: var(--success); color: var(--bubble); }
.qual-col--miss .qual-col__mark  { background: var(--danger);  color: var(--bubble); }
.qualifier__footnote {
  max-width: var(--w-marketing);
  margin: 32px auto 0;
  background: var(--bath);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.qualifier__footnote b { color: var(--ink); }
.qualifier__footnote a {
  color: var(--beak);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.qualifier__footnote a:hover { color: var(--beak-deep); }

@media (max-width: 880px) {
  .qualifier__grid { grid-template-columns: 1fr; }
  .qualifier__footnote { margin: 24px 24px 0; max-width: none; }
}

/* ============================================================
   Payment — Midtrans-supported methods
   ============================================================ */

.payment {
  padding: var(--s-24) 0;
  background: var(--bubble);
}
.payment .section__head {
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: end;
  max-width: var(--w-marketing);
  padding: 0 24px;
  margin: 0 auto var(--s-12);
}
.payment .section__head h2 { max-width: 14ch; margin: 0; line-height: 1.1; }
.payment .section__head p { max-width: none; margin: 0; line-height: 1.6; }
.payment .section__head .eyebrow { display: inline-block; margin-bottom: 6px; }

@media (max-width: 800px) {
  .payment .section__head { grid-template-columns: 1fr; gap: 14px; }
  .payment .section__head h2 { max-width: 22ch; }
}

/* Midtrans trust strip */
.payment__trust {
  max-width: 880px;
  margin: 0 auto var(--s-12);
  background: var(--bubble);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--sh-2);
  flex-wrap: wrap;
  justify-content: center;
}
.midtrans-badge { display: flex; align-items: center; gap: 12px; }
.midtrans-badge__logo {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.midtrans-badge__label small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 700;
}
.midtrans-badge__label b {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: var(--ink);
}
.payment__trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.payment__trust-pills {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bath);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.trust-pill__check {
  width: 14px;
  height: 14px;
  background: var(--success);
  border-radius: 99px;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
}

/* methods grid */
.payment__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: var(--w-marketing);
  margin: 0 auto;
  padding: 0 24px;
}
.m-card {
  background: var(--bubble);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-2);
  transition: transform var(--dur-med) var(--ease-duck), box-shadow var(--dur-med);
}
.m-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-3);
}
.m-card--feature {
  grid-column: 1 / -1;
  background: var(--bath);
  display: flex;
  flex-direction: column;
}
.m-card--feature h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 4px 0 0;
}
.m-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.m-card__ico {
  width: 44px;
  height: 44px;
  background: var(--bath);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-card__ico i { width: 22px; height: 22px; stroke-width: 1.75; }
.m-card__ico--success { background: color-mix(in srgb, var(--success) 15%, transparent); color: var(--success); }
.m-card__ico--duck    { background: color-mix(in srgb, var(--duck-yellow) 18%, transparent); color: var(--yolk); }
.m-card__ico--beak    { background: color-mix(in srgb, var(--beak) 12%, transparent); color: var(--beak); }
.m-card__ico--pond    { background: color-mix(in srgb, var(--pond) 18%, transparent); color: var(--pond-deep); }
.m-card__ico--ink     { background: var(--ink); color: var(--bubble); }
.m-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  margin: 0;
  letter-spacing: -0.015em;
}
.m-card__sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 2px 0 0;
}
.m-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 16px;
}

/* brand chips */
.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--bubble);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 100px;
  min-height: 44px;
}
.chip__logo {
  height: 24px;
  width: auto;
  max-width: 96px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

/* QRIS feature card unique styling */
.qris-logo {
  align-self: flex-start;
  height: 48px;
  width: auto;
  max-width: 180px;
  display: block;
  margin-bottom: 14px;
  object-fit: contain;
}
.qris-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 14px;
}
.qris-desc b { color: var(--ink); font-weight: 700; }
.qris-note {
  font-size: 13px;
  color: var(--ink-quiet);
}

/* security note */
.payment__security {
  max-width: 880px;
  margin: var(--s-12) auto 0;
  background: var(--sky-deep);
  border: 1px solid color-mix(in srgb, var(--pond) 35%, transparent);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.payment__security-lock {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--success) 22%, var(--bubble));
  color: var(--success);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--success) 25%, transparent);
}
.payment__security-lock i { width: 20px; height: 20px; stroke-width: 2; }
.payment__security p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pond-deep);
}
.payment__security p b { color: var(--ink); font-weight: 700; }
.payment__security-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: color-mix(in srgb, var(--pond-deep) 75%, var(--ink));
}

@media (max-width: 800px) {
  .payment__grid { grid-template-columns: 1fr; }
}
