:root {
  color-scheme: dark light;
  --night: #05070d;
  --night-2: #0d121a;
  --ink: #111118;
  --paper: #fbf4ea;
  --white: #fffaf3;
  --mist: #b8b7c4;
  --muted: #615b68;
  --line-dark: rgba(255, 250, 243, 0.13);
  --line-light: rgba(17, 17, 24, 0.14);
  --blue: #3d79f1;
  --teal: #4bc0bb;
  --coral: #ed7463;
  --peach: #f6caa4;
  --mint: #d3ef8a;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--night);
  color: var(--white);
  letter-spacing: 0;
  margin: 0;
}

body.legal-page,
body.support-page {
  background:
    linear-gradient(180deg, var(--night) 0 340px, var(--paper) 340px 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

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

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

.site-header,
.site-footer,
.section-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  min-height: 88px;
  position: relative;
  z-index: 4;
}

.brand,
nav,
.site-footer div {
  align-items: center;
  display: flex;
}

.brand {
  gap: 12px;
  font-size: 1.04rem;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  height: 46px;
  width: 46px;
}

nav,
.site-footer div {
  gap: clamp(14px, 2.2vw, 28px);
}

nav a,
.site-footer a {
  color: rgba(255, 250, 243, 0.76);
  font-size: 0.96rem;
  font-weight: 820;
  text-decoration: none;
}

body.legal-page nav a,
body.support-page nav a {
  color: rgba(255, 250, 243, 0.76);
}

nav a:hover,
nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--mint);
}

.eyebrow {
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1,
h2 {
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 5.1rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 18px;
}

p {
  line-height: 1.6;
}

.hero {
  isolation: isolate;
  min-height: calc(100svh - 12px);
  overflow: hidden;
  position: relative;
  margin-top: -88px;
  padding: clamp(144px, 16vh, 194px) 0 clamp(62px, 8vw, 104px);
  background: var(--night);
}

.hero::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 139px, rgba(255, 250, 243, 0.055) 139px 140px),
    repeating-linear-gradient(0deg, transparent 0 139px, rgba(255, 250, 243, 0.055) 139px 140px);
  content: "";
  inset: 0;
  opacity: 0.46;
  position: absolute;
  z-index: -2;
}

.hero::after {
  background: linear-gradient(90deg, rgba(5, 7, 13, 0.86), rgba(5, 7, 13, 0.35));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 74px);
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 0.86fr);
}

.hero-copy {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(5rem, 12vw, 11.6rem);
  line-height: 0.84;
  margin-bottom: 24px;
}

.hero-lede {
  color: rgba(255, 250, 243, 0.84);
  font-size: clamp(1.18rem, 2.2vw, 1.8rem);
  line-height: 1.36;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0 21px;
  text-decoration: none;
}

.button.primary {
  background: var(--white);
  color: var(--night);
}

