:root {
  --canvas: #f8f7f4;
  --surface: #ffffff;
  --ink: #111214;
  --muted: #696967;
  --orange: #faa315;
  --orange-deep: #7b4700;
  --line: rgba(17, 18, 20, 0.1);
  --shadow: 0 30px 80px rgba(56, 38, 12, 0.16), 0 8px 24px rgba(56, 38, 12, 0.08);
  --radius: 28px;
  --shell: 1240px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
summary {
  font: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 247, 244, 0.84);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: color-mix(in srgb, var(--orange) 24%, transparent);
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-footer nav {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.main-nav a,
.site-footer nav a,
.mobile-nav a {
  color: #383936;
  font-size: 15px;
  font-weight: 590;
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--orange-deep);
}

.header-cta {
  justify-self: end;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-toggle {
  justify-self: end;
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.language-toggle a {
  display: inline-flex;
  min-width: 38px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-toggle a:hover:not(.is-active) {
  background: rgba(250, 163, 21, 0.1);
  color: var(--orange-deep);
}

.language-toggle a.is-active {
  background: #222320;
  box-shadow: 0 2px 8px rgba(17, 18, 20, 0.16);
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 18px;
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(250, 163, 21, 0.24);
  color: var(--orange-deep);
  font-size: 16px;
  font-weight: 740;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ffad20;
  box-shadow: 0 16px 36px rgba(250, 163, 21, 0.3);
}

.button:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible,
.site-footer a:focus-visible,
.text-link:focus-visible,
.language-toggle a:focus-visible,
.menu-button:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--orange) 72%, white);
  outline-offset: 4px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 46px;
  padding-inline: 20px;
  border-radius: 14px;
  font-size: 14px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 790px;
  padding: 154px 0 86px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 7vw, 110px);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(64px, 6.7vw, 96px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 0.91;
}

.hero h1 span {
  white-space: nowrap;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #333432;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.privacy-note svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-product {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.sun-disc {
  position: absolute;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff3dc;
  box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.9);
}

.phone {
  position: relative;
  overflow: hidden;
  border: 9px solid #181818;
  border-radius: 50px;
  background: #181818;
  box-shadow: var(--shadow);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 92px;
  height: 26px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-hero {
  z-index: 2;
  width: 320px;
  height: 696px;
  transform: rotate(2deg);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1.5px solid rgba(250, 163, 21, 0.55);
  border-radius: 50%;
}

.orbit-one {
  width: 500px;
  height: 235px;
  transform: rotate(-18deg);
}

.orbit-two {
  width: 430px;
  height: 560px;
  transform: rotate(34deg);
}

.how {
  position: relative;
  padding: 120px 0 0;
  background: var(--canvas);
  overflow: hidden;
}

.section-heading {
  max-width: 820px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(45px, 5.4vw, 76px);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p,
.privacy-copy > p {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 76px 0 0;
  padding: 0;
  list-style: none;
}

.steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 21px;
  right: 21px;
  height: 2px;
  background: var(--orange);
}

.step {
  position: relative;
  padding-right: 48px;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--canvas);
  color: var(--orange-deep);
  font-size: 18px;
  font-weight: 760;
}

.step h3 {
  margin-bottom: 5px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.step p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-stage {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(560px, 1.25fr);
  align-items: center;
  gap: 74px;
  margin-top: 92px;
  padding-top: 70px;
}

.feature-copy {
  align-self: center;
}

.feature-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(35px, 4vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.feature-copy > p {
  color: var(--muted);
  font-size: 19px;
}

.live-activity {
  display: flex;
  width: min(100%, 330px);
  min-height: 64px;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  color: #fff;
  font-size: 13px;
}

.live-activity strong {
  margin-right: 4px;
  color: var(--orange);
  font-size: 18px;
}

.live-egg {
  width: 25px;
  height: 34px;
  border-radius: 52% 52% 48% 48% / 62% 62% 38% 38%;
  background: linear-gradient(135deg, #fff 18%, #ded8cd 100%);
}

.live-ring {
  width: 28px;
  height: 28px;
  margin-left: auto;
  border: 3px solid rgba(250, 163, 21, 0.35);
  border-top-color: var(--orange);
  border-radius: 50%;
}

.phone-pair {
  position: relative;
  min-height: 610px;
}

.phone-secondary,
.phone-tertiary {
  position: absolute;
  width: 250px;
  height: 543px;
  border-width: 8px;
  border-radius: 44px;
}

.phone-secondary {
  z-index: 2;
  left: 10%;
  top: 2%;
  transform: rotate(-4deg);
}

.phone-tertiary {
  right: 5%;
  bottom: -2%;
  transform: rotate(5deg);
}

.phone-secondary .phone-speaker,
.phone-tertiary .phone-speaker {
  top: 11px;
  width: 78px;
  height: 23px;
}

.phone-secondary img,
.phone-tertiary img {
  border-radius: 36px;
}

.privacy {
  padding: 120px 0;
  background: var(--canvas);
  overflow: hidden;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 90px;
}

.privacy-copy h2 {
  max-width: 760px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--orange-deep);
  font-size: 16px;
  font-weight: 720;
}

.privacy-visual {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
}

.privacy-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 3px solid rgba(250, 163, 21, 0.24);
  border-top-color: var(--orange);
  border-radius: 50%;
}

.privacy-ring::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  right: 31px;
  bottom: 67px;
  border: 5px solid var(--canvas);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
}

.privacy-egg {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 210px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(61, 40, 5, 0.1);
}

