  :root {
    --accent: #6D5DF0;
    --accent-deep: #5041C7;
    --accent-ghost: rgba(109, 93, 240, 0.08);
    --btn: #2A2353;
    --btn-edge: #171334;
    --ink: #1D1C22;
    --ink2: #55535E;
    --ink3: #8A8894;
    --mute: #BAB8C4;
    --bg: #FAF9F6;
    --card: #FFFFFF;
    --panel: #F1EFFA;
    --line: #E9E7E1;
    --r-card: 20px;
    --font: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
  }
  ::selection { background: rgba(109,93,240,0.18); }
  a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 3px solid rgba(109,93,240,0.4); outline-offset: 2px; border-radius: 8px;
  }
  section { scroll-margin-top: 84px; }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
  img { max-width: 100%; }

  /* ---------- Motion: entrance + scroll reveal ---------- */
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
  }
  .rise { animation: riseIn 0.8s var(--ease-out) both; animation-delay: var(--d, 0s); }
  .reveal {
    opacity: 0; transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s var(--ease-out);
    transition-delay: var(--d, 0s);
  }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .rise { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  /* ---------- Nav ---------- */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  nav.scrolled {
    background: rgba(250, 249, 246, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
  }
  .navRow { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
  .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
  .brand img { width: 32px; height: 32px; border-radius: 8px; }
  .brand span { font-size: 19px; font-weight: 800; letter-spacing: -0.2px; }
  .navLinks {
    position: absolute; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 2px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 2px 12px rgba(29, 28, 34, 0.06);
    border-radius: 999px; padding: 5px;
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  .navLinks a {
    text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 600;
    padding: 9px 16px; border-radius: 999px; white-space: nowrap;
    transition: background 0.18s ease;
  }
  .navLinks a:hover { background: rgba(255, 255, 255, 0.85); }
  nav.scrolled .navLinks { background: rgba(255, 255, 255, 0.75); border-color: var(--line); box-shadow: none; }
  nav .getapp { margin-left: 0; }
  .burger {
    display: none; margin-left: auto; cursor: pointer;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 12px rgba(29, 28, 34, 0.08);
  }
  .burger span {
    display: block; width: 18px; height: 2.5px; background: var(--ink);
    margin: 4px auto; border-radius: 2px;
    transition: transform 0.25s var(--ease-out), opacity 0.2s ease;
  }
  nav.menuOpen .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  nav.menuOpen .burger span:nth-child(2) { opacity: 0; }
  nav.menuOpen .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .mobileMenu {
    display: none; position: absolute; top: 76px; right: 22px; z-index: 200;
    width: min(330px, calc(100vw - 44px));
    flex-direction: column;
    background: #fff; border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: 0 22px 60px rgba(29, 28, 34, 0.2);
    padding: 14px 20px 20px;
  }
  nav.menuOpen .mobileMenu { display: flex; }
  .mobileMenu a {
    text-decoration: none; color: var(--ink); font-weight: 600; font-size: 17px;
    padding: 16px 4px;
  }
  .mobileMenu .getapp {
    margin-top: 12px; padding: 15px 22px;
    display: flex; align-items: center; justify-content: space-between;
    font-weight: 800; color: #fff;
  }
  @media (max-width: 1000px) {
    nav { position: relative; }
    .navLinks, nav .navRow .getapp { display: none; }
    .burger { display: block; }
  }

  /* ---------- Buttons ---------- */
  .getapp {
    display: inline-block; text-decoration: none; text-align: center;
    background: var(--accent);
    color: #fff; font-weight: 800; font-size: 16px; font-family: var(--font);
    padding: 14px 28px; border-radius: 14px; border: none; cursor: pointer;
    box-shadow: 0 3px 0 var(--accent-deep);
    transition: transform 0.15s var(--ease-out), box-shadow 0.15s ease, background 0.15s ease;
  }
  .getapp:hover { transform: translateY(-1px); box-shadow: 0 4px 0 var(--accent-deep); }
  .getapp:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--accent-deep); }
  .getapp.big { font-size: 17px; padding: 16px 34px; }
  .getapp .arrow { display: inline-block; margin-left: 4px; transition: transform 0.18s var(--ease-out); }
  .getapp:hover .arrow { transform: translateX(4px); }
  .getapp.alt {
    background: var(--card); color: var(--ink); box-shadow: 0 3px 0 var(--line);
    border: 1px solid var(--line);
  }
  .getapp.alt:hover { background: var(--card); box-shadow: 0 4px 0 var(--line); }
  .getapp.onDark { background: var(--accent); color: #fff; box-shadow: 0 3px 0 var(--accent-deep); }
  .ghostLink {
    display: inline-block; text-decoration: none; color: var(--ink);
    font-weight: 700; font-size: 16px; padding: 15px 26px; border-radius: 14px;
    background: var(--card); border: 1px solid var(--line);
    box-shadow: 0 3px 0 var(--line);
    transition: transform 0.15s var(--ease-out), box-shadow 0.15s ease;
  }
  .ghostLink:hover { transform: translateY(-1px); box-shadow: 0 4px 0 var(--line); }

  /* ---------- Hero ---------- */
  .hero {
    margin-top: -76px;
    padding: 142px 0 52px;
    background:
      radial-gradient(52% 60% at 12% 8%, rgba(109, 93, 240, 0.28), transparent 70%),
      radial-gradient(46% 55% at 88% 12%, rgba(155, 144, 247, 0.32), transparent 70%),
      radial-gradient(40% 48% at 68% 55%, rgba(240, 168, 130, 0.14), transparent 70%),
      radial-gradient(44% 52% at 28% 70%, rgba(109, 93, 240, 0.10), transparent 72%),
      linear-gradient(to bottom, #EFEDFB, var(--bg) 88%);
  }
  .heroGrid {
    display: grid; grid-template-columns: 1.08fr 0.92fr;
    align-items: center; gap: 44px; text-align: left;
  }
  .heroCopy { max-width: 620px; }
  .heroCopy .sub { margin: 20px 0 34px; }
  .heroCopy .heroBtns { justify-content: flex-start; }
  .mbr { display: none; }
  @media (max-width: 880px) {
    .hero { padding: 148px 0 50px; }
    .heroGrid { grid-template-columns: 1fr; text-align: center; gap: 46px; }
    .heroCopy { max-width: 760px; margin: 0 auto; }
    .heroCopy .kicker { display: none; }
    .heroCopy h1 { font-size: 31px; letter-spacing: -0.7px; }
    .mbr { display: inline; }
    .heroCopy .sub { margin: 20px auto 34px; color: var(--ink); }
    .heroCopy .heroBtns { justify-content: center; width: 100%; }
    .heroCopy .heroBtns .getapp { width: 100%; }
  }
  .phoneWrap { display: flex; flex-direction: column; align-items: center; gap: 0; }
  .phoneFrame {
    position: relative;
    width: min(280px, 72vw);
    padding: 12px;
    border-radius: 52px;
    background: #0E0D12;
    box-shadow:
      inset 0 0 0 3px #4A4953,
      inset 0 0 0 5px #17161C,
      0 16px 36px rgba(29, 28, 34, 0.18);
  }
  .heroPhone { width: min(300px, 76vw); }
  .phoneFrame .screen {
    display: block; width: 100%;
    border-radius: 40px;
  }
  .pbtn {
    position: absolute; width: 4px; left: -3.5px;
    background: linear-gradient(90deg, #55545F, #302F38);
    border-radius: 3px 0 0 3px;
  }
  .pbtn.action  { top: 17%; height: 22px; }
  .pbtn.volUp   { top: 24%; height: 40px; }
  .pbtn.volDown { top: 30.5%; height: 40px; }
  .pbtn.power   { left: auto; right: -3.5px; top: 25%; height: 62px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(90deg, #302F38, #55545F);
  }
  .kicker {
    font-size: 12.5px; font-weight: 800; letter-spacing: 2px; color: var(--accent);
    text-transform: uppercase; margin-bottom: 16px;
  }
  h1 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; line-height: 1.06; letter-spacing: -1px; }
  .sub {
    font-size: clamp(17px, 2.4vw, 19px); color: var(--ink2); max-width: 600px;
    margin: 18px auto 30px; line-height: 1.6;
  }
  .heroBtns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
  .storeNote { font-size: 13px; color: var(--ink3); margin-top: 16px; }
  @media (max-width: 880px) {
    .phoneFrame { width: min(250px, 68vw); }
    .heroPhone { width: min(265px, 72vw); }
  }

  /* ---------- Section frame ---------- */
  .sect { padding: 58px 0; }
  .sectHead { text-align: center; max-width: 680px; margin: 0 auto 38px; }
  .sectHead .kicker { margin-bottom: 12px; }
  .sectHead h2 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -0.6px; line-height: 1.1; }
  .sectHead p { color: var(--ink2); font-size: 17px; margin-top: 14px; line-height: 1.6; }

  /* ---------- Skills section ---------- */
  #skills { padding-top: 26px; }
  #skills .sectHead { margin-bottom: 0; }
  .branch { position: relative; height: 84px; }
  .branch span { position: absolute; background: #DDDAD2; }
  .branch .stem { left: 50%; top: 0; width: 1.5px; height: 42px; }
  .branch .rail { top: 42px; left: 16.66%; right: 16.66%; height: 1.5px; }
  .branch .drop { top: 42px; width: 1.5px; height: 42px; }
  .branch .d1 { left: 16.66%; }
  .branch .d2 { left: 50%; }
  .branch .d3 { right: 16.66%; }
  .skillsGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .skillCard {
    background: var(--card); border-radius: 24px; padding: 28px 26px 0;
    border: 1px solid var(--line);
    box-shadow: 0 2px 8px rgba(29, 28, 34, 0.04);
    display: flex; flex-direction: column; overflow: hidden;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  }
  .skillCard:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(29, 28, 34, 0.08); }
  .skillIcon { width: 30px; height: 30px; margin-bottom: 14px; }
  .skillCard h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
  .skillCard p { color: var(--ink2); font-size: 15px; line-height: 1.6; flex: 1; }
  .skillArt {
    width: calc(100% + 52px); max-width: none; margin: 22px -26px 0;
    aspect-ratio: 1 / 0.92; object-fit: cover; display: block;
  }
  @media (max-width: 820px) {
    .branch { display: none; }
    #skills .sectHead { margin-bottom: 40px; }
    .skillsGrid { grid-template-columns: 1fr; }
  }

  /* ---------- Pain section ---------- */
  #pain { padding-top: 26px; }
  .painCard { text-align: center; }
  .painCard h2 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -0.6px; margin-bottom: 30px; }
  .painPills { display: flex; flex-direction: column; gap: 12px; align-items: center; }
  .painPill {
    display: flex; align-items: center; gap: 12px;
    background: var(--card); border: 1px solid var(--line);
    color: var(--ink); font-weight: 700; font-size: clamp(16px, 2.4vw, 19px);
    padding: 13px 24px; border-radius: 999px;
    box-shadow: 0 2px 8px rgba(29, 28, 34, 0.04);
  }
  .painPill .x {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(225, 88, 75, 0.12); color: #D64B3F; font-size: 12px; font-weight: 800;
  }
  .painClose { color: var(--ink2); font-weight: 700; font-size: clamp(16px, 2.4vw, 19px); margin-top: 28px; }

  /* ---------- Statement ---------- */
  .statement {
    text-align: center; max-width: 900px; margin: 0 auto;
    font-size: clamp(28px, 4.6vw, 48px); font-weight: 800;
    line-height: 1.15; letter-spacing: -0.8px;
  }
  .statement .mute { color: var(--mute); }

  /* ---------- Topic generator (shared with topic-generator page) ---------- */
  .genPromo {
    max-width: 720px; margin: 0 auto; text-align: center;
    background: var(--card); border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: 0 2px 10px rgba(29, 28, 34, 0.04);
    padding: 46px 30px;
  }
  .genPromo h2 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 800; letter-spacing: -0.4px; margin-bottom: 12px; }
  .genPromo p { color: var(--ink2); font-size: 16.5px; line-height: 1.6; max-width: 540px; margin: 0 auto 26px; }
  .genCard {
    max-width: 640px; margin: 0 auto;
    background: var(--card); border-radius: 22px;
    border: 1px solid rgba(109, 93, 240, 0.25);
    box-shadow: 0 2px 10px rgba(29, 28, 34, 0.04);
    padding: 28px 26px 26px; text-align: center;
    transition: box-shadow 0.4s ease;
  }
  .genCard.glow { box-shadow: 0 0 0 2px rgba(109,93,240,0.5), 0 2px 10px rgba(29,28,34,0.06); }
  .chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 22px; }
  .chip {
    font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer;
    color: var(--ink2); background: var(--bg); border: 1px solid var(--line);
    padding: 8px 14px; border-radius: 999px; transition: all 0.15s ease;
  }
  .chip.on { color: #fff; background: var(--accent); border-color: var(--accent); }
  .chip:hover:not(.on) { border-color: var(--ink3); }
  .reel {
    min-height: 150px; display: flex; align-items: center; justify-content: center;
    padding: 10px 6px; overflow: hidden;
  }
  #topicWord {
    font-size: clamp(22px, 4.2vw, 32px); font-weight: 800; letter-spacing: -0.3px;
    line-height: 1.3; max-width: 520px;
  }
  #topicWord.slot { animation: slotIn 0.16s ease-out; }
  @keyframes slotIn {
    0% { opacity: 0.2; transform: translateY(16px); } 100% { opacity: 1; transform: none; }
  }
  #topicWord.pop { animation: pop 0.35s ease; }
  @keyframes pop {
    0% { transform: scale(1); } 40% { transform: scale(1.045); } 100% { transform: scale(1); }
  }
  .genBtns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
  .spinBtn {
    font-family: var(--font); font-size: 16px; font-weight: 800; cursor: pointer;
    color: var(--accent); background: var(--accent-ghost); border: none;
    padding: 13px 26px; border-radius: 14px; transition: background 0.15s ease;
  }
  .spinBtn:hover { background: rgba(109,93,240,0.14); }
  .spinBtn:disabled { opacity: 0.5; cursor: default; }
  .genHint { font-size: 14px; color: var(--ink3); margin-top: 18px; }

  /* ---------- How it works ---------- */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .step {
    background: var(--card); border-radius: var(--r-card); padding: 30px 26px;
    border: 1px solid var(--line);
    box-shadow: 0 2px 8px rgba(29, 28, 34, 0.04);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  }
  .step:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(29, 28, 34, 0.08); }
  .stepNum {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--accent-ghost); color: var(--accent); font-weight: 800; font-size: 17px;
    margin-bottom: 16px;
  }
  .step h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
  .step p { color: var(--ink2); font-size: 15px; line-height: 1.6; }
  @media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

  /* ---------- Feature rows ---------- */
  .featSect { padding-bottom: 20px; }
  .featRow {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
    align-items: center; margin: 64px 0;
  }
  .featRow.flip .featShot { order: 2; }
  .featRow.flip .featCopy { order: 1; }
  .featShot {
    display: flex; justify-content: center;
    background: var(--panel); border-radius: 28px;
    padding: 44px 24px;
  }
  .featShot .phoneFrame { width: min(260px, 62vw); }
  .featCopy .kicker { margin-bottom: 12px; }
  .featCopy h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; letter-spacing: -0.6px; line-height: 1.1; margin-bottom: 14px; }
  .featCopy p { color: var(--ink2); font-size: 16.5px; line-height: 1.65; max-width: 460px; }
  .checks { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
  .checks li {
    display: flex; align-items: center; gap: 12px;
    font-weight: 700; font-size: 15.5px; color: var(--ink);
  }
  .checks li::before {
    content: "\2713"; flex-shrink: 0;
    width: 25px; height: 25px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-ghost); color: var(--accent);
    font-size: 12px; font-weight: 800;
  }
  @media (max-width: 820px) {
    .featRow { grid-template-columns: 1fr; gap: 26px; margin: 46px 0; text-align: center; }
    .featRow.flip .featShot { order: 0; }
    .featRow.flip .featCopy { order: 1; }
    .featCopy p { margin: 0 auto; }
    .checks { align-items: center; }
    .featShot { padding: 34px 18px; }
  }

  /* ---------- Who it's for ---------- */
  .whoGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .whoCard {
    background: var(--card); border-radius: var(--r-card); padding: 26px 24px;
    border: 1px solid var(--line);
    box-shadow: 0 2px 8px rgba(29, 28, 34, 0.04);
    display: flex; flex-direction: column;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  }
  .whoCard:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(29, 28, 34, 0.08); }
  .whoCard h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
  .whoCard p { color: var(--ink2); font-size: 15px; line-height: 1.6; flex: 1; }
  .whoArt {
    width: 100%; margin-top: 18px; border-radius: 14px;
    aspect-ratio: 4 / 3; object-fit: cover; display: block;
  }
  @media (max-width: 760px) { .whoGrid { grid-template-columns: 1fr; } }

  /* ---------- In-app browser notice ---------- */
  .iabNotice {
    position: relative; z-index: 500;
    margin: 14px 16px 4px;
    background: #fff; border-radius: 22px;
    box-shadow: 0 18px 50px rgba(29, 28, 34, 0.25);
    padding: 20px 20px 18px;
    display: flex; flex-direction: column; gap: 6px;
    text-align: left;
  }
  .iabNotice strong { font-size: 18px; font-weight: 800; }
  .iabNotice span { font-size: 15px; color: var(--ink2); line-height: 1.45; }
  .iabNotice button {
    margin-top: 10px; width: 100%;
    background: var(--ink); color: #fff;
    font-family: var(--font); font-size: 16px; font-weight: 800;
    padding: 15px 20px; border: none; border-radius: 999px; cursor: pointer;
  }
  .iabNotice button:active { opacity: 0.85; }

  /* ---------- Reviews ---------- */
  .marquee { overflow: hidden; }
  .marquee + .marquee { margin-top: 18px; }
  .marqueeRow {
    display: flex; flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    will-change: transform;
    animation: marqueeSlide 60s linear infinite;
  }
  .marqueeGroup {
    display: flex; flex-wrap: nowrap; gap: 18px; padding-right: 18px;
    align-items: flex-start;
  }
  @keyframes marqueeSlide { to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .marqueeRow { animation: none; } }
  .reviewCard {
    width: min(360px, 82vw); flex: 0 0 auto;
    background: var(--card); border: 1px solid var(--line);
    border-radius: 22px; padding: 26px 24px;
    box-shadow: 0 2px 8px rgba(29, 28, 34, 0.04);
  }
  .reviewCard h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
  .stars { color: #F0B84E; font-size: 15px; letter-spacing: 3px; margin-bottom: 6px; }
  .reviewer { color: var(--ink3); font-size: 13.5px; font-weight: 600; margin-bottom: 12px; }
  .reviewCard p { color: var(--ink2); font-size: 15px; line-height: 1.6; }

  /* ---------- Hero rating badge ---------- */
  .ratingBadge {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-top: 28px; color: var(--ink);
  }
  .laurel { width: 32px; height: 74px; }
  .laurel.flip { transform: scaleX(-1); }
  .ratingText { text-align: center; }
  .ratingText span { display: block; font-size: 15px; font-weight: 600; color: var(--ink2); }
  .ratingText strong { display: block; font-size: 34px; font-weight: 800; line-height: 1.15; }
  .ratingText .stars { margin-bottom: 0; font-size: 16px; }

  /* ---------- Mid CTA band ---------- */
  .band { text-align: center; padding: 14px 0 0; }
  .band h2 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; letter-spacing: -0.8px; line-height: 1.08; }
  .band p { color: var(--ink2); margin: 16px auto 30px; max-width: 480px; font-size: 17px; line-height: 1.6; }
  .band .getapp { background: var(--accent); color: #fff; box-shadow: 0 3px 0 var(--accent-deep); }

  /* ---------- FAQ ---------- */
  .faqList { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
  details {
    background: var(--card); border-radius: 16px; padding: 0 22px;
    border: 1px solid var(--line);
    transition: box-shadow 0.25s ease;
  }
  details:hover, details[open] { box-shadow: 0 6px 18px rgba(29, 28, 34, 0.06); }
  summary {
    cursor: pointer; list-style: none; font-weight: 700; font-size: 16.5px;
    padding: 19px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: "+"; font-size: 22px; color: var(--ink3); font-weight: 600; flex-shrink: 0;
    transition: transform 0.25s var(--ease-out), color 0.2s ease;
  }
  details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
  details p { color: var(--ink2); font-size: 15.5px; line-height: 1.65; padding: 0 0 20px; }

  /* ---------- Contact ---------- */
  .contactCard {
    max-width: 560px; margin: 0 auto; text-align: center;
    background: var(--card); border-radius: 24px; padding: 40px 30px;
    border: 1px solid var(--line);
    box-shadow: 0 2px 10px rgba(29, 28, 34, 0.04);
  }
  .contactCard p { color: var(--ink2); font-size: 16px; margin: 10px 0 22px; line-height: 1.6; }
  .mailBtn {
    display: inline-block; text-decoration: none; font-weight: 800; font-size: 16px;
    color: var(--accent); background: var(--accent-ghost);
    padding: 13px 26px; border-radius: 14px;
    transition: background 0.18s ease;
  }
  .mailBtn:hover { background: rgba(109,93,240,0.14); }

  /* ---------- Footer ---------- */
  footer {
    margin-top: 28px; padding: 36px 0 32px;
    border-top: 1px solid var(--line);
    background: var(--bg);
  }
  .footRow { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .footRow .brand img { width: 28px; height: 28px; }
  .footRow .brand span { font-size: 16px; }
  .footLinks { display: flex; gap: 20px; margin-left: auto; flex-wrap: wrap; }
  .footLinks a { color: var(--ink3); text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.18s ease; }
  .footLinks a:hover { color: var(--ink); }
  .copy { width: 100%; color: var(--ink3); font-size: 13px; margin-top: 14px; }
