:root {
  --ink: #151316;
  --ink-raised: #252126;
  --ink-soft: #5e585f;
  --paper: #ffffff;
  --surface: #f4f4f1;
  --surface-dark: #1d1a1e;
  --line: #d9d6da;
  --brand: #7b2cbf;
  --brand-dark: #501078;
  --yellow: #ffcc33;
  --yellow-light: #ffe37a;
  --green: #157253;
  --focus: #0a66c2;
  --content: 1160px;
  --legal: 800px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
[href],
summary {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 16px;
  right: 16px;
  left: 16px;
  z-index: 50;
}

.nav-shell {
  display: flex;
  width: 100%;
  max-width: var(--content);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 14px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(15, 13, 16, 0.16);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
}

.brand-link img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: inline-flex;
  min-height: 44px;
  padding: 0 14px;
  align-items: center;
  color: #373238;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
  background: #f4ebf9;
}

.nav-links .nav-cta {
  margin-left: 6px;
  color: #ffffff;
  background: var(--ink);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] {
  color: var(--ink);
  background: var(--yellow);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, calc(100svh - 36px));
  padding: 132px 0 64px;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background: #181519;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-media picture {
  min-width: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.hero-media picture:nth-child(2) img {
  object-position: 50% 32%;
}

.hero-media picture:nth-child(3) img {
  object-position: 50% 30%;
}

