/* ==========================================================================
   Suzzio Email — landing page styles
   Rebuilt directly against a captured DOM/CSS dump of the Zova Framer
   business template (zova-saas.framer.ai), not just its marketing copy —
   font pairing (Manrope for headings, Geist for everything else), the
   floating rounded-capsule nav, the 8/12/16/20/28/32/40px radius scale
   (rounded rectangles, NOT pill buttons), the hand-drawn squiggle
   underline highlight, the dot-grid texture behind panels, black circular
   icon badges, and filled (not outlined) form inputs are all pulled from
   that dump and reimplemented as plain CSS - the same "move a design
   handoff into a real stylesheet" approach services/website-service's
   styles.css used for its own source design.

   Deliberately NOT carried over: Zova's stock dashboard screenshots,
   fake-brand logo marquee, invented testimonial/rating, newsletter
   signup and decorative product-demo videos - none of that transfers to
   a real service with no software product to screenshot, and the
   client brief (PAGE 2: EMAIL MARKETING) explicitly rules out stock
   photography/video, invented testimonials and a second on-page action.
   ========================================================================== */

:root {
  --purple: #6c3fe4;
  --purple-deep: #3a2585;
  --purple-soft: #a98bff;
  --lilac: #efeaff;
  --lilac-2: #f7f5ff;
  --purple-line: #c9b3ff;
  --ink: #000;
  --ink-soft: #1a1a1a;
  --body-c: #605f5f;
  --muted: #999;
  --line: #e6e6e6;
  --line-soft: #eee;
  --panel: #f4f4f4;
  --panel-soft: #f3f1f8;
  --white: #fff;
  --pad-x: 1.5rem;

  --font-from: 16; --font-to: 16; --vw-from: calc(1180 / 100); --vw-to: calc(1593 / 100);
  --coefficient: calc((var(--font-to) - var(--font-from)) / (var(--vw-to) - var(--vw-from)));
  --base: calc((var(--font-from) - var(--vw-from) * var(--coefficient)) / 16);
}
@media screen and (max-width: 1180px) {
  :root { --font-from: 13; --font-to: 16; --vw-from: calc(767 / 100); --vw-to: calc(1180 / 100); }
}
@media screen and (max-width: 767px) {
  :root { --font-from: 15; --font-to: 15; --vw-from: calc(390 / 100); --vw-to: calc(767 / 100); }
}
@media (min-width: 900px) { :root { --pad-x: 5rem; } }

html { font-size: calc(var(--base) * 1rem + var(--coefficient) * 1vw); scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: 'Geist', system-ui, sans-serif; letter-spacing: -.02em; overflow-x: hidden; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--purple); }
img, svg, video { display: block; max-width: 100%; }
::selection { background: var(--purple); color: #fff; }
h1, h2, h3, h4, h5, h6 { font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.045em; margin: 0; }

@keyframes drift { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(1.5%, -2%, 0); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-.4rem); } }
@keyframes blink { 50% { border-color: transparent; } }
@keyframes blink-soft { 0%, 100% { opacity: .15; } 50% { opacity: .55; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .squiggle { transition: none !important; background-size: 100% 60% !important; }
}

.container { max-width: 81.25rem; margin: 0 auto; padding: 0 var(--pad-x); }

/* -------------------------------------------------------------------- */
/* Squiggle underline + dot pattern — Zova's two signature textures     */
/* -------------------------------------------------------------------- */

.squiggle {
  position: relative; z-index: 1; border-radius: 3px; padding: 0 .1em 8px;
  background-repeat: no-repeat; background-size: 0% 60%; background-position: 0 82%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='30' preserveAspectRatio='none'%3E%3Cpath d='M2 20 Q25 11 50 15 T98 22' fill='none' stroke='%23c9b3ff' stroke-width='11' stroke-linecap='round' stroke-opacity='0.75'/%3E%3C/svg%3E");
  transition: background-size .9s cubic-bezier(.16,.8,.24,1) .15s;
}
.squiggle.is-drawn { background-size: 100% 60%; }

.dot-field { position: absolute; inset: 0; pointer-events: none; opacity: .5; -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%); mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%); background-image: radial-gradient(rgba(0,0,0,.14) 1px, transparent 1.4px); background-size: 16px 16px; }
.dot-field.is-purple { background-image: radial-gradient(rgba(108,63,228,.28) 1px, transparent 1.4px); }

[data-reveal] { opacity: 0; transform: translateY(1.8rem) scale(.985); }
[data-highlight] [data-word] { display: inline-block; opacity: 0; filter: blur(4px); transition: opacity .5s ease, filter .5s ease; }

/* ---- icon hover: a smooth full-turn spin, echoing the sample's icon
   micro-interactions without needing duplicated icon markup ---- */
.ico { transition: transform .7s cubic-bezier(.4, 0, .2, 1); }
.hero-feature:hover .ico,
.what-tab:hover .ico,
.info-card:hover .ico { transform: rotateY(360deg); }

/* -------------------------------------------------------------------- */
/* Buttons — rounded rectangles (12px), not pills                       */
/* -------------------------------------------------------------------- */

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.3rem; border-radius: 12px; background: var(--ink); color: #fff;
  border: 1px solid var(--ink); font-family: 'Geist', sans-serif; font-size: 1rem; font-weight: 500; letter-spacing: -.04em;
  white-space: nowrap; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.25); transition: transform .2s ease, box-shadow .2s ease;
}
.btn-dark:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.32); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.3rem; border-radius: 12px; background: #fff; color: var(--ink);
  border: 1px solid var(--line); font-family: 'Geist', sans-serif; font-size: 1rem; font-weight: 500; letter-spacing: -.04em;
  white-space: nowrap; cursor: pointer; box-shadow: 0 6px 10px rgba(0,0,0,.05); transition: border-color .2s ease, background .2s ease;
}
.btn-ghost:hover { border-color: var(--purple-line); background: var(--lilac-2); color: var(--ink); }
.cta-row { display: flex; justify-content: center; gap: .8rem; flex-wrap: wrap; }

.pill-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem .5rem .55rem; border-radius: 8px; border: 1px solid var(--line-soft); font-family: 'Geist', sans-serif; font-size: .84rem; font-weight: 400; letter-spacing: -.03em; }
.pill-badge .dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--purple); flex: none; }

/* ---- section eyebrows: plain dot + text, no pill box (the sample only
   boxes its hero badge - section headings above just get a small dot) ---- */
.eyebrow-plain { display: inline-flex; align-items: center; gap: .6rem; font-family: 'Geist', sans-serif; font-size: .96rem; font-weight: 500; letter-spacing: -.03em; color: var(--ink); }
.eyebrow-plain .dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--purple); flex: none; }