.button.secondary {
  background: rgba(255, 250, 243, 0.09);
  border-color: var(--line-dark);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.hero-screens {
  align-items: end;
  display: grid;
  gap: clamp(14px, 1.8vw, 24px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  justify-self: end;
  max-width: 660px;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.hero-screen {
  border: 1px solid rgba(255, 250, 243, 0.16);
  border-radius: clamp(28px, 3vw, 52px);
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.hero-screen img {
  background: #060912;
  height: auto;
  width: 100%;
}

.hero-primary {
  align-self: start;
}

.hero-secondary {
  margin-bottom: clamp(12px, 4vw, 54px);
}

.hero-caption {
  align-items: center;
  color: rgba(255, 250, 243, 0.7);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.94rem;
  font-weight: 850;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 46px);
}

.hero-caption span {
  border: 1px solid var(--line-dark);
  background: rgba(255, 250, 243, 0.07);
  min-height: 39px;
  padding: 10px 14px;
}

.product-band {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-intro {
  align-items: end;
  display: grid;
  gap: clamp(18px, 3vw, 56px);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  margin-bottom: clamp(32px, 5vw, 60px);
}

.product-band .eyebrow,
.sharing-band .eyebrow,
.trust-band .eyebrow,
.support-page .eyebrow,
.legal-page .eyebrow {
  color: #006f72;
}

.section-intro p:last-child,
.styles-head p,
.feature-list p,
.trust-copy p,
.screen-card span,
.faq p,
.document p,
.document li,
.support-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
}

.screen-gallery {
  align-items: start;
  display: grid;
  gap: clamp(14px, 2vw, 28px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-card {
  justify-self: center;
  margin: 0;
  max-width: 360px;
}

.screen-card img,
.sharing-screen img {
  background: #060912;
  border: 1px solid var(--line-light);
  border-radius: clamp(28px, 3vw, 50px);
  box-shadow: 0 32px 84px rgba(20, 17, 25, 0.23);
  height: auto;
  width: 100%;
}

.screen-card figcaption {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
}

.screen-card span {
  min-height: 3.4em;
}

.screen-card strong {
  font-size: 1.2rem;
  font-weight: 950;
}

.styles-band {
  background: #0a0d12;
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  padding: clamp(74px, 9vw, 124px) 0;
}

.styles-head {
  align-items: end;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  margin-bottom: clamp(30px, 5vw, 58px);
}

.styles-head p {
  color: rgba(255, 250, 243, 0.68);
}

.style-grid {
  display: grid;
  gap: clamp(10px, 1.4vw, 18px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.style-grid figure {
  border: 1px solid var(--line-dark);
  background: rgba(255, 250, 243, 0.055);
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.style-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  transition: transform 300ms ease;
}

.style-grid figcaption {
  background: rgba(5, 7, 13, 0.74);
  border-top: 1px solid var(--line-dark);
  bottom: 0;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  left: 0;
  padding: 13px 15px;
  position: absolute;
  right: 0;
}

.style-grid figure:hover img {
  transform: scale(1.04);
}

.sharing-band {
  background: var(--white);
  color: var(--ink);
  padding: clamp(74px, 9vw, 128px) 0;
}

.sharing-layout {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 92px);
  grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1fr);
}

.sharing-screen {
  justify-self: center;
  max-width: 520px;
}

.sharing-copy h2 {
  max-width: 690px;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: clamp(28px, 4vw, 46px);
}

.feature-list article {
  border-top: 1px solid var(--line-light);
  padding: 22px 0;
}

.feature-list h3,
.faq h2 {
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  line-height: 1.22;
  margin-bottom: 8px;
}

.feature-list p,
.faq p {
  margin-bottom: 0;
}

.trust-band {
  background: #dfead9;
  color: var(--ink);
  padding: clamp(72px, 9vw, 120px) 0;
}

.trust-grid {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
}

.trust-copy p {
  max-width: 630px;
}

.link-panel {
  border-top: 1px solid var(--line-light);
  display: grid;
}

.link-panel a {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 16px 0;
  text-decoration: none;
}

.link-panel strong {
  font-size: 1.18rem;
  font-weight: 950;
}

.link-panel span {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 250, 243, 0.68);
  min-height: 100px;
}

.support-hero {
  align-items: center;
  color: var(--ink);
  display: grid;
  gap: clamp(24px, 5vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(230px, 420px);
  min-height: 67svh;
  padding: clamp(70px, 9vw, 120px) 0 clamp(68px, 8vw, 100px);
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.support-hero h1,
.document h1 {
  font-size: clamp(2.7rem, 6vw, 6.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.93;
  margin-bottom: 20px;
}

.support-hero img {
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: 0 32px 84px rgba(20, 17, 25, 0.22);
  justify-self: end;
  max-height: 470px;
  object-fit: cover;
}

.support-page .button.primary {
  background: var(--ink);
  color: var(--white);
}

.faq {
  color: var(--ink);
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 104px;
  width: min(1020px, calc(100% - 48px));
  margin: 0 auto;
}

.faq article {
  border-top: 1px solid var(--line-light);
  padding-top: 20px;
}

.document {
  color: var(--ink);
  min-height: calc(100svh - 188px);
  padding: clamp(72px, 10vw, 130px) 0 110px;
  width: min(820px, calc(100% - 48px));
}

.document .updated {
  color: #006f72;
  font-size: 0.94rem;
  font-weight: 900;
  margin-bottom: 30px;
}

.document h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.18;
  margin: 42px 0 10px;
}

.document a,
.support-page a:not(.button) {
  color: #7e315d;
  font-weight: 900;
}

body.legal-page .site-footer,
body.support-page .site-footer {
  background: var(--night);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-layout,
  .section-intro,
  .styles-head,
  .sharing-layout,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .sharing-screen {
    justify-self: center;
    max-width: 440px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .section-shell,
  .support-hero,
  .faq {
    width: min(100% - 28px, 1200px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 110px;
  }

  .hero {
    margin-top: -110px;
    padding: 152px 0 58px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 20vw, 7.1rem);
  }

  .hero-lede {
    max-width: 470px;
  }

  .hero-screens {
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  .hero-secondary {
    display: none;
  }

  .screen-gallery,
  .style-grid,
  .faq,
  .support-hero {
    grid-template-columns: 1fr;
  }

  .style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-hero {
    min-height: auto;
  }

  .support-hero img {
    justify-self: stretch;
    max-height: 360px;
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
    padding: 22px 0;
  }
}

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

  .style-grid img {
    transition: none;
  }
}