.hero-shade {
  z-index: 1;
  background: rgba(8, 7, 9, 0.56);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content > * {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light,
.section-kicker-dark {
  color: var(--yellow);
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

.hero h1 {
  margin: 0;
  font-size: 104px;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-statement {
  margin: 24px 0 0;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
}

.hero-lead {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-primary:hover {
  background: var(--yellow-light);
}

.button-ghost,
.button-secondary {
  color: #ffffff;
  background: rgba(21, 19, 22, 0.68);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost:hover,
.button-secondary:hover {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
}

.button-dark {
  color: #ffffff;
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--ink);
}

.button-label {
  cursor: default;
}

.hero-meta {
  display: flex;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-meta svg {
  width: 17px;
  height: 17px;
  color: var(--yellow);
}

.connection-strip {
  color: var(--ink);
  background: var(--yellow);
  border-bottom: 1px solid #d8aa22;
}

.connection-strip-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 21px;
  font-weight: 850;
}

.connection-strip svg {
  width: 20px;
  height: 20px;
  color: rgba(21, 19, 22, 0.55);
}

.section {
  padding: 112px 0;
}

.experience-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 48px;
}

.section-heading-wide {
  margin-bottom: 56px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.section-heading h2,
.support-intro h1,
.legal-header h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.screens-rail {
  display: grid;
  padding: 4px 2px 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  scrollbar-color: var(--brand) var(--surface);
  scrollbar-width: thin;
}

.screen-card {
  position: relative;
  min-width: 0;
  margin: 0;
}

.screen-number {
  display: flex;
  width: 44px;
  height: 36px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 850;
}

.screen-card:nth-child(2) .screen-number {
  background: var(--brand);
}

.screen-card:nth-child(3) .screen-number {
  color: var(--ink);
  background: var(--yellow);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 700 / 1515;
  object-fit: cover;
  object-position: top;
  background: #eeeeeb;
  border: 1px solid #cbc7cc;
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(21, 19, 22, 0.12);
}

.screen-card figcaption {
  display: grid;
  min-height: 108px;
  padding: 20px 4px 0;
  gap: 5px;
}

.screen-card figcaption strong {
  font-size: 19px;
}

.screen-card figcaption span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.conversation-section {
  color: #ffffff;
  background: var(--ink);
}

.conversation-section .section-heading p {
  color: #c7c1c8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.feature {
  position: relative;
  min-width: 0;
  padding-top: 28px;
  border-top: 1px solid #474148;
}

.feature-index {
  position: absolute;
  top: 30px;
  right: 0;
  color: #777078;
  font-size: 13px;
  font-weight: 800;
}

.feature-icon {
  display: flex;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 7px;
}

.feature:nth-child(2) .feature-icon {
  color: #ffffff;
  background: var(--brand);
}

.feature:nth-child(3) .feature-icon {
  color: var(--ink);
  background: #ffffff;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
}

.feature h3 {
  margin: 0 0 11px;
  font-size: 23px;
}

.feature p {
  margin: 0;
  color: #bdb6bf;
}

.safety-section {
  background: var(--surface);
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 84px;
}

.safety-visual {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 78px 50px 0;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--yellow);
}

.safety-visual img {
  width: min(100%, 390px);
  height: auto;
  border: 1px solid rgba(21, 19, 22, 0.25);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 22px 46px rgba(44, 33, 5, 0.22);
}

.safety-label {
  position: absolute;
  top: 22px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 850;
}

.safety-label svg {
  width: 19px;
  height: 19px;
}

.safety-copy h2 {
  max-width: 560px;
  margin: 0 0 22px;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0;
}

.safety-copy > p {
  max-width: 600px;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 18px;
}

.check-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  padding: 17px 0;
  align-items: flex-start;
  gap: 13px;
  color: #454046;
  border-top: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  flex: 0 0 21px;
  color: var(--green);
}

.check-list strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  align-items: center;
  gap: 7px;
  color: var(--brand-dark);
  font-weight: 800;
}

.text-link:hover {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.cta-band {
  padding: 78px 0;
  color: var(--ink);
  background: var(--yellow);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-content p {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.cta-content h2 {
  max-width: 720px;
  margin: 0;
  font-size: 39px;
  line-height: 1.16;
  letter-spacing: 0;
}

.site-footer {
  padding: 54px 0 30px;
  color: #d7d1d9;
  background: #0f0d10;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(140px, 220px));
  gap: 52px;
}

.footer-brand .brand-link {
  color: #ffffff;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: #aaa2ac;
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: #c7c0c9;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  margin-top: 44px;
  padding-top: 21px;
  justify-content: space-between;
  gap: 20px;
  color: #807981;
  border-top: 1px solid #322e33;
  font-size: 12px;
}

/* Support and legal pages */
.page-main {
  min-height: 70vh;
  padding-top: 112px;
}

.page-hero {
  padding: 82px 0 68px;
  color: #ffffff;
  background: var(--ink);
}

.support-intro {
  max-width: 800px;
}

.support-intro p {
  max-width: 680px;
  margin: 20px 0 30px;
  color: #d1cbd2;
  font-size: 18px;
}

.support-intro .button-primary {
  color: var(--ink);
}

.support-section {
  padding: 78px 0 104px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 76px;
}

.support-aside h2,
.faq-list h2,
.delete-content h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.support-aside p {
  color: var(--ink-soft);
}

.contact-line {
  display: flex;
  margin-top: 24px;
  align-items: flex-start;
  gap: 12px;
}

.contact-line svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex: 0 0 22px;
  color: var(--brand);
}

.contact-line strong,
.contact-line a {
  display: block;
}

.contact-line a {
  color: var(--brand-dark);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 21px 42px 21px 0;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 4px;
  content: "+";
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: -5px 44px 22px 0;
  color: var(--ink-soft);
}

.legal-page {
  padding: 58px 0 100px;
  background: var(--surface);
}

.legal-header,
.legal-content,
.delete-content {
  width: min(calc(100% - 48px), var(--legal));
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 34px;
}

.legal-header .updated {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.legal-content,
.delete-content {
  padding: 44px 50px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: 23px;
  line-height: 1.3;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-content p,
.legal-content li,
.delete-content p,
.delete-content li {
  color: #3f3940;
}

.legal-content a,
.delete-content a {
  color: var(--brand-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol,
.delete-content ol,
.delete-content ul {
  padding-left: 24px;
}

.legal-content li,
.delete-content li {
  margin: 8px 0;
}

.deletion-note {
  margin: 28px 0;
  padding: 18px 20px;
  color: #35290d;
  background: #fff3c7;
  border-left: 4px solid var(--yellow);
}

.delete-content .button {
  margin-top: 12px;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .hero h1 {
    font-size: 88px;
  }

  .hero-statement {
    font-size: 34px;
  }

  .section-heading h2,
  .support-intro h1,
  .legal-header h1,
  .safety-copy h2 {
    font-size: 46px;
  }

  .screens-rail {
    margin-right: -24px;
    padding-right: 24px;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 340px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .screen-card {
    scroll-snap-align: start;
  }

  .safety-layout,
  .support-grid {
    gap: 52px;
  }

  .safety-visual {
    padding-right: 36px;
    padding-left: 36px;
  }
}

@media (max-width: 780px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .nav-shell {
    min-height: 58px;
    padding: 6px 7px 6px 10px;
  }

  .brand-link img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: 10px;
    left: 10px;
    display: none;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 20px 44px rgba(21, 19, 22, 0.18);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .nav-links .nav-cta {
    margin: 4px 0 0;
    justify-content: center;
  }

  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  .hero {
    min-height: calc(100svh - 24px);
    padding: 108px 0 42px;
  }

  .hero-media {
    display: block;
  }

  .hero-media picture {
    display: none;
    width: 100%;
    height: 100%;
  }

  .hero-media picture:first-child {
    display: block;
  }

  .hero-media img {
    object-position: 52% 34%;
  }

  .hero-shade {
    background: rgba(8, 7, 9, 0.58);
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-statement {
    max-width: 520px;
    font-size: 32px;
  }

  .hero-lead {
    max-width: 560px;
    font-size: 17px;
  }

  .connection-strip-inner {
    min-height: 72px;
    gap: 12px;
    font-size: 17px;
  }

  .connection-strip svg {
    width: 16px;
    height: 16px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading,
  .section-heading-wide,
  .safety-layout,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 38px;
    gap: 18px;
  }

  .section-heading h2,
  .support-intro h1,
  .legal-header h1,
  .safety-copy h2 {
    font-size: 38px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature-icon {
    margin-bottom: 24px;
  }

  .safety-layout {
    gap: 46px;
  }

  .safety-copy {
    order: -1;
  }

  .safety-visual {
    padding-top: 70px;
  }

  .safety-visual img {
    width: min(84%, 390px);
  }

  .cta-content,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .footer-grid {
    gap: 36px;
  }

  .page-main {
    padding-top: 88px;
  }

  .page-hero {
    padding: 60px 0 54px;
  }

  .support-section {
    padding: 60px 0 78px;
  }

  .legal-page {
    padding: 44px 0 76px;
  }

  .legal-content,
  .delete-content {
    padding: 32px 26px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 62px;
  }

  .hero-statement {
    font-size: 29px;
  }

  .hero-actions .button,
  .support-actions .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 9px;
  }

  .connection-strip-inner {
    min-height: 68px;
    gap: 8px;
    font-size: 14px;
  }

  .connection-strip svg {
    width: 13px;
    height: 13px;
  }

  .section-heading h2,
  .support-intro h1,
  .legal-header h1,
  .safety-copy h2 {
    font-size: 34px;
  }

  .screens-rail {
    margin-right: -16px;
    padding-right: 16px;
    grid-auto-columns: min(340px, calc(100vw - 40px));
  }

  .screen-card figcaption {
    min-height: 102px;
  }

  .safety-visual {
    padding-right: 18px;
    padding-left: 18px;
  }

  .safety-visual img {
    width: min(94%, 360px);
  }

  .cta-band {
    padding: 64px 0;
  }

  .cta-content .button {
    width: 100%;
  }

  .legal-header,
  .legal-content,
  .delete-content {
    width: min(calc(100% - 24px), var(--legal));
  }
}

@media (max-height: 660px) and (min-width: 781px) {
  .hero {
    min-height: calc(100svh - 24px);
    padding-top: 104px;
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-statement {
    margin-top: 16px;
    font-size: 28px;
  }

  .hero-lead {
    margin-top: 12px;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .hero-meta {
    margin-top: 14px;
  }
}

@media (max-width: 520px) and (max-height: 700px) {
  .hero {
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-statement {
    margin-top: 14px;
    font-size: 25px;
  }

  .hero-lead {
    margin-top: 10px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 44px;
  }

  .hero-meta {
    margin-top: 16px;
    gap: 6px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
