:root {
  --ink: #171629;
  --paper: #fffaf1;
  --purple: #7257ff;
  --pink: #ff6db1;
  --yellow: #ffd84d;
  --blue: #62d9ff;
  --mint: #79e5b5;
  --line: rgba(23, 22, 41, .15);
  --shadow: 0 24px 60px rgba(52, 38, 113, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 0;
  padding: 12px 14px 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 14px;
  z-index: 20;
  background: rgba(255, 250, 241, .86);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}
.brand, .footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  font-size: .8rem;
  letter-spacing: .08em;
}
nav { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .95rem; }
.nav-cta { padding: 10px 18px; background: var(--purple); color: #fff; border-radius: 999px; }

.lang-switch { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
.lang-option {
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  cursor: pointer;
}
.lang-option:hover { background: rgba(23, 22, 41, .07); }
.lang-option[aria-pressed="true"] { background: var(--ink); color: #fff; }
.lang-option:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 700px;
  margin: 0 auto;
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}
.eyebrow { margin: 0 0 12px; font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.05; margin-top: 0; }
h1 { font-size: clamp(3.4rem, 7vw, 6.7rem); margin-bottom: 28px; letter-spacing: -.065em; }
h1 span { color: var(--purple); }
.intro { max-width: 680px; font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; padding: 14px 22px; border-radius: 999px; font-weight: 850; border: 2px solid var(--ink); }
.button.primary { color: white; background: var(--ink); }
.button.secondary { background: transparent; }
.hero-art { position: relative; min-height: 480px; }
.orb { position: absolute; border-radius: 50%; filter: saturate(115%); }
.orb-one { width: 350px; height: 350px; right: 0; top: 0; background: var(--yellow); }
.orb-two { width: 260px; height: 260px; left: 0; bottom: 0; background: var(--pink); }
.code-card {
  position: absolute;
  inset: 105px 34px auto 20px;
  min-height: 280px;
  padding: 24px;
  color: white;
  background: rgba(23, 22, 41, .95);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}
.dot { width: 10px; height: 10px; display: inline-block; margin-right: 6px; border-radius: 50%; background: var(--mint); }
.code-card pre { margin: 48px 0 0; font-size: clamp(.82rem, 1.6vw, 1.08rem); white-space: pre-wrap; }

.section { padding: 100px max(20px, calc((100vw - 1180px)/2)); background: #fff; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.8rem); letter-spacing: -.055em; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { min-height: 320px; padding: 30px; border-radius: 30px; border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
.card-yellow { background: var(--yellow); }
.card-pink { background: var(--pink); }
.card-blue { background: var(--blue); }
.card-number { display: block; margin-bottom: 70px; font-weight: 900; }
.card h3 { font-size: 1.65rem; }
.card p { margin-bottom: 0; }

.about {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}
.about > p { font-size: 1.28rem; margin: 0 0 10px; }

.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: 55px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  background: var(--purple);
  color: white;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.contact h2 { margin-bottom: 16px; }
.contact-details { align-self: center; padding: 28px; color: var(--ink); background: white; border-radius: 24px; }
.placeholder { font-size: .76rem; font-weight: 900; letter-spacing: .04em; color: #9a2e63; }

footer { padding: 70px max(20px, calc((100vw - 1180px)/2)) 30px; color: white; background: var(--ink); }
.footer-brand { margin-bottom: 38px; font-size: 1.2rem; }
.footer-brand .brand-mark { background: var(--yellow); color: var(--ink); }
.legal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.legal-grid p { margin: 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.2); }
footer .placeholder { color: #ff9cca; }
.copyright { margin: 55px 0 0; opacity: .65; font-size: .85rem; }

@media (max-width: 850px) {
  nav a:not(.nav-cta):not(.nav-tab) { display: none; }
  nav { gap: 14px; }
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 70px; }
  .hero-art { min-height: 410px; }
  .cards, .about, .contact { grid-template-columns: 1fr; }
  .cards { gap: 28px; }
  .card { min-height: 260px; }
  .card-number { margin-bottom: 40px; }
  .legal-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .site-header { width: calc(100% - 24px); }
  .brand > span:last-child { display: none; }
  .hero, .about, .contact { width: calc(100% - 28px); }
  .hero { min-height: auto; }
  .hero-art { min-height: 340px; }
  .orb-one { width: 250px; height: 250px; }
  .orb-two { width: 190px; height: 190px; }
  .code-card { inset: 70px 8px auto 8px; min-height: 230px; }
  .contact { padding: 30px 22px; }
  .legal-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   Verbie app page
   --------------------------------------------------------------- */
.app-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 50px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.app-hero h1 { font-size: clamp(3rem, 6vw, 5.6rem); margin-bottom: 24px; }
.app-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.badge {
  padding: 8px 15px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-device { position: relative; display: grid; place-items: center; min-height: 520px; }
.hero-device .orb-one { width: 320px; height: 320px; right: 10px; top: -10px; }
.hero-device .orb-two { width: 220px; height: 220px; left: 0; bottom: 10px; background: var(--blue); }

.device {
  line-height: 0;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}
.device img { display: block; width: 100%; height: auto; }
.device.tablet { border-radius: 22px; }
.hero-device .device { position: relative; z-index: 1; width: min(300px, 76%); transform: rotate(-3deg); }

.stat-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 6px 6px 0 var(--ink);
}
.stat strong { display: block; font-size: 2.1rem; font-weight: 900; line-height: 1.1; letter-spacing: -.045em; }
.stat span { font-size: .95rem; }
.stat:nth-child(1) { background: var(--yellow); }
.stat:nth-child(2) { background: var(--pink); }
.stat:nth-child(3) { background: var(--blue); }
.stat:nth-child(4) { background: var(--mint); }

.features { padding: 80px max(20px, calc((100vw - 1180px)/2)) 60px; background: #fff; }
.feature {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.feature.reverse .feature-copy { order: 2; }
.feature-copy h3 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); letter-spacing: -.045em; margin-bottom: 14px; }
.feature-copy p { margin: 0; }
.feature-wide { padding: 60px 0; border-top: 1px solid var(--line); }
.feature-wide .feature-copy { max-width: 760px; margin-bottom: 38px; }

.feature-dark {
  margin: 50px 0;
  padding: 55px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 36px;
}
.feature-dark .eyebrow { color: var(--mint); }
.feature-dark .device { border-color: #000; box-shadow: 8px 8px 0 rgba(0, 0, 0, .4); }
.feature-dark figcaption { color: rgba(255, 255, 255, .7); }
.feature-dark .tick-list li::before { background: var(--mint); color: var(--ink); }

.tick-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.tick-list li { position: relative; padding-left: 32px; }
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--mint);
  font-size: .72rem;
  font-weight: 900;
}

.shots { display: grid; gap: 20px; }
.shots.single { max-width: 320px; }
.shots.pair { grid-template-columns: repeat(2, 1fr); }
.shots.trio { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.shots.wrist { grid-template-columns: 1fr 1fr; align-items: center; }
.device.watch { max-width: 250px; background: #000; border-radius: 58px; }
.shot { margin: 0; }
.shot figcaption { margin-top: 12px; font-size: .86rem; font-weight: 700; opacity: .72; line-height: 1.4; }

.note-card {
  padding: 40px;
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 30px;
  box-shadow: 8px 8px 0 var(--ink);
}
.note-card h3 { font-size: 1.9rem; letter-spacing: -.03em; }
.note-card p:last-child { margin-bottom: 0; }

.cta-app {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: 55px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 45px;
  align-items: center;
  color: #fff;
  background: var(--purple);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.cta-app h2 { margin-bottom: 16px; }
.cta-app .button.primary { border-color: #fff; }
.cta-app .device { max-width: 270px; margin: 0 0 0 auto; border-color: rgba(255, 255, 255, .3); box-shadow: none; }
.price-line { margin: 22px 0 0; font-weight: 900; }
.fine-print { margin: 8px 0 0; font-size: .85rem; opacity: .8; }

@media (max-width: 850px) {
  .app-hero { grid-template-columns: 1fr; gap: 30px; padding-top: 60px; }
  .hero-device { min-height: 420px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 34px; }
  .feature.reverse .feature-copy { order: 0; }
  .feature-dark { padding: 34px 26px; }
  .cta-app { grid-template-columns: 1fr; padding: 34px 26px; }
  .cta-app .device { margin: 0 auto; }
}

@media (max-width: 520px) {
  .app-hero, .stat-strip, .cta-app { width: calc(100% - 28px); }
  .stat-strip { grid-template-columns: 1fr; }
  .shots.pair, .shots.trio { grid-template-columns: 1fr; max-width: 320px; }
  .note-card { padding: 28px 22px; }
  .shots.wrist { grid-template-columns: 1fr; justify-items: start; }
}

/* ---------------------------------------------------------------
   Verbie help page
   --------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.help-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 34px;
}
.help-hero h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); margin-bottom: 22px; }
.help-back { margin: 26px 0 0; }
.help-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
}
.help-back-link:hover { color: var(--purple); border-color: var(--purple); }

.help-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.help-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.help-quick, .help-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.help-quick-label {
  margin-right: 4px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .6;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  color: inherit;
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
}
.chip:hover { background: var(--yellow); }
.chip.is-active { background: var(--blue); }
.chip-solid { background: var(--ink); color: #fff; }
.chip-solid:hover { background: var(--purple); color: #fff; }
.chip:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }

.help-frame {
  height: clamp(620px, 78vh, 1150px);
  padding: 26px 30px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 30px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}
.help-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.help-fallback {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: .88rem;
  opacity: .72;
}

.help-more {
  width: min(1180px, calc(100% - 40px));
  margin: 60px auto 90px;
}
.help-more .note-card { max-width: 860px; }
.help-more .hero-actions { margin-top: 26px; }

/* ---------------------------------------------------------------
   Verbie page — support band linking to the help page
   --------------------------------------------------------------- */
.support-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: 44px 50px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px;
  align-items: center;
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 36px;
  box-shadow: 8px 8px 0 var(--ink);
}
.support-band h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); margin-bottom: 14px; }
.support-band p { margin: 0; }
.support-band .hero-actions { margin-top: 0; justify-content: flex-end; }

@media (max-width: 850px) {
  .help-frame { height: clamp(560px, 72vh, 900px); padding: 20px 18px; }
  .support-band { grid-template-columns: 1fr; padding: 34px 26px; gap: 26px; }
  .support-band .hero-actions { justify-content: flex-start; }
  .help-toolbar { gap: 14px; }
}

@media (max-width: 520px) {
  .help-hero, .help-shell, .help-more, .support-band { width: calc(100% - 28px); }
  .help-hero { padding-top: 50px; }
  .help-frame { height: 78vh; padding: 14px 12px; border-radius: 24px; }
  .help-quick-label { width: 100%; margin-bottom: 2px; }
  .chip { font-size: .8rem; padding: 8px 13px; }
}