.privacy-egg svg {
  width: 92px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.privacy-egg rect {
  fill: rgba(250, 163, 21, 0.18);
}

.privacy-visual > span {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.faq {
  padding: 112px 0;
  background: var(--canvas);
}

.faq-shell {
  display: block;
}

.faq h2 {
  margin-bottom: 54px;
  font-size: clamp(42px, 4vw, 60px);
  text-align: center;
}

.accordion {
  width: min(100%, 820px);
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  font-size: 19px;
  font-weight: 680;
  letter-spacing: -0.02em;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before,
summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

summary::after {
  transform: rotate(90deg);
}

details[open] summary::after {
  transform: rotate(0deg);
}

details p {
  max-width: 710px;
  margin: -8px 54px 26px 0;
  color: var(--muted);
}

.download {
  padding: 44px 0 110px;
  background: var(--canvas);
}

.download-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 180px;
  padding: 34px 42px;
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
}

.download-mark {
  width: 70px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-mark circle {
  fill: rgba(250, 163, 21, 0.22);
}

.download-panel h2 {
  margin-bottom: 4px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
}

.download-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.button-disabled,
.button-disabled:hover {
  cursor: default;
  transform: none;
  box-shadow: none;
  background: #f6c776;
  color: #6d4b17;
}

.site-footer {
  background: var(--canvas);
}

.footer-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand-footer {
  font-size: 18px;
}

.brand-footer .brand-mark {
  width: 26px;
  height: 26px;
}

.site-footer p {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: 150px 0 100px;
}

.legal-shell {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}

.legal-kicker {
  margin-bottom: 12px;
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-main h1 {
  margin-bottom: 32px;
  font-size: clamp(48px, 7vw, 80px);
  hyphens: auto;
  overflow-wrap: break-word;
}

.legal-main h2 {
  margin: 56px 0 14px;
  font-size: clamp(27px, 3vw, 36px);
  letter-spacing: -0.035em;
}

.legal-main h3 {
  margin: 30px 0 10px;
  font-size: 20px;
}

.legal-main p,
.legal-main li,
.legal-main address {
  color: #41423f;
}

.legal-main address {
  font-style: normal;
}

.legal-intro {
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.6;
}

.translation-note {
  margin: -24px 0 48px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 15px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.support-card {
  margin: 46px 0 8px;
  padding: 28px;
  border-radius: 22px;
  background: #fff3dc;
}

.support-card h2 {
  margin-top: 0;
}

.support-card p {
  margin-bottom: 22px;
}

.legal-main a {
  color: var(--orange-deep);
}

.legal-notice {
  margin: 0 0 48px;
  padding: 20px 22px;
  border-left: 4px solid var(--orange);
  border-radius: 0 16px 16px 0;
  background: #fff4df;
}

.legal-notice strong {
  color: var(--ink);
}

.placeholder {
  display: inline;
  padding: 2px 5px;
  border-radius: 5px;
  background: #ffdfaa;
  color: #6f3e00;
  font-weight: 700;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
  }

  .menu-button span:not(.sr-only) {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 82px 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px;
    background: rgba(248, 247, 244, 0.98);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 20px;
  }

  .hero-product {
    min-height: 540px;
  }

  .phone-hero {
    width: 240px;
    height: 522px;
  }

  .sun-disc {
    width: 420px;
  }

  .feature-stage {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
  }

  .phone-secondary,
  .phone-tertiary {
    width: 205px;
    height: 446px;
  }

  .phone-pair {
    min-height: 530px;
  }

  .privacy-grid {
    gap: 20px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .download-panel {
    grid-template-columns: auto 1fr;
  }

  .download-panel .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .shell,
  .legal-shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .header-inner {
    min-height: 72px;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .mobile-nav {
    inset-top: 72px;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-product {
    min-height: 500px;
    margin-top: 24px;
  }

  .sun-disc {
    width: 390px;
  }

  .phone-hero {
    width: 228px;
    height: 496px;
  }

  .how,
  .privacy,
  .faq {
    padding-top: 84px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 52px;
  }

  .steps::before {
    top: 24px;
    right: auto;
    bottom: 54px;
    left: 23px;
    width: 2px;
    height: auto;
  }

  .step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 0 0 38px;
  }

  .step-number {
    margin: 0;
  }

  .step h3 {
    margin-top: 9px;
  }

  .feature-stage {
    min-height: 950px;
    grid-template-columns: 1fr;
    align-items: start;
    margin-top: 34px;
    padding-top: 56px;
  }

  .phone-pair {
    min-height: 590px;
  }

  .phone-secondary,
  .phone-tertiary {
    width: 214px;
    height: 465px;
  }

  .phone-secondary {
    left: 3%;
  }

  .phone-tertiary {
    right: 3%;
    bottom: 0;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .privacy-visual {
    min-height: 370px;
  }

  .privacy-ring {
    width: 320px;
    height: 320px;
  }

  .faq {
    padding-bottom: 80px;
  }

  summary {
    font-size: 17px;
  }

  .download {
    padding-bottom: 80px;
  }

  .download-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 26px;
  }

  .download-panel .button {
    grid-column: 1;
    justify-self: stretch;
  }

  .download-mark {
    width: 54px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 38px 0;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 12px 24px;
  }

  .site-footer p {
    justify-self: start;
  }

  .legal-main {
    padding-top: 125px;
  }

  .legal-main h1 {
    font-size: clamp(36px, 11vw, 48px);
  }
}

@media (max-width: 420px) {
  .phone-secondary,
  .phone-tertiary {
    width: 190px;
    height: 413px;
  }

  .phone-pair {
    min-height: 520px;
  }

  .privacy-note {
    align-items: flex-start;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
