/* ============================================================
   myfavoriteaitool.com  —  warm cream editorial
   (ElevenLabs-family system: eggshell paper, whisper-weight
   headlines, soft warm accent). Light, premium, inviting.
   ============================================================ */

:root {
  --eggshell:  #fdfcfc;   /* page canvas, card + button surfaces */
  --taupe:     #f5f3f1;   /* section bands, feature cards */
  --stone:     #ebe8e4;   /* hairline borders, dividers */
  --ink:       #1a1714;   /* primary text (warm near-black) */
  --graphite:  #44403b;   /* strong secondary text, labels */
  --smoke:     #777169;   /* body copy, muted descriptions */
  --ash:       #a59f97;   /* faint helper text */
  --accent:    #c2603a;   /* warm terracotta — the single spark */
  --accent-hi: #a94f2d;   /* accent hover */
  --accent-wash:#f6e7de;  /* soft accent background wash */
  --amber:     #e0a05a;   /* warm amber, gradient partner */
  --rose:      #d98a6a;   /* soft rose, gradient partner */
  --white:     #ffffff;
  --max: 1180px;

  /* gradient system — warm, soft, premium */
  --grad-warm:   linear-gradient(135deg, #c2603a 0%, #e0a05a 100%);
  --grad-warm-hi:linear-gradient(135deg, #a94f2d 0%, #d98a6a 100%);
  --grad-band:   linear-gradient(180deg, #fdfcfc 0%, #f7f1ea 100%);
  --grad-band-2: linear-gradient(180deg, #f7efe8 0%, #f5f3f1 100%);
  --grad-wash:   linear-gradient(150deg, #f9eae0 0%, #f6e7de 60%, #f3ece6 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--eggshell);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.grain { display: none; }

/* ---- typography: Fraunces light (whisper-weight editorial) ---- */
h1, h2, h3, .mark, .sig, .plan-name {
  font-family: "Fraunces", Georgia, ui-serif, serif;
  font-weight: 300;                 /* the whisper: never bold */
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1.05; }
h1 em { font-style: italic; font-weight: 300; color: var(--accent); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); font-weight: 300; }
h3 { font-size: 1.3rem; font-weight: 400; }

.eyebrow, .section-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 500; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.section-eyebrow { margin-bottom: 18px; }
.section-eyebrow.light { color: var(--accent); }

/* ---- header ---- */
header.site { padding: 22px 0; background: rgba(253,252,252,.82); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--stone); }
.nav { display: flex; align-items: center; justify-content: space-between; }
.mark { font-size: 1.3rem; font-weight: 400; letter-spacing: -0.01em; }
.nav-cta { font-family: "Inter", sans-serif; font-size: .95rem; font-weight: 500; color: var(--ink); text-decoration: none; border: 1px solid var(--stone); border-radius: 9999px; padding: 9px 22px; transition: .2s; }
.nav-cta:hover { border-color: var(--ink); }

/* ---- buttons: pill, non-negotiable 9999px ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Inter", sans-serif; font-weight: 500; font-size: 1rem;
  text-decoration: none; padding: 14px 30px; border-radius: 9999px;
  transition: background .2s, color .2s, transform .18s, border-color .2s;
  border: 1px solid transparent;
}
.btn.primary { background: var(--grad-warm); color: var(--white); }
.btn.primary:hover { background: var(--grad-warm-hi); transform: translateY(-1px); box-shadow: 0 12px 28px -12px rgba(194,96,58,.6); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--eggshell); }
.big-btn { font-size: 1.05rem; padding: 16px 38px; margin: 6px 0 22px; }

/* ---- hero: centered, soft warm glow ---- */
.hero {
  padding: clamp(84px, 12vw, 152px) 32px clamp(64px, 8vw, 112px);
  max-width: none; width: 100%; margin: 0; text-align: center; position: relative;
  background: linear-gradient(180deg, #fbeee3 0%, #fdfcfc 72%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -12%; left: 50%; transform: translateX(-50%);
  width: 140vw; height: 720px;
  background:
    radial-gradient(38% 48% at 40% 34%, rgba(224,160,90,.30), transparent 64%),
    radial-gradient(42% 50% at 62% 42%, rgba(194,96,58,.22), transparent 66%);
  pointer-events: none; z-index: 0; filter: blur(8px);
}
.hero > * { position: relative; z-index: 1; max-width: 960px; margin-left: auto; margin-right: auto; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 28px; }
.lede { font-size: clamp(1.12rem, 1.7vw, 1.42rem); color: var(--smoke); max-width: 46ch; margin: 0 auto 38px; line-height: 1.5; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.disclosure { font-family: "Inter", sans-serif; font-size: .88rem; color: var(--smoke); max-width: 62ch; margin-left: auto; margin-right: auto; }
.disclosure.light { color: var(--smoke); }
.hero-bonus { display: inline-block; margin-top: 6px; font-family: "Inter", sans-serif; font-size: .95rem; color: var(--accent-hi); background: var(--accent-wash); border-radius: 9999px; padding: 11px 24px; }
.hero-bonus strong { font-weight: 600; }

/* ---- bands ---- */
.band { padding: clamp(76px, 9vw, 120px) 0; }
.band .big { font-family: "Fraunces", Georgia, serif; font-weight: 300; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.26; letter-spacing: -0.01em; margin-bottom: 26px; max-width: 26ch; color: var(--ink); }
.band p { max-width: 62ch; margin-bottom: 18px; color: var(--smoke); font-family: "Inter", sans-serif; }
.band h2 { margin-bottom: 24px; }

/* story section with portrait */
.story-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.story-photo { position: relative; }
.story-photo img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 18px; display: block; box-shadow: 0 24px 56px -34px rgba(26,23,20,.45); }
.story-text .section-eyebrow { margin-bottom: 16px; }
.story-text h2 { margin-bottom: 22px; }
.story-text .big { margin-bottom: 18px; }
@media (max-width: 820px) {
  .story-split { grid-template-columns: 1fr; gap: 28px; }
  .story-photo { max-width: 340px; }
  .story-photo img { max-height: 300px; }
}

/* editorial two-column intro: headline left, supporting copy right */
.band-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: end; }
.band-split .band-head { align-self: start; }
.band-split .band-head h2 { margin-bottom: 0; }
.band-split .band-body .big { margin-bottom: 20px; }
.band-split .band-body .big:last-child,
.band-split .band-body p:last-child { margin-bottom: 0; }
@media (max-width: 820px) {
  .band-split { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

/* alternating warm gradient bands */
.see    { background: var(--grad-band-2); }
.plans  { background: var(--grad-band); }
.plans-urgency { font-family: "Inter", sans-serif; font-size: .95rem; line-height: 1.5; color: var(--accent-hi); max-width: 52ch; margin-top: 16px; padding-left: 16px; border-left: 3px solid var(--accent); }
.affiliate-notice { font-family: "Inter", sans-serif; font-size: .92rem; line-height: 1.55; color: var(--smoke); text-align: center; max-width: 68ch; margin: 44px auto 0; }
.shift  { background: var(--grad-band-2); }
.why    { background: var(--grad-band); }
.team   { background: var(--grad-band-2); }
.honest { background: var(--grad-band); }
.faq    { background: var(--grad-band-2); }
.cta    { background: linear-gradient(180deg, #f7efe8 0%, #fbeee3 100%); }

/* ---- proof strip ---- */
.proof-strip { background: var(--eggshell); padding: clamp(20px, 4vw, 40px) 0 clamp(28px, 5vw, 56px); }
.proof-strip .wrap { max-width: 940px; }
.proof-box { background: linear-gradient(150deg, #fbe4d5 0%, #f7ede4 100%); border: 2px solid var(--accent); border-radius: 24px; padding: clamp(32px, 5vw, 54px); text-align: center; box-shadow: 0 30px 70px -40px rgba(194,96,58,.5); }
.proof-kicker { font-family: "Inter", sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-hi); margin: 0 0 14px; }
.proof-headline { font-family: "Fraunces", Georgia, serif; font-weight: 400; font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.14; letter-spacing: -0.02em; color: var(--ink); margin: 0 auto 16px; max-width: 22ch; }
.proof-sub { font-family: "Inter", sans-serif; font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.55; color: var(--graphite); margin: 0 auto; max-width: 60ch; }

/* ---- see it in action: framed video, soft shadow ---- */
.video-frame { margin-top: 44px; border-radius: 24px; overflow: hidden; background: var(--eggshell); border: 1px solid var(--stone); box-shadow: 0 30px 70px -44px rgba(26,23,20,.35); }
.video-frame iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }
.video-placeholder { aspect-ratio: 16 / 9; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; background: radial-gradient(70% 80% at 50% 38%, var(--accent-wash), var(--taupe)); }
.video-placeholder .play { width: 76px; height: 76px; border-radius: 9999px; background: var(--grad-warm); position: relative; box-shadow: 0 16px 40px -12px rgba(194,96,58,.6); }
.video-placeholder .play::after { content: ""; position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%); border-left: 22px solid var(--eggshell); border-top: 13px solid transparent; border-bottom: 13px solid transparent; }
.video-placeholder p { color: var(--smoke); margin: 0; font-family: "Inter", sans-serif; font-size: .95rem; }

/* self-hosted native video player (works in every browser, Brave included) */
.video-frame { width: 100%; max-width: 820px; margin: 40px auto 0; border: 1px solid var(--stone); border-radius: 20px; overflow: hidden; box-shadow: 0 26px 60px -36px rgba(26,23,20,.4); background: #000; }
.video-player { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; }

/* ---- choose your plan ---- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; align-items: start; }
.plan { background: var(--eggshell); border: 1px solid var(--stone); border-radius: 24px; padding: 36px 30px; display: flex; flex-direction: column; position: relative; transition: transform .2s, box-shadow .2s, border-color .2s; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(26,23,20,.3); }
.plan.featured { border-color: var(--accent); background: linear-gradient(180deg, #fdf4ec 0%, #fdfcfc 55%); box-shadow: 0 24px 60px -34px rgba(194,96,58,.5); }
.plan-flag { position: absolute; top: 30px; right: 30px; font-family: "Inter", sans-serif; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--accent-hi); background: var(--accent-wash); padding: 5px 13px; border-radius: 9999px; }
.plan-name { font-size: 1.7rem; font-weight: 400; margin-bottom: 4px; }
.plan-tagline { font-family: "Inter", sans-serif; font-size: .92rem; color: var(--smoke); margin-bottom: 22px; max-width: 26ch; }

/* pricing */
.price { margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--stone); }
.price-was { display: inline-block; font-family: "Inter", sans-serif; font-size: 1rem; color: var(--ash); text-decoration: line-through; margin-bottom: 2px; }
.price-now { display: block; font-family: "Fraunces", Georgia, serif; font-weight: 400; font-size: 2.9rem; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.price-mo { font-family: "Inter", sans-serif; font-size: 1rem; font-weight: 400; color: var(--smoke); letter-spacing: 0; }
.price-today { display: block; margin-top: 10px; font-family: "Inter", sans-serif; font-size: .82rem; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; color: var(--graphite); }

/* highlight box (installs + memory) */
.plan-highlight { background: var(--accent-wash); border-radius: 16px; padding: 18px 20px; margin-bottom: 22px; }
.plan-highlight .hl-flag { display: inline-block; font-family: "Inter", sans-serif; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-hi); margin-bottom: 8px; }
.plan-highlight p { font-family: "Inter", sans-serif; font-size: .98rem; font-weight: 600; color: var(--ink); margin: 0; max-width: none; }
.plan-highlight p + p { margin-top: 4px; }
.plan-value { font-family: "Inter", sans-serif; font-size: .88rem; font-weight: 500; color: var(--accent-hi); margin-bottom: 20px; }

.plan-feats { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 11px; flex: 1; }
.plan-feats li { font-family: "Inter", sans-serif; font-size: .94rem; color: var(--graphite); padding-left: 26px; position: relative; line-height: 1.4; }
.plan-feats li::before { content: ""; position: absolute; left: 0; top: 4px; width: 13px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.plan-cta { width: 100%; }
.disclosure.center { text-align: center; margin: 36px auto 0; max-width: 66ch; }

/* ---- bonus: the warm accent card ---- */
.bonus { background: var(--eggshell); }
.bonus-card { background: linear-gradient(150deg, #fbe4d5 0%, #f7ede4 55%, #f4ece7 100%); border: 4px dashed var(--accent); border-radius: 24px; padding: clamp(40px, 5vw, 64px); position: relative; overflow: hidden; }
.bonus-card::before { content: ""; position: absolute; top: -34%; right: -10%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(224,160,90,.34), rgba(194,96,58,.12) 45%, transparent 70%); pointer-events: none; }
.bonus-card::after { content: ""; position: absolute; bottom: -40%; left: -12%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(217,138,106,.22), transparent 68%); pointer-events: none; }
.bonus-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; position: relative; }
.bonus-head .section-eyebrow.light { margin: 0; }
.bonus-value { font-family: "Inter", sans-serif; font-size: .8rem; font-weight: 600; color: var(--white); background: var(--grad-warm); padding: 6px 16px; border-radius: 9999px; }
.bonus-card h2 { color: var(--ink); max-width: 24ch; margin-bottom: 20px; position: relative; }
.bonus-card .big.light { color: var(--graphite); max-width: 52ch; margin-bottom: 24px; position: relative; }
.bonus-lead { font-family: "Inter", sans-serif; font-size: 1.02rem; line-height: 1.6; color: var(--ink); max-width: 56ch; margin-bottom: 30px; position: relative; padding-left: 18px; border-left: 3px solid var(--accent); }
.bonus-lead strong { color: var(--accent-hi); font-weight: 700; }
.bonus-exclusive { font-family: "Fraunces", Georgia, serif; font-weight: 400; font-style: italic; font-size: 1.15rem; color: var(--accent-hi); max-width: 52ch; margin-bottom: 26px; position: relative; }
.feat-value { display: inline-block; font-family: "Inter", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 2px 10px; border-radius: 999px; vertical-align: middle; margin-left: 4px; }
.bonus-feats { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; position: relative; }
.bonus-feats li { font-family: "Inter", sans-serif; font-size: .97rem; color: var(--graphite); padding-left: 28px; position: relative; line-height: 1.5; }
.bonus-feats li strong { color: var(--ink); font-weight: 600; }
.bonus-feats li::before { content: ""; position: absolute; left: 0; top: 5px; width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.bonus-how { font-family: "Fraunces", Georgia, serif; font-weight: 400; font-size: 1.3rem; line-height: 1.4; color: var(--ink); max-width: none; margin: 8px 0 30px; padding-top: 26px; border-top: 2px dashed var(--accent); position: relative; }
.bonus-card .btn.primary { position: relative; }

/* ---- why grid ---- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.card { background: var(--taupe); border: 1px solid var(--stone); border-radius: 24px; padding: 34px 30px; transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -28px rgba(26,23,20,.28); }
.card .num { font-family: "Fraunces", serif; font-weight: 400; font-size: 1.15rem; color: var(--accent); display: block; margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; }
.card p { font-family: "Inter", sans-serif; font-size: .96rem; margin: 0; color: var(--smoke); max-width: none; }

/* ---- meet my team ---- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.member { display: flex; gap: 16px; background: var(--eggshell); border: 1px solid var(--stone); border-radius: 20px; padding: 26px 24px; transition: transform .2s, box-shadow .2s; }
.member:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -22px rgba(26,23,20,.3); }
.member .avatar { flex: none; width: 60px; height: 60px; border-radius: 9999px; object-fit: cover; object-position: center top; border: 2px solid var(--eggshell); box-shadow: 0 6px 16px -8px rgba(194,96,58,.6), 0 0 0 1px var(--stone); }
.member h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: 2px; }
.member .role { font-family: "Inter", sans-serif; font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); margin-bottom: 8px; }
.member p { font-family: "Inter", sans-serif; font-size: .92rem; color: var(--smoke); margin: 0; max-width: none; line-height: 1.5; }
.team-more { text-align: center; margin: 40px auto 0; max-width: 62ch; color: var(--smoke); font-family: "Inter", sans-serif; font-size: 1rem; }

/* ---- honest QA ---- */
.qa { display: grid; gap: 16px; margin-top: 44px; max-width: 800px; }
.q { background: var(--taupe); border: 1px solid var(--stone); border-radius: 20px; padding: 26px 30px; }
.q h3 { font-family: "Fraunces", Georgia, serif; font-weight: 400; font-size: 1.25rem; margin-bottom: 8px; color: var(--ink); }
.q p { font-family: "Inter", sans-serif; font-size: .97rem; margin: 0; color: var(--smoke); }

/* ---- FAQ ---- */
.faq { background: var(--taupe); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 32px; margin-top: 52px; }
.faq-item { background: var(--eggshell); border: 1px solid var(--stone); border-radius: 20px; padding: 28px 30px; transition: transform .2s, box-shadow .2s; }
.faq-item:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -24px rgba(26,23,20,.28); }
.faq-item h3 { font-family: "Fraunces", Georgia, serif; font-weight: 400; font-size: 1.22rem; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.005em; }
.faq-item p { font-family: "Inter", sans-serif; font-size: .96rem; color: var(--smoke); margin: 0; max-width: none; line-height: 1.55; }

/* ---- final CTA ---- */
.cta { text-align: center; }
.cta h2 { max-width: 20ch; margin: 0 auto 24px; }
.cta .big.light { color: var(--smoke); margin: 0 auto 32px; max-width: 38ch; }
.cta .disclosure.light { color: var(--smoke); margin: 0 auto; }

/* ---- legal pages ---- */
.legal { background: var(--eggshell); padding: clamp(50px, 8vw, 90px) 0 clamp(60px, 9vw, 100px); }
.legal .wrap { max-width: 760px; }
.legal h1 { font-family: "Fraunces", Georgia, serif; font-weight: 300; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em; }
.legal-date { font-family: "Inter", sans-serif; font-size: .9rem; color: var(--ash); margin-bottom: 32px; }
.legal h2 { font-family: "Fraunces", Georgia, serif; font-weight: 400; font-size: 1.35rem; color: var(--ink); margin: 32px 0 10px; }
.legal p { font-family: "Inter", sans-serif; font-size: 1rem; line-height: 1.65; color: var(--graphite); margin-bottom: 14px; max-width: none; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { font-family: "Inter", sans-serif; font-size: 1rem; line-height: 1.6; color: var(--graphite); margin-bottom: 8px; }
.legal a { color: var(--accent-hi); font-weight: 500; }
.legal-back { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--stone); }

/* ---- footer ---- */
.site-footer { background: var(--eggshell); padding: 64px 0 72px; text-align: center; border-top: 1px solid var(--stone); }
.footer-legal { max-width: 760px; margin: 0 auto 26px; text-align: left; display: grid; gap: 14px; }
.footer-legal p { font-family: "Inter", sans-serif; font-size: .8rem; line-height: 1.55; color: var(--smoke); margin: 0; max-width: none; }
.footer-legal p strong { color: var(--graphite); font-weight: 600; }
.footer-links { margin: 0 0 30px; font-family: "Inter", sans-serif; font-size: .92rem; }
.footer-links a { color: var(--accent-hi); font-weight: 500; text-decoration: none; }
.footer-links .sep { color: var(--ash); margin: 0 10px; }
.sig { font-size: 1.9rem; font-weight: 300; font-style: italic; color: var(--ink); margin-bottom: 12px; }
.footer-contact { font-family: "Inter", sans-serif; font-size: 1rem; color: var(--smoke); margin-bottom: 18px; }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; font-family: "Inter", sans-serif; font-weight: 500; font-size: 1rem; color: var(--eggshell); background: var(--ink); text-decoration: none; padding: 13px 26px; border-radius: 9999px; margin-bottom: 32px; transition: transform .18s, background .2s; }
.wa-btn:hover { transform: translateY(-1px); background: var(--accent); }
.wa-btn svg { flex: none; }
.fine { font-family: "Inter", sans-serif; font-size: .82rem; color: var(--ash); max-width: 64ch; margin: 0 auto; line-height: 1.6; }

/* ---- motion ---- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .15s; } .reveal.d3 { transition-delay: .24s; }
.rise { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.rise.in { opacity: 1; transform: none; }
.grid .card.rise:nth-child(2), .team-grid .member.rise:nth-child(2), .plan-grid .plan.rise:nth-child(2) { transition-delay: .06s; }
.grid .card.rise:nth-child(3), .team-grid .member.rise:nth-child(3), .plan-grid .plan.rise:nth-child(3) { transition-delay: .12s; }
.grid .card.rise:nth-child(5) { transition-delay: .06s; }
.grid .card.rise:nth-child(6) { transition-delay: .12s; }

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

/* ---- responsive ---- */
@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .plan.featured { order: -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-feats { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid, .team-grid, .faq-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .hero { padding-top: 70px; }
  .plan-flag { position: static; display: inline-block; margin-bottom: 12px; }
}