.icon-badge { display: flex; align-items: center; justify-content: center; flex: none; border-radius: 50%; background: var(--ink); color: #fff; }

/* -------------------------------------------------------------------- */
/* Header / nav — floating capsule, not a full-width bar                 */
/* -------------------------------------------------------------------- */

.nav-wrap { position: fixed; top: 1.1rem; left: 0; right: 0; z-index: 80; display: flex; justify-content: center; padding: 0 1.2rem; }
.site-nav { display: flex; align-items: center; gap: 1.8rem; background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; box-shadow: 0 5px 10px rgba(0,0,0,.08); padding: .55rem .6rem .55rem 1.1rem; }
.nav-logo { display: flex; align-items: center; gap: .5rem; }
.nav-wordmark { font-family: 'Manrope', sans-serif; font-size: 1.18rem; font-weight: 700; letter-spacing: -.05em; color: var(--ink); }
.nav-wordmark-sub { font-weight: 500; letter-spacing: -.02em; opacity: .55; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { font-size: .95rem; font-weight: 400; letter-spacing: -.03em; color: var(--ink); padding: .4rem 0; }
.nav-link:hover { color: var(--purple); }
.nav-cta { padding: .65rem 1.1rem; font-size: .92rem; }

.brand-mark { flex: none; display: flex; align-items: center; justify-content: center; width: 2.15rem; height: 2.15rem; border-radius: .58rem .88rem .58rem .88rem; background: linear-gradient(140deg, #3a2585, var(--purple) 45%, #a98bff); padding: .13rem; box-sizing: border-box; }
.brand-mark-inner { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; border-radius: .5rem .8rem .5rem .8rem; background: #fff; }
.brand-mono { position: relative; display: inline-flex; align-items: center; font-family: 'Manrope', sans-serif; font-weight: 800; line-height: 1; transform: translateY(.06em); }
.brand-letter { font-size: .92rem; background-image: linear-gradient(100deg, #3a2585 0%, var(--purple) 28%, #efeaff 46%, var(--purple) 64%, #3a2585 100%); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 4.5s linear infinite; }
.brand-letter-2 { margin-left: -.28em; transform: translateY(-.18em); filter: drop-shadow(.04em 0 0 #fff) drop-shadow(-.04em 0 0 #fff) drop-shadow(0 .04em 0 #fff) drop-shadow(0 -.04em 0 #fff); }
@keyframes shimmer { 0% { background-position: 200% 50%; } 100% { background-position: -200% 50%; } }

.nav-burger { display: none; flex: none; align-items: center; justify-content: center; width: 2.3rem; height: 2.3rem; padding: 0; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); cursor: pointer; }
.nav-burger-bars { display: flex; flex-direction: column; gap: .26rem; width: 1rem; }
.nav-burger-bar { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .25s ease; }
.nav-burger.is-open .nav-burger-bar:nth-child(1) { transform: translateY(.28rem) rotate(45deg); }
.nav-burger.is-open .nav-burger-bar:nth-child(2) { opacity: 0; }
.nav-burger.is-open .nav-burger-bar:nth-child(3) { transform: translateY(-.28rem) rotate(-45deg); }

.mobile-nav-panel { display: none; position: fixed; top: 4.4rem; left: 1.2rem; right: 1.2rem; z-index: 79; background: #fff; border: 1px solid var(--line-soft); border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.14); padding: .6rem; flex-direction: column; gap: .2rem; }
.mobile-nav-panel.is-open { display: flex; }
.mobile-nav-panel a { display: block; padding: .85rem .8rem; border-radius: 10px; font-size: 1rem; }
.mobile-nav-panel a:hover { background: var(--panel); }
.mobile-nav-panel .btn-dark { margin-top: .3rem; text-align: center; }

@media (min-width: 900px) { .nav-burger, .mobile-nav-panel { display: none !important; } }
@media (max-width: 899px) { .nav-links, .nav-cta { display: none !important; } .nav-burger { display: flex; } }

/* -------------------------------------------------------------------- */
/* Hero                                                                  */
/* -------------------------------------------------------------------- */

.hero { position: relative; padding: 10.5rem var(--pad-x) 0; max-width: 81.25rem; margin: 0 auto; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -8rem; right: -12rem; width: 56rem; height: 56rem; background: radial-gradient(closest-side, var(--lilac) 0%, var(--lilac) 45%, transparent 100%); opacity: .8; z-index: 0; pointer-events: none; }
.hero-row { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 22rem); gap: 2.5rem; align-items: center; }
.hero-inner { position: relative; max-width: 38rem; text-align: left; }
.hero-title { font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.5rem); line-height: 1.14; }
.hero-sub { margin: 1.3rem 0 0; max-width: 30rem; font-size: 1.08rem; line-height: 1.55; letter-spacing: -.02em; color: var(--body-c); }
.hero-points { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .55rem; }
.hero-points li { display: flex; align-items: flex-start; gap: .6rem; font-family: 'Geist', sans-serif; font-size: .98rem; letter-spacing: -.02em; color: var(--ink); }
.hero-points svg { flex: none; width: 1.1rem; height: 1.1rem; margin-top: .15rem; color: var(--purple); }
.hero-ctas { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-price-note { font-family: 'Geist', sans-serif; font-size: .92rem; letter-spacing: -.02em; color: var(--body-c); }

.hero-side { display: flex; justify-content: center; }
.hero-side .phone-mock { width: 100%; max-width: 15rem; }
.hero-side .hero-float-card { width: 9.5rem; left: -1rem; bottom: 2.2rem; }

.hero-marquee { position: relative; z-index: 1; margin-top: 3.5rem; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.hero-marquee-track { display: flex; align-items: center; gap: .7rem; width: max-content; animation: marquee 24s linear infinite; }
.hero-marquee-pill { display: inline-flex; align-items: center; padding: .55rem 1.1rem; border-radius: 999px; background: var(--lilac-2); border: 1px solid var(--purple-line); font-family: 'Geist', sans-serif; font-size: .88rem; letter-spacing: -.01em; color: var(--purple-deep); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero-marquee-track { animation: none; } }

/* ---- showcase: the big tilted panel + feature row, its own section
   right after the hero, echoing Zova's separate Hero/Features split ---- */
.showcase-section { margin-top: -1.5rem; }
.showcase-section .hero-visual-panel[data-reveal] { transform: perspective(1400px) rotateX(10deg) translateY(3rem) scale(.96); }
.hero-visual { position: relative; max-width: 78rem; margin: 0 auto; }
.hero-visual-panel { position: relative; overflow: hidden; border-radius: 32px; background: linear-gradient(180deg, #fff 45%, var(--purple-soft) 100%); padding: 3rem 2rem 0; }
.hero-visual-panel .dot-field { top: 0; bottom: 40%; }
.phone-mock { position: relative; width: 15.5rem; border-radius: 24px; background: var(--ink-soft); padding: .5rem; box-shadow: 0 2px 20px rgba(0,0,0,.4); transform: perspective(1400px) rotateX(6deg); }
.phone-mock-screen { aspect-ratio: 9/17.5; border-radius: 19px; overflow: hidden; background: var(--panel); }
.phone-mock-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: opacity 1.1s ease; }
.phone-mock-screen img.is-out { opacity: 0; }

.hero-showcase-row { position: relative; max-width: 56rem; margin: 0 auto; }
.hero-showcase-frame { position: relative; overflow: hidden; border-radius: 20px; background: var(--ink-soft); box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.hero-showcase-bar { display: flex; align-items: center; gap: .4rem; padding: .8rem .95rem; background: rgba(255,255,255,.05); }
.hero-showcase-dot { width: .5rem; height: .5rem; border-radius: 50%; background: rgba(255,255,255,.25); }
.hero-showcase-client { display: flex; aspect-ratio: 16/9; background: #fff; }
.hero-showcase-sidebar { flex: none; width: 9.5rem; padding: 1.1rem .9rem; background: #f7f7f9; border-right: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: .2rem; }
.hero-showcase-compose { display: flex; align-items: center; justify-content: center; margin-bottom: .8rem; padding: .55rem; border-radius: 8px; background: var(--purple); color: #fff; font-family: 'Geist', sans-serif; font-size: .72rem; font-weight: 600; }
.hero-showcase-sidebar-item { display: flex; align-items: center; gap: .55rem; padding: .5rem .6rem; border-radius: 8px; font-family: 'Geist', sans-serif; font-size: .74rem; color: var(--body-c); }
.hero-showcase-sidebar-item svg { width: .95rem; height: .95rem; flex: none; }
.hero-showcase-sidebar-item.is-active { background: var(--lilac-2); color: var(--purple-deep); font-weight: 500; }

.hero-showcase-reading-pane { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.hero-showcase-email-meta { flex: none; padding: 1rem 1.3rem .9rem; border-bottom: 1px solid var(--line-soft); }
.hero-showcase-email-subject { font-family: 'Manrope', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); transition: opacity .8s ease; }
.hero-showcase-email-from { margin-top: .3rem; font-family: 'Geist', sans-serif; font-size: .8rem; color: var(--muted); transition: opacity .8s ease; }
.hero-showcase-email-from b { color: var(--body-c); font-weight: 600; }
.hero-showcase-screen { position: relative; flex: 1; min-height: 0; overflow: hidden; background: var(--panel); }
.hero-showcase-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 1; transition: opacity 1.1s ease; }
.hero-showcase-screen img.is-out { opacity: 0; }
.hero-showcase-row .hero-float-card { left: auto; right: 1.8rem; bottom: -1.7rem; }

.hero-float-card { position: absolute; left: 1rem; bottom: 3.5rem; width: 11.5rem; padding: .9rem 1rem; border-radius: 12px; background: #fff; border: 2px solid #fff; box-shadow: 0 8px 30px rgba(0,0,0,.1); animation: floaty 6s ease-in-out infinite; }
.hero-float-card .k { font-size: .74rem; color: var(--muted); }
.hero-float-card .v { margin-top: .25rem; font-family: 'Manrope', sans-serif; font-size: 1.02rem; font-weight: 700; letter-spacing: -.03em; color: var(--ink); }
.hero-feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 2.5rem; }
.hero-feature { display: flex; flex-direction: column; gap: .7rem; text-align: left; padding: 1.6rem 1.4rem; border-top: 1px solid rgba(255,255,255,.85); }
.hero-feature:not(:last-child) { border-right: 1px solid rgba(255,255,255,.85); }
.hero-feature .ico { width: 1.4rem; height: 1.4rem; color: var(--ink); }
.hero-feature h4 { font-size: .98rem; }
.hero-feature p { margin: 0; font-size: .88rem; letter-spacing: -.02em; line-height: 1.5; color: var(--body-c); }

.ico { flex: none; }

/* -------------------------------------------------------------------- */
/* Shared section rhythm                                                 */
/* -------------------------------------------------------------------- */

.section { padding: 6.5rem var(--pad-x) 0; max-width: 81.25rem; margin: 0 auto; }
.section-head { max-width: 40rem; margin: 0 auto; text-align: center; }
.section-head.is-left { margin: 0; text-align: left; }
.section-eyebrow { margin: 0 0 1rem; }
.section-eyebrow.is-center { display: flex; justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 1.4rem + 2.4vw, 2.9rem); line-height: 1.16; }
.section-sub { margin: 1rem 0 0; font-size: 1.02rem; letter-spacing: -.02em; color: var(--body-c); line-height: 1.55; }

/* -------------------------------------------------------------------- */
/* Inbox (what your customers see)                                       */
/* -------------------------------------------------------------------- */

.inbox-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; margin: 3rem auto 0; max-width: 78rem; }
.mail-list { background: #fff; border-radius: 20px; border: 1px solid #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 12px 28px rgba(0,0,0,.1); overflow: hidden; }
.mail-list-head { padding: .9rem 1.3rem; border-bottom: 1px solid var(--line-soft); font-family: 'Geist', sans-serif; font-size: .85rem; font-weight: 500; letter-spacing: -.02em; color: var(--muted); }
.mail-row { padding: 1rem 1.3rem; border-bottom: 1px solid var(--line-soft); cursor: pointer; transition: background .18s ease; }
.mail-row:last-child { border-bottom: none; }
.mail-row:hover { background: var(--panel); }
.mail-row.is-active { background: var(--lilac-2); }
.mail-row .from { font-family: 'Manrope', sans-serif; font-size: .96rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: .2rem; }
.mail-row .sub { font-family: 'Geist', sans-serif; font-size: .88rem; letter-spacing: -.02em; color: var(--body-c); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mail-preview { border-radius: 20px; overflow: hidden; background: var(--panel); box-shadow: 0 20px 45px rgba(0,0,0,.12); aspect-ratio: 4/3; }
.mail-preview img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s ease; }

.inbox-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 1.4rem; margin: 3rem auto 0; max-width: 78rem; }
.inbox-point { padding: 1.6rem 1.4rem; border-radius: 16px; background: linear-gradient(160deg, var(--lilac-2) 0%, var(--panel-soft) 100%); border: 1px solid #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 10px 24px rgba(0,0,0,.07); transition: box-shadow .3s ease, transform .3s ease; }
.inbox-point:hover { box-shadow: 0 16px 30px rgba(0,0,0,.1); transform: translateY(-.25rem); }
.inbox-point h3 { font-size: 1.02rem; letter-spacing: -.03em; }
.inbox-point p { margin: .5rem 0 0; font-size: .92rem; letter-spacing: -.02em; line-height: 1.55; color: var(--body-c); }

/* -------------------------------------------------------------------- */
/* Our work                                                              */
/* -------------------------------------------------------------------- */

.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(14.5rem, 1fr)); gap: 1.2rem; margin: 3rem auto 0; max-width: 78rem; }
.work-card { position: relative; overflow: hidden; border-radius: 16px; border: 2px solid #fff; background: var(--panel-soft); box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 10px 26px rgba(0,0,0,.1); transition: box-shadow .3s ease, transform .3s ease; }
.work-card:hover { box-shadow: 0 16px 30px rgba(0,0,0,.1); transform: translateY(-.25rem); }
.work-shot { position: relative; height: 11rem; background: var(--panel); overflow: hidden; }
.work-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.work-body { position: relative; padding: 1.1rem 1.2rem 1.3rem; background: var(--panel-soft); }
.work-body .name { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: -.03em; }
.work-body p { margin: .4rem 0 0; font-size: .92rem; letter-spacing: -.02em; line-height: 1.5; color: var(--body-c); }

/* -------------------------------------------------------------------- */
/* What we do — sticky side nav + content blocks                        */
/* -------------------------------------------------------------------- */

.what-layout { display: grid; grid-template-columns: 1fr 1.75fr; gap: 3rem; margin: 3.5rem 0 0; align-items: start; }
.what-nav { position: sticky; top: 6.5rem; display: flex; flex-direction: column; gap: .3rem; }
.what-tab { position: relative; display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.3rem; border-radius: 14px; font-size: 1.05rem; letter-spacing: -.03em; color: var(--body-c); transition: background .2s ease, color .2s ease; }
.what-tab .ico { width: 1.4rem; height: 1.4rem; color: var(--body-c); transition: color .2s ease, transform .7s cubic-bezier(.4, 0, .2, 1); }
.what-tab:hover { background: var(--panel); color: var(--ink); }
.what-tab.is-active { background: var(--lilac-2); color: var(--ink); }
.what-tab.is-active .ico { color: var(--ink); }
.what-tab.is-active::after { content: ""; position: absolute; right: -.9rem; top: 50%; transform: translateY(-50%); width: 2px; height: 60%; background: var(--ink); border-radius: 2px; }
.what-card-wrap { position: relative; background: var(--panel-soft); border: 1px solid #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 20px 45px rgba(0,0,0,.1); border-radius: 20px; padding: 2.5rem; min-width: 0; }
.what-content { display: flex; flex-direction: column; gap: 3rem; }

.what-block { scroll-margin-top: 8rem; display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.6rem; align-items: start; }
.what-block:not(:last-child) { padding-bottom: 3rem; border-bottom: 1px solid var(--line-soft); }
.what-block-body { min-width: 0; max-width: 34rem; }
.what-block h3 { font-size: 1.5rem; line-height: 1.25; }
.what-block p { margin: .9rem 0 0; font-size: 1rem; letter-spacing: -.02em; line-height: 1.6; color: var(--body-c); }

.what-block-shot { display: none; width: 10.5rem; aspect-ratio: 3/4; border-radius: 14px; overflow: hidden; background: var(--panel); box-shadow: 0 16px 34px rgba(0,0,0,.14); transition: box-shadow .3s ease, transform .3s ease; }
.what-block-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.what-block-shot:hover { transform: translateY(-.25rem); box-shadow: 0 22px 40px rgba(0,0,0,.18); }
@media (min-width: 1150px) { .what-block { grid-template-columns: minmax(0, 1fr) 10.5rem; } .what-block-shot { display: block; } }

.what-typewriter { margin-top: 1.4rem; padding: 1rem 1.2rem; border-radius: 12px; background: var(--ink); color: #fff; font-family: 'Geist', sans-serif; font-size: .96rem; letter-spacing: -.03em; box-shadow: 0 10px 24px rgba(0,0,0,.18); transition: transform .3s ease, box-shadow .3s ease; }
.what-typewriter:hover { transform: translateY(-.2rem); box-shadow: 0 14px 30px rgba(0,0,0,.24); }
.what-typewriter .type-cursor { display: inline-block; width: 2px; height: 1em; background: var(--purple); margin-left: 2px; animation: blink .7s steps(1) infinite; vertical-align: -.15em; }

.what-reminder { display: flex; align-items: center; gap: .9rem; margin-top: 1.4rem; padding: .9rem 1.1rem; border-radius: 12px; background: #fff; border: 1px solid #fff; box-shadow: 0 10px 24px rgba(0,0,0,.08); max-width: 20rem; transition: transform .3s ease, box-shadow .3s ease; }
.what-reminder:hover { transform: translateY(-.2rem); box-shadow: 0 16px 30px rgba(0,0,0,.12); }
.what-reminder .avatar { flex: none; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--lilac-2); display: flex; align-items: center; justify-content: center; color: var(--purple); }
.what-reminder .avatar svg { width: 1.2rem; height: 1.2rem; }
.what-reminder .k { font-size: .78rem; color: var(--muted); }
.what-reminder .v { margin-top: .15rem; font-family: 'Manrope', sans-serif; font-size: .95rem; font-weight: 700; letter-spacing: -.03em; }

.what-segment-list { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.4rem; }
.what-segment-list .what-reminder { margin-top: 0; }

.what-signup { display: flex; gap: .5rem; margin-top: 1.4rem; max-width: 20rem; }
.what-signup-field { flex: 1; padding: .7rem 1rem; border-radius: 10px; background: var(--panel); color: var(--muted); font-family: 'Geist', sans-serif; font-size: .85rem; }
.what-signup-btn { flex: none; padding: .7rem 1.1rem; border-radius: 10px; background: var(--ink); color: #fff; font-family: 'Geist', sans-serif; font-size: .85rem; font-weight: 500; }

.what-stats-card { margin-top: 1.4rem; padding: 1.2rem 1.4rem 1rem; border-radius: 12px; background: #fff; border: 1px solid #fff; box-shadow: 0 10px 24px rgba(0,0,0,.08); max-width: 20rem; transition: transform .3s ease, box-shadow .3s ease; }
.what-stats-card:hover { transform: translateY(-.2rem); box-shadow: 0 16px 30px rgba(0,0,0,.12); }

@media (max-width: 900px) { .what-layout { grid-template-columns: 1fr; } .what-nav { display: none; } }

/* -------------------------------------------------------------------- */
/* How it works                                                          */
/* -------------------------------------------------------------------- */

.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.2rem; margin: 3rem auto 0; max-width: 78rem; }
.step-card { border-radius: 20px; background: var(--panel-soft); border: 1px solid #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 12px 28px rgba(0,0,0,.1); overflow: hidden; transition: box-shadow .3s ease, transform .3s ease; }
.step-card:hover { box-shadow: 0 18px 34px rgba(0,0,0,.1); transform: translateY(-.3rem); }
.step-mockup-wrap { position: relative; padding: 1rem 1rem .5rem; }
.step-mockup { position: relative; min-height: 8.5rem; border-radius: 14px; background: #fff; border: 1px solid #fff; box-shadow: 0 10px 24px rgba(0,0,0,.06); padding: 1.1rem; display: flex; flex-direction: column; justify-content: center; gap: .55rem; }
.step-number { position: absolute; right: 1.5rem; bottom: -1.05rem; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 700; box-shadow: 0 4px 12px rgba(0,0,0,.25); border: 3px solid var(--panel-soft); }
.step-card-body { padding: 1.9rem 1.4rem 1.7rem; }
.step-card-body h3 { font-size: 1.12rem; }
.step-card-body p { margin: .6rem 0 0; font-size: .94rem; letter-spacing: -.02em; line-height: 1.55; color: var(--body-c); }

.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.2rem; margin: 3rem auto 0; max-width: 78rem; }
.trust-card { padding: 1.8rem 1.5rem; border-radius: 20px; background: var(--panel-soft); border: 1px solid #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 12px 28px rgba(0,0,0,.1); transition: box-shadow .3s ease, transform .3s ease; }
.trust-card:hover { box-shadow: 0 18px 34px rgba(0,0,0,.1); transform: translateY(-.3rem); }
.trust-card .icon-badge { width: 2.6rem; height: 2.6rem; margin-bottom: 1rem; }
.trust-card .icon-badge svg { width: 1.15rem; height: 1.15rem; }
.trust-card h3 { font-size: 1.05rem; }
.trust-card p { margin: .6rem 0 0; font-size: .92rem; letter-spacing: -.02em; line-height: 1.55; color: var(--body-c); }

.mockup-row { display: flex; align-items: center; gap: .6rem; }
.mockup-dot { flex: none; width: .6rem; height: .6rem; border-radius: 50%; background: var(--purple-soft); animation: dot-pulse 1.8s ease-in-out infinite; }
.mockup-row:nth-child(2) .mockup-dot { animation-delay: .3s; }
.mockup-row:nth-child(3) .mockup-dot { animation-delay: .6s; }
.mockup-line { display: block; height: .5rem; border-radius: 4px; background: linear-gradient(90deg, var(--panel) 25%, #fff 50%, var(--panel) 75%); background-size: 200% 100%; animation: line-shimmer 2.4s ease-in-out infinite; }
.mockup-avatar { flex: none; width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--lilac-2); animation: dot-pulse 1.8s ease-in-out infinite; }
.mockup-row:nth-child(2) .mockup-avatar { animation-delay: .3s; }
.mockup-row:nth-child(3) .mockup-avatar { animation-delay: .6s; }
.mockup-progress { margin-top: .3rem; height: .45rem; border-radius: 4px; background: var(--panel); overflow: hidden; }
.mockup-progress-bar { width: 65%; height: 100%; background: var(--purple); border-radius: 4px; animation: progress-loop 3.2s ease-in-out infinite; }
.mockup-email-bar { height: .7rem; width: 45%; border-radius: 4px; background: var(--purple-soft); margin-bottom: .1rem; }
.mockup-actions { display: flex; gap: .5rem; margin-top: .2rem; }
.mockup-btn { font-family: 'Geist', sans-serif; font-size: .72rem; font-weight: 500; padding: .3rem .6rem; border-radius: 999px; background: var(--panel); color: var(--body-c); }
.mockup-btn.is-yes { background: var(--ink); color: #fff; animation: btn-glow 2.4s ease-in-out infinite; }
.mockup-stats { display: flex; align-items: flex-end; gap: 1.1rem; height: 4.5rem; }
.mockup-stat { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.mockup-stat-bar { display: block; width: 1.6rem; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--purple), var(--purple-soft)); transform-origin: bottom; animation: bar-grow 2.6s ease-in-out infinite; }
.mockup-stat:nth-child(2) .mockup-stat-bar { animation-delay: .25s; }
.mockup-stat:nth-child(3) .mockup-stat-bar { animation-delay: .5s; }
.mockup-stat-label { font-size: .68rem; color: var(--muted); }

@keyframes dot-pulse { 0%, 100% { opacity: .55; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.1); } }
@keyframes line-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -100% 0; } }
@keyframes progress-loop { 0%, 100% { width: 15%; } 50% { width: 88%; } }
@keyframes bar-grow { 0%, 100% { transform: scaleY(.2); } 50% { transform: scaleY(1); } }
@keyframes btn-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); } 50% { box-shadow: 0 0 0 5px rgba(108,63,228,.16); } }

@media (prefers-reduced-motion: reduce) {
  .mockup-dot, .mockup-avatar, .mockup-line, .mockup-progress-bar, .mockup-stat-bar, .mockup-btn.is-yes { animation: none; }
}

.step-foot-row { text-align: center; }
.step-foot { display: inline-flex; align-items: center; gap: .5rem; margin: 2.2rem auto 0; padding: .75rem 1.2rem; border-radius: 999px; background: var(--panel); font-family: 'Geist', sans-serif; font-size: .92rem; letter-spacing: -.03em; color: var(--ink); }

/* -------------------------------------------------------------------- */
/* Why (click-to-swap reasons)                                          */
/* -------------------------------------------------------------------- */

.why-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; margin: 3rem auto 0; max-width: 68rem; align-items: start; }
.why-nav { display: grid; gap: .4rem; }
.why-btn { text-align: left; padding: 1rem 1.3rem; border-radius: 14px; border: none; background: transparent; font-family: 'Geist', sans-serif; font-size: .96rem; font-weight: 400; letter-spacing: -.03em; color: var(--body-c); cursor: pointer; transition: background .2s ease, color .2s ease; }
.why-btn:hover { background: var(--panel); color: var(--ink); }
.why-btn.is-active { background: var(--lilac-2); color: var(--ink); font-weight: 500; }
.why-panel { position: relative; background: var(--panel-soft); border: 1px solid #fff; border-radius: 20px; padding: 2.4rem 2.2rem; box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 16px 34px rgba(0,0,0,.08); min-height: 12rem; }
.why-panel h3 { font-size: 1.2rem; }
.why-panel p { margin: .9rem 0 0; font-size: 1rem; letter-spacing: -.02em; line-height: 1.6; color: var(--body-c); }

/* -------------------------------------------------------------------- */
/* Price                                                                 */
/* -------------------------------------------------------------------- */

.price-panel { position: relative; overflow: hidden; max-width: 78rem; margin: 3rem auto 0; padding: 4rem 2.2rem 4.5rem; border-radius: 28px 28px 0 0; background: linear-gradient(160deg, var(--lilac-2) 0%, var(--lilac) 55%, var(--purple-soft) 140%); box-shadow: 0px 0px 20px 20px rgba(108,63,228,.2); text-align: center; }
.price-panel .dot-field { top: 0; height: 45%; }
.price-panel-head { position: relative; max-width: 44rem; margin: 0 auto; }
.price-panel-head h2 { margin-top: 1rem; font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.7rem); line-height: 1.16; }
.price-panel-head > p { margin: 1.1rem auto 0; max-width: 30rem; font-size: 1rem; letter-spacing: -.02em; line-height: 1.6; color: var(--body-c); }

.price-checklist { list-style: none; margin: 2rem auto 0; padding: 0; max-width: 32rem; display: grid; gap: .7rem; text-align: left; }
.price-checklist li { display: flex; align-items: flex-start; gap: .7rem; font-family: 'Geist', sans-serif; font-size: .95rem; letter-spacing: -.02em; line-height: 1.5; color: var(--ink); opacity: 0; transform: translateY(.7rem) scale(.96); transition: opacity .45s cubic-bezier(.16,.8,.24,1), transform .45s cubic-bezier(.16,.8,.24,1); }
.price-checklist li.is-in { opacity: 1; transform: none; }
.price-checklist svg { flex: none; width: 1.15rem; height: 1.15rem; margin-top: .15rem; color: var(--purple); }

.price-compare { margin: 1.8rem auto 0; font-size: 1rem; letter-spacing: -.02em; color: var(--body-c); }
.price-compare strong { color: var(--ink); }

.tier-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.2rem; margin: 3rem auto 0; text-align: left; }
.tier-card { padding: 2.2rem 1.6rem 2.6rem; border-radius: 20px; background: var(--panel-soft); border: 1px solid #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 12px 28px rgba(0,0,0,.1); transition: box-shadow .3s ease, transform .3s ease; }
.tier-card:hover { box-shadow: 0 18px 34px rgba(0,0,0,.1); transform: translateY(-.3rem); }
.tier-card.is-featured { background: var(--lilac-2); border-color: var(--purple-line); box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 16px 34px rgba(108,63,228,.16); }
.tier-card h3 { font-size: 1.05rem; }
.tier-card .amt { margin: .5rem 0 .8rem; font-family: 'Manrope', sans-serif; font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.tier-card .amt span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.tier-card p { font-size: .92rem; letter-spacing: -.02em; line-height: 1.55; color: var(--body-c); }

.price-footnote { text-align: center; margin: 1.8rem 0 0; font-size: .95rem; font-weight: 500; letter-spacing: -.02em; color: var(--body-c); }

/* -------------------------------------------------------------------- */
/* Our promise                                                           */
/* -------------------------------------------------------------------- */

.promise-panel { position: relative; overflow: hidden; max-width: 78rem; margin: 3rem auto 0; padding: 3.5rem 2.5rem; border-radius: 28px; background: linear-gradient(160deg, var(--lilac-2) 0%, var(--lilac) 55%, var(--purple-soft) 140%); border: 1px solid #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 30px 55px rgba(76,50,160,.18); text-align: center; }
.promise-panel .dot-field { top: 0; height: 55%; }
.promise-panel h2 { position: relative; margin: 1rem auto 0; max-width: 46rem; font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.7rem); line-height: 1.18; }
.promise-panel > p { position: relative; margin: 1.2rem auto 0; max-width: 34rem; font-size: 1.02rem; letter-spacing: -.02em; line-height: 1.6; color: var(--body-c); }

.promise-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1rem; margin: 2.5rem auto 0; max-width: 68rem; text-align: left; }
.promise-point { padding: 1.4rem 1.3rem; border-radius: 14px; background: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 18px rgba(76,50,160,.08); font-family: 'Geist', sans-serif; font-size: .94rem; letter-spacing: -.02em; line-height: 1.5; color: var(--ink); }

/* -------------------------------------------------------------------- */
/* Blog / resources                                                      */
/* -------------------------------------------------------------------- */

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.2rem; margin: 3rem auto 0; max-width: 78rem; }
.blog-card { display: block; border-radius: 16px; border: 2px solid #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 10px 26px rgba(0,0,0,.1); overflow: hidden; background: #fff; transition: box-shadow .3s ease, transform .3s ease; }
.blog-card:hover { box-shadow: 0 16px 30px rgba(0,0,0,.1); transform: translateY(-.25rem); color: var(--ink); }
.blog-shot { height: 10.5rem; background: var(--panel); overflow: hidden; }
.blog-shot img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { position: relative; overflow: hidden; padding: 1.2rem 1.3rem 1.4rem; background: var(--panel-soft); }
.blog-body .dot-field { -webkit-mask-image: linear-gradient(0deg, #000 0%, transparent 100%); mask-image: linear-gradient(0deg, #000 0%, transparent 100%); opacity: .4; }
.blog-body > * { position: relative; }
.blog-body h3 { font-size: 1.02rem; line-height: 1.35; }
.blog-body p { margin: .5rem 0 0; font-size: .9rem; letter-spacing: -.02em; line-height: 1.5; color: var(--body-c); }
.blog-read { display: inline-block; margin-top: 1rem; font-family: 'Geist', sans-serif; font-size: .88rem; font-weight: 500; color: var(--purple); }

/* -------------------------------------------------------------------- */
/* Blog post (article template)                                         */
/* -------------------------------------------------------------------- */

.post-header { padding: 8.5rem var(--pad-x) 0; max-width: 54rem; margin: 0 auto; }
.post-back { display: inline-flex; margin-bottom: 2rem; padding: .6rem 1rem; font-size: .88rem; }
.post-title { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.8rem); line-height: 1.2; }
.post-intro { margin: 1.1rem 0 0; font-size: 1.08rem; letter-spacing: -.02em; line-height: 1.55; color: var(--body-c); }
.post-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); }
.post-author { display: flex; align-items: center; gap: .8rem; }
.post-author .avatar { width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--lilac-2); color: var(--purple); display: flex; align-items: center; justify-content: center; flex: none; }
.post-author .avatar svg { width: 1.2rem; height: 1.2rem; }
.post-author .name { font-family: 'Geist', sans-serif; font-size: .92rem; font-weight: 600; letter-spacing: -.03em; }
.post-author .role { font-size: .84rem; color: var(--body-c); }
.post-meta-more { display: flex; align-items: center; gap: .8rem; font-size: .84rem; color: var(--body-c); }
.post-meta-more .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

.post-hero { max-width: 54rem; margin: 3rem auto 0; padding: 0 var(--pad-x); }
.post-hero-shot { aspect-ratio: 16/9; border-radius: 20px; background: var(--panel); overflow: hidden; }
.post-hero-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.post-body { max-width: 42rem; margin: 3rem auto 0; padding: 0 var(--pad-x); }
.post-body h2 { font-size: 1.3rem; margin-top: 2.2rem; }
.post-body h2:first-child { margin-top: 0; }
.post-body p { margin: .9rem 0 0; font-size: 1.02rem; letter-spacing: -.02em; line-height: 1.7; color: var(--body-c); }
.post-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.2rem; }
.post-gallery .blog-shot { aspect-ratio: 4/3; height: auto; border-radius: 16px; }

.more-posts { padding: 5rem var(--pad-x) 0; max-width: 81.25rem; margin: 4rem auto 0; border-top: 1px solid var(--line-soft); }

@media (max-width: 640px) {
  .post-header { padding: 7rem var(--pad-x) 0; }
  .post-gallery { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------- */
/* Bring your list from anywhere ("Connect your entire stack" analogue) */
/* -------------------------------------------------------------------- */

.sources-video-wrap { display: flex; justify-content: center; margin-top: 3rem; }
.sources-video { width: 13rem; aspect-ratio: 1; object-fit: cover; border-radius: 20px; background: var(--panel); }
.sources-marquee { margin: 2.5rem auto 0; max-width: 62rem; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.sources-marquee-track { display: flex; align-items: center; gap: 1rem; width: max-content; animation: marquee 20s linear infinite; }
.sources-marquee-track:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .sources-marquee-track { animation: none; } }
.source-card { flex: none; display: flex; align-items: center; gap: .65rem; padding: .9rem 1.3rem; border-radius: 12px; background: var(--panel); border: 1px solid #fff; box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 18px rgba(0,0,0,.07); font-family: 'Geist', sans-serif; font-size: .92rem; font-weight: 500; letter-spacing: -.03em; color: var(--ink); white-space: nowrap; transition: transform .25s ease, box-shadow .25s ease; }
.source-card:hover { transform: translateY(-.2rem); box-shadow: 0 10px 20px rgba(0,0,0,.08); }
.source-card .ico { width: 1.2rem; height: 1.2rem; color: var(--purple); }

/* -------------------------------------------------------------------- */
/* FAQ                                                                   */
/* -------------------------------------------------------------------- */

.faq-section { padding: 6.5rem var(--pad-x) 0; max-width: 81.25rem; margin: 0 auto; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.faq-info { position: sticky; top: 6.5rem; }
.faq-info .section-head { text-align: left; margin: 0; }
.faq-info .section-head h2 { font-size: clamp(2.2rem, 1.5rem + 3.2vw, 3.4rem); }
.faq-info .section-head .section-sub { font-size: 1.08rem; }
.faq-video-wrap { position: relative; margin-top: 2rem; max-width: 12.5rem; }
.faq-video { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--panel); }
.faq-video-sample { position: absolute; right: -1.4rem; bottom: -1.4rem; width: 5.5rem; border-radius: 12px; overflow: hidden; border: 2px solid #fff; box-shadow: 0 14px 30px rgba(0,0,0,.18); background: var(--panel); }
.faq-video-sample img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; }
.faq-more { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line-soft); }
.faq-more p { margin: 0 0 1rem; font-size: .96rem; color: var(--body-c); }
.faq-card { background: var(--panel-soft); border: 1px solid #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 20px 45px rgba(0,0,0,.1); border-radius: 24px; padding: 2.5rem 2rem; }
.faq-list { display: flex; flex-direction: column; gap: .7rem; }
.faq-row { padding: 1.3rem 1.4rem; border-radius: 12px; background: #fff; border: 1px solid #fff; cursor: pointer; transition: padding .25s ease; }
.faq-row-top { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.faq-row-top h3 { font-family: 'Geist', sans-serif; font-weight: 500; font-size: 1.02rem; letter-spacing: -.03em; }
.faq-toggle { width: 1.9rem; height: 1.9rem; }
.faq-toggle svg { width: .8rem; height: .8rem; transition: transform .3s ease; }
.faq-row.is-open .faq-toggle svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; opacity: 0; font-size: .98rem; letter-spacing: -.02em; line-height: 1.6; color: var(--body-c); transition: max-height .35s ease, opacity .3s ease, margin-top .35s ease; }
.faq-row:hover .faq-answer,
.faq-row.is-open .faq-answer { max-height: 8rem; opacity: 1; margin-top: .95rem; }

/* -------------------------------------------------------------------- */
/* Book                                                                  */
/* -------------------------------------------------------------------- */

.contact-section { padding: 6.5rem var(--pad-x) 6rem; max-width: 81.25rem; margin: 0 auto; }
.contact-box { max-width: 40rem; margin: 0 auto; text-align: center; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 1.5rem; align-items: start; max-width: 62rem; margin: 3rem auto 0; text-align: left; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card { display: flex; flex-direction: column; align-items: center; gap: .7rem; text-align: center; padding: 1.7rem 1.2rem; border-radius: 16px; background: var(--panel-soft); border: 1px solid #fff; box-shadow: 0 2px 4px rgba(0,0,0,.05), 0 18px 34px rgba(0,0,0,.1); }
.info-card .ico { width: 1.3rem; height: 1.3rem; color: var(--ink); }
.info-card .t { font-size: .92rem; letter-spacing: -.02em; line-height: 1.45; color: var(--body-c); }
.info-card a.t { color: var(--body-c); }
.info-card a.t:hover { color: var(--purple); }
.contact-form-card { background: var(--panel-soft); border: 1px solid #fff; box-shadow: 0 2px 4px rgba(0,0,0,.06), 0 26px 55px rgba(0,0,0,.13); border-radius: 24px; padding: 2rem; }
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 1.6rem; }
.contact-form { display: flex; flex-direction: column; gap: .8rem; text-align: left; }
@media (max-width: 720px) { .contact-layout { grid-template-columns: 1fr; } }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr)); gap: .8rem; }
.form-input, .form-select, .form-textarea {
  padding: .85rem 1rem; border-radius: 10px; border: 1px solid var(--line-soft); background: #fff;
  font-family: 'Geist', sans-serif; font-size: .98rem; letter-spacing: -.03em; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px var(--lilac); }
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid { border-color: #d64545; }
.form-select-wrap { position: relative; }
.form-select { appearance: none; padding-right: 2.6rem; }
.form-select-caret { position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); font-size: .68rem; color: var(--muted); pointer-events: none; }
.form-textarea { border-radius: 12px; min-height: 7rem; resize: vertical; }
.form-error { padding: .8rem 1rem; border-radius: 10px; background: rgba(214,69,69,.08); border: 1px solid rgba(214,69,69,.35); font-size: .92rem; color: #a92f2f; display: none; }
.form-error.is-visible { display: block; }
.form-terms { display: flex; align-items: center; gap: .7rem; font-size: .92rem; letter-spacing: -.02em; color: var(--body-c); cursor: pointer; }
.form-checkbox { display: block; width: 1.05rem; height: 1.05rem; border-radius: 5px; border: 1px solid var(--line); background: #fff; flex: none; transition: background .2s ease, border-color .2s ease; }
.form-checkbox.is-checked { background: var(--ink); border-color: var(--ink); }
.form-terms a { color: var(--purple); text-decoration: underline; }
.form-submit { margin-top: .3rem; align-self: flex-start; }
.form-submit[disabled] { opacity: .6; cursor: default; pointer-events: none; }
.contact-done { display: none; margin-top: 2.2rem; flex-direction: column; align-items: center; gap: 1rem; }
.contact-done.is-visible { display: flex; }
.contact-done h3 { font-size: 1.6rem; }
.contact-done p { margin: 0; max-width: 26rem; font-size: 1rem; letter-spacing: -.02em; line-height: 1.55; color: var(--body-c); }
.contact-alt { display: flex; align-items: center; gap: 1rem; margin: 2rem auto 0; max-width: 26rem; color: var(--muted); font-size: .82rem; }
.contact-alt::before, .contact-alt::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }
.contact-cal { margin-top: 1.6rem; }

/* -------------------------------------------------------------------- */
/* Journey + footer                                                     */
/* -------------------------------------------------------------------- */

.journey-section { padding: 6rem var(--pad-x) 0; text-align: center; }
.journey-wrap { position: relative; max-width: 64rem; margin: 0 auto; }
.journey-card { position: relative; overflow: hidden; padding: 5.5rem 3rem; border-radius: 32px; background: linear-gradient(160deg, var(--lilac-2) 0%, var(--lilac) 55%, var(--purple-soft) 140%); }
.journey-card h2 { position: relative; font-size: clamp(1.8rem, 1.3rem + 2.2vw, 2.7rem); line-height: 1.2; }
.journey-card p { position: relative; margin: 1.1rem auto 0; max-width: 32rem; font-size: 1.02rem; letter-spacing: -.02em; line-height: 1.6; color: var(--body-c); }
.journey-card > .btn-dark { position: relative; display: inline-flex; margin-top: 1.8rem; }

.journey-dot { position: absolute; z-index: 1; border-radius: 50%; pointer-events: none; animation: blink-soft 3.6s ease-in-out infinite; }
.journey-dot-1 { right: .6rem; bottom: .4rem; width: 4.5rem; height: 4.5rem; background: var(--purple); }
.journey-dot-2 { right: -1.4rem; bottom: .8rem; width: 2.8rem; height: 2.8rem; background: var(--purple-deep); animation-delay: 1.3s; }
@media (prefers-reduced-motion: reduce) { .journey-dot { animation: none; opacity: .35; } }

.footer-section { margin-top: 5rem; background: var(--panel-soft); border-top: 1px solid var(--line-soft); padding: 4rem var(--pad-x) 2rem; }
.footer-inner { max-width: 78rem; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); gap: 2rem; }
.footer-logo { display: flex; align-items: center; gap: .5rem; }
.footer-logo .word { font-family: 'Manrope', sans-serif; font-size: 1.18rem; font-weight: 700; letter-spacing: -.05em; }
.footer-word-sub { font-weight: 500; letter-spacing: -.02em; opacity: .55; }
.footer-col { display: flex; flex-direction: column; gap: .75rem; }
.footer-col .head { font-family: 'Geist', sans-serif; font-size: .92rem; font-weight: 500; letter-spacing: -.03em; color: var(--ink); }
.footer-col a { font-size: .92rem; letter-spacing: -.02em; color: var(--body-c); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .8rem 2rem; justify-content: space-between; margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft); font-size: .84rem; letter-spacing: -.02em; color: var(--muted); }
.footer-entity { text-align: right; max-width: 24rem; line-height: 1.55; }

/* -------------------------------------------------------------------- */
/* Placeholder markers                                                  */
/* -------------------------------------------------------------------- */

.fill-me { background: rgba(108, 63, 228, .1); outline: 1.5px dashed var(--purple); outline-offset: 2px; border-radius: .3em; padding: 0 .2em; }

/* -------------------------------------------------------------------- */
/* Cookie banner                                                        */
/* -------------------------------------------------------------------- */

.cookie-banner {
  position: fixed; bottom: 1.2rem; left: 1.2rem; right: 1.2rem; z-index: 90;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.1rem;
  max-width: 48rem; margin: 0 auto; padding: 1.1rem 1.3rem; border-radius: 16px;
  background: #fff; border: 1px solid var(--line-soft); box-shadow: 0 12px 30px rgba(0,0,0,.14);
  transform: translateY(140%); opacity: 0; transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner p { margin: 0; font-size: .92rem; letter-spacing: -.02em; line-height: 1.5; color: var(--body-c); max-width: 24rem; }
.cookie-actions { display: flex; gap: .6rem; }
.cookie-actions button { font-family: 'Geist', sans-serif; font-size: .9rem; letter-spacing: -.03em; white-space: nowrap; cursor: pointer; border-radius: 10px; padding: .7rem 1.2rem; }
.cookie-essential { background: var(--ink); color: #fff; border: none; font-weight: 500; }
.cookie-accept-all { background: transparent; color: var(--ink); border: 1px solid var(--line); }

/* -------------------------------------------------------------------- */
/* Responsive                                                            */
/* -------------------------------------------------------------------- */

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-info { position: static; }
  .hero-row { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero-feature-row { grid-template-columns: repeat(2, 1fr); }
  .hero-feature:nth-child(2) { border-right: none; }
  .inbox-layout { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; }
  .mail-preview { aspect-ratio: 16/10; }
}

@media (max-width: 640px) {
  .hero { padding: 8rem var(--pad-x) 0; }
  .hero-inner { max-width: none; }
  .hero-visual-panel { padding: 2rem 1rem 0; border-radius: 20px; }
  .hero-feature-row { grid-template-columns: 1fr; }
  .hero-feature { border-right: none !important; }
  .section { padding: 4.5rem var(--pad-x) 0; }
  .faq-section { padding: 4.5rem var(--pad-x) 0; }
  .faq-card { padding: 1.1rem; }
  .price-panel { padding: 2.6rem 1.3rem 3rem; border-radius: 20px 20px 0 0; }
  .tier-card { padding: 1.4rem 1.2rem; }
  .promise-panel { padding: 2.4rem 1.4rem; border-radius: 20px; }
  .journey-card { padding: 2.4rem 1.4rem; border-radius: 20px; }
  .contact-section { padding: 4.5rem var(--pad-x) 4.5rem; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .footer-entity { text-align: left; max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-alt { max-width: none; }
}
