:root {
  color-scheme: light;
  --paper: #f2f4f0;
  --paper-soft: #e8ece6;
  --paper-bright: #fafbf8;
  --ink: #171917;
  --graphite: #2e312e;
  --muted: #666d67;
  --line: #cdd3cc;
  --line-dark: #aeb7af;
  --blue: #2f6fed;
  --blue-soft: #dce6fb;
  --orange: #ca6932;
  --orange-soft: #f1d9ca;
  --shadow: 0 28px 80px rgba(27, 32, 28, 0.14);
  --display: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  --utility: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  font-feature-settings: "palt" 1;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 50%;
  display: flex;
  width: min(1320px, calc(100% - 32px));
  min-height: 72px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(46, 49, 46, 0.13);
  border-radius: 20px;
  background: rgba(242, 244, 240, 0.88);
  box-shadow: 0 12px 36px rgba(27, 32, 28, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(18px) saturate(1.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(22, 25, 22, 0.16);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

.language-switcher summary {
  display: flex;
  min-height: 38px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 10px;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::before {
  color: var(--orange);
  content: "◎";
  font-size: 12px;
}

.language-switcher summary::after {
  content: "⌄";
  font-size: 11px;
  transition: transform 160ms ease;
}

.language-switcher[open] summary::after {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper-bright);
  box-shadow: 0 18px 48px rgba(27, 32, 28, 0.16);
  list-style: none;
}

.language-menu a {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 9px;
  text-decoration: none;
}

.language-menu a:hover {
  background: var(--paper-soft);
}

.language-menu a[aria-current="page"] {
  color: var(--ink);
  background: var(--orange-soft);
}

.language-menu a[aria-current="page"]::after {
  content: "•";
  color: var(--orange);
}

[id] {
  scroll-margin-top: 104px;
}

:lang(en) .hero h1 {
  letter-spacing: -0.065em;
}

:lang(zh-Hans),
:lang(zh-Hant) {
  line-break: strict;
}

:lang(ko) h1,
:lang(ko) h2,
:lang(ko) h3,
:lang(ko) p {
  word-break: keep-all;
}

.nav-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-link:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 900px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
  gap: 56px;
  align-items: center;
  padding: 160px max(48px, calc((100vw - 1320px) / 2)) 100px;
  background:
    linear-gradient(90deg, rgba(46, 49, 46, 0.04) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(rgba(46, 49, 46, 0.04) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 92px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, var(--line), transparent 92%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 690px;
  padding-bottom: 26px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 6.7vw, 108px);
  font-weight: 790;
  letter-spacing: -0.075em;
  line-height: 1.04;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0.03em;
  bottom: -0.1em;
  left: 0.05em;
  height: 0.08em;
  border-radius: 99px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 900ms 650ms cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-lead {
  margin: 42px 0 0;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.75;
}

.hero-note {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 22px;
}

.store-link {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px 22px;
  border: 1px solid var(--ink);
  border-radius: 16px;
  color: white;
  background: var(--ink);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(23, 25, 23, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-link:hover {
  background: #000;
  box-shadow: 0 16px 36px rgba(23, 25, 23, 0.22);
  transform: translateY(-2px);
}

.store-link svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-link span {
  display: grid;
  gap: 3px;
}

.store-link small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.store-link--compact {
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: none;
}

.platforms {
  color: var(--muted);
  font-family: var(--utility);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  align-items: center;
  justify-content: center;
}

.flow-mark--hero {
  position: absolute;
  z-index: -1;
  top: 16%;
  right: -27%;
  width: 134%;
  opacity: 0.3;
  transform: rotate(-4deg);
}

.flow-mark svg {
  width: 100%;
  overflow: visible;
}

.flow-line {
  fill: none;
  stroke: var(--graphite);
  stroke-dasharray: 740;
  stroke-dashoffset: 740;
  stroke-linecap: round;
  stroke-width: 5;
  animation: draw-flow 1.7s cubic-bezier(.2,.7,.2,1) forwards;
}

.flow-line--2 { animation-delay: 130ms; }
.flow-line--3 { animation-delay: 260ms; }

.time-grid rect {
  fill: rgba(46, 49, 46, 0.1);
  stroke: var(--graphite);
  stroke-width: 3;
}

.time-grid .time-grid-active {
  fill: var(--orange);
  stroke: var(--orange);
  animation: block-wake 750ms 1.5s ease both;
}

.phone-frame {
  position: relative;
  width: min(382px, 77%);
  padding: 12px;
  border: 2px solid rgba(17, 19, 17, 0.85);
  border-radius: 58px;
  background: #0a0b0a;
  box-shadow: 0 48px 100px rgba(30, 35, 30, 0.24), 0 10px 24px rgba(30, 35, 30, 0.16);
  transform: rotate(2.25deg);
}

.phone-frame::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 46px;
  content: "";
  pointer-events: none;
}

.phone-frame img {
  width: 100%;
  border-radius: 46px;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 23px;
  left: 50%;
  width: 30%;
  height: 27px;
  border-radius: 99px;
  background: #080908;
  transform: translateX(-50%);
}

.floating-candidate {
  position: absolute;
  z-index: 5;
  right: -3%;
  bottom: 16%;
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(47, 111, 237, 0.25);
  border-radius: 17px;
  background: rgba(250, 251, 248, 0.94);
  box-shadow: 0 18px 44px rgba(26, 31, 27, 0.17);
  backdrop-filter: blur(18px);
  animation: float-candidate 5s ease-in-out infinite;
}

.floating-candidate span:not(.candidate-pulse) {
  display: grid;
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.floating-candidate small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.floating-candidate strong {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  color: white;
  background: var(--blue);
  font-size: 18px;
}

.candidate-pulse {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px var(--orange-soft);
}

.quiet-statement {
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: 100px 24px;
  color: white;
  background: var(--graphite);
  text-align: center;
}

.quiet-statement p {
  max-width: 920px;
  margin: 0;
  font-size: clamp(30px, 4.7vw, 64px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1.42;
}

.quiet-statement strong {
  color: #b7ccfa;
  font-weight: 720;
}

.mobile-only {
  display: none;
}

.section {
  width: min(1220px, calc(100% - 64px));
  margin: 0 auto;
  padding: 150px 0;
}

.section-heading {
  display: grid;
  max-width: 740px;
  margin-bottom: 88px;
  grid-template-columns: 1fr;
}

.section-heading h2,
.principle h2,
.organize h2,
.desktop-section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(45px, 5.5vw, 78px);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 1.18;
}

.section-heading > p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 68px);
  list-style: none;
}

.process-step--offset {
  padding-top: 96px;
}

.step-copy {
  display: flex;
  min-height: 190px;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
}

.step-copy h3 {
  margin: 2px 0 13px;
  font-size: 21px;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.step-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.screen-card {
  overflow: hidden;
  border: 1px solid rgba(69, 77, 70, 0.16);
  background: #fdfdfb;
  box-shadow: var(--shadow);
}

.screen-card--phone {
  border-radius: 34px;
}

.screen-card--phone img {
  width: 100%;
}

.principle {
  display: grid;
  width: min(1320px, calc(100% - 64px));
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.principle-copy {
  max-width: 500px;
}

.principle-copy .principle-lead {
  margin: 34px 0 20px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.8;
}

.principle-copy > p:last-child {
  color: var(--muted);
  font-size: 15px;
}

.separation-diagram {
  position: relative;
  display: grid;
  min-height: 480px;
  grid-template-columns: 1fr 85px 0.9fr;
  align-items: center;
}

.note-sheet,
.schedule-sheet {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-bright);
  box-shadow: 0 22px 55px rgba(33, 39, 34, 0.1);
}

.note-sheet {
  z-index: 2;
  transform: rotate(-2deg);
}

.note-sheet::before {
  position: absolute;
  z-index: -1;
  inset: 9px -9px -9px 9px;
  border: 1px solid var(--line);
  border-radius: inherit;
  background: var(--paper-soft);
  content: "";
}

.diagram-label {
  color: var(--muted);
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.note-sheet p {
  margin: 50px 0 56px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.75;
}

.unchanged-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.unchanged-mark::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5e936c;
  content: "";
}

.diagram-connector {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 9px;
}

.diagram-connector span {
  height: 1px;
  background: var(--orange);
  transform: scaleX(1.35);
}

.schedule-sheet {
  background: var(--graphite);
  color: white;
  transform: rotate(2deg);
}

.schedule-sheet .diagram-label {
  color: #b7beb8;
}

.schedule-sheet dl {
  display: grid;
  margin: 30px 0 0;
  gap: 0;
}

.schedule-sheet dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.schedule-sheet dt {
  color: #aeb6af;
  font-size: 11px;
}

.schedule-sheet dd {
  margin: 0;
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 700;
}

.blue-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #76a0ff;
}

.organize {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1fr);
  gap: clamp(70px, 11vw, 170px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.organize-visual {
  position: relative;
  max-width: 480px;
}

.screen-card--organize {
  overflow: hidden;
  border-radius: 40px;
  transform: rotate(-2deg);
}

.organize-caption {
  position: absolute;
  right: -50px;
  bottom: 15%;
  display: grid;
  min-width: 230px;
  gap: 9px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(250, 251, 248, 0.94);
  box-shadow: 0 18px 40px rgba(32, 38, 33, 0.16);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.caption-branch {
  padding-left: 18px;
  color: var(--blue);
}

.organize-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  display: grid;
  margin: 45px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 650;
}

.feature-list span {
  color: var(--orange);
  font-family: var(--utility);
  font-size: 10px;
}

.desktop-section {
  overflow: hidden;
  padding: 150px max(32px, calc((100vw - 1380px) / 2)) 72px;
  color: white;
  background: #1d201e;
}

.desktop-copy {
  display: grid;
  margin-bottom: 80px;
  grid-template-columns: 1.2fr 0.7fr;
  column-gap: 90px;
}

.desktop-copy .eyebrow {
  grid-column: 1 / -1;
  color: #9da69e;
}

.desktop-copy h2 {
  max-width: 800px;
}

.desktop-copy > p:last-child {
  align-self: end;
  margin: 0 0 8px;
  color: #b8c0b9;
  font-size: 15px;
}

.mac-frame {
  position: relative;
  overflow: hidden;
  padding-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px 20px 10px 10px;
  background: #0e100f;
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.45);
}

.mac-frame img {
  width: 100%;
  height: auto;
}

.mac-toolbar {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  height: 38px;
  align-items: center;
  gap: 8px;
  padding-left: 14px;
}

.mac-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e46a5f;
}

.mac-toolbar span:nth-child(2) { background: #e4b84e; }
.mac-toolbar span:nth-child(3) { background: #59b862; }

.desktop-platform-note {
  margin: 44px 0 0;
  color: #9da69e;
  font-family: var(--utility);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
}

.privacy-section {
  border-bottom: 1px solid var(--line);
}

.section-heading--compact {
  margin-bottom: 70px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.privacy-grid article {
  min-height: 280px;
  padding: 36px;
  background: var(--paper);
}

.privacy-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: var(--blue);
  font-family: var(--utility);
  font-size: 18px;
}

.privacy-grid h3 {
  margin: 0 0 14px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.privacy-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.privacy-footnote {
  max-width: 770px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.language-landing {
  border-bottom: 1px solid var(--line);
}

.language-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  list-style: none;
}

.language-grid li {
  display: grid;
  min-height: 150px;
  padding: 28px;
  align-content: space-between;
  gap: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper-bright);
}

.language-grid strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.language-grid span {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.language-grid a {
  color: var(--blue);
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.faq {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 90px;
}

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

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

.faq summary {
  position: relative;
  padding: 26px 52px 26px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 680;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  content: "+";
  font-family: var(--utility);
  font-size: 13px;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq details p {
  max-width: 620px;
  margin: 0;
  padding: 0 50px 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 720px;
  overflow: hidden;
  place-items: center;
  padding: 120px 24px;
  color: white;
  background: var(--graphite);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(47, 111, 237, 0.18), transparent 35%);
  content: "";
}

.final-cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.final-cta-content > img {
  margin-bottom: 36px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.final-cta .eyebrow {
  color: #aeb6af;
}

.final-cta h2 {
  font-size: clamp(52px, 7vw, 94px);
}

.final-cta-content > p:not(.eyebrow) {
  margin: 28px 0 36px;
  color: #bdc4be;
}

.store-link--light {
  border-color: white;
  color: var(--ink);
  background: white;
}

.store-link--light:hover {
  color: var(--ink);
  background: #f1f4f0;
}

.final-flow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1100px, 120vw);
  height: 420px;
  opacity: 0.12;
  transform: translate(-50%, -50%);
}

.final-flow > span {
  position: absolute;
  top: calc(24% + var(--i, 0) * 80px);
  left: 0;
  width: 58%;
  height: 2px;
  border-radius: 2px;
  background: white;
}

.final-flow > span:nth-child(1) { --i: 0; }
.final-flow > span:nth-child(2) { --i: 1; }
.final-flow > span:nth-child(3) { --i: 2; }

.final-flow i {
  position: relative;
  top: 80px;
  left: 65%;
  display: inline-block;
  width: 70px;
  height: 70px;
  margin: 5px;
  border: 2px solid white;
  border-radius: 18px;
}

.final-flow i:last-child {
  border-color: var(--orange);
  background: var(--orange);
}

footer {
  display: grid;
  min-height: 150px;
  padding: 44px max(32px, calc((100vw - 1320px) / 2));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  background: #171917;
  color: #b9c0ba;
}

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

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 12px;
  text-decoration: none;
}

footer > p {
  justify-self: end;
  margin: 0;
  font-family: var(--utility);
  font-size: 10px;
}

@keyframes draw-flow {
  to { stroke-dashoffset: 0; }
}

@keyframes block-wake {
  0% { opacity: 0; transform: scale(0.75); transform-origin: center; }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes underline-in {
  to { transform: scaleX(1); }
}

@keyframes float-candidate {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 1050px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.78fr;
    gap: 30px;
    padding: 150px 32px 90px;
  }

  .hero h1 {
    font-size: clamp(58px, 8vw, 82px);
  }

  .hero-visual {
    min-height: 610px;
  }

  .phone-frame {
    width: 92%;
  }

  .floating-candidate {
    right: -9%;
  }

  .process-list {
    gap: 24px;
  }

  .step-copy {
    min-height: 225px;
  }

  .separation-diagram {
    grid-template-columns: 1fr 44px 0.9fr;
  }

  .note-sheet,
  .schedule-sheet {
    padding: 24px;
  }

  .organize {
    gap: 74px;
  }

  .organize-caption {
    right: -20px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 60px;
    padding: 0 10px;
    border-radius: 16px;
  }

  .brand {
    gap: 9px;
    font-size: 19px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .nav-link {
    display: none;
  }

  .site-header nav {
    gap: 2px;
  }

  .language-switcher summary {
    width: 42px;
    padding: 6px;
    justify-content: center;
    font-size: 0;
  }

  .language-switcher summary::before {
    font-size: 16px;
  }

  .language-switcher summary::after {
    display: none;
  }

  .language-menu {
    right: 0;
  }

  .store-link--compact {
    min-height: 38px;
    padding: 8px 12px;
  }

  .hero {
    display: block;
    padding: 125px 20px 80px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 70px);
    letter-spacing: -0.075em;
  }

  .hero-lead {
    margin-top: 34px;
    font-size: 18px;
  }

  .hero-note {
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 590px;
  }

  .phone-frame {
    width: min(86%, 350px);
    border-radius: 51px;
    transform: rotate(1deg);
  }

  .phone-frame img,
  .phone-frame::after {
    border-radius: 40px;
  }

  .flow-mark--hero {
    top: 10%;
    right: -42%;
    width: 150%;
  }

  .floating-candidate {
    right: 1%;
    bottom: 9%;
    min-width: 205px;
  }

  .quiet-statement {
    min-height: 380px;
    padding: 82px 24px;
  }

  .quiet-statement p {
    font-size: clamp(28px, 9vw, 43px);
  }

  .mobile-only {
    display: block;
  }

  .section {
    width: calc(100% - 40px);
    padding: 100px 0;
  }

  .section-heading {
    margin-bottom: 58px;
  }

  .section-heading h2,
  .principle h2,
  .organize h2,
  .desktop-section h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .process-list {
    display: block;
  }

  .process-step {
    display: grid;
    margin-bottom: 80px;
    grid-template-columns: 1fr;
  }

  .process-step:last-child {
    margin-bottom: 0;
  }

  .process-step--offset {
    padding-top: 0;
  }

  .step-copy {
    min-height: auto;
    margin-bottom: 30px;
  }

  .screen-card--phone {
    width: 88%;
    margin: 0 auto;
  }

  .process-step:nth-child(2) .screen-card--phone {
    margin-right: 0;
  }

  .process-step:nth-child(3) .screen-card--phone {
    margin-left: 0;
  }

  .principle,
  .organize,
  .faq {
    display: grid;
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .principle-copy,
  .organize-copy {
    max-width: none;
  }

  .separation-diagram {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .diagram-connector {
    width: 1px;
    height: 48px;
    margin: -3px auto;
    gap: 7px;
  }

  .diagram-connector span {
    width: 1px;
    height: 10px;
    transform: none;
  }

  .note-sheet,
  .schedule-sheet {
    transform: none;
  }

  .organize-visual {
    width: 82%;
    margin: 0 auto;
  }

  .organize-copy {
    order: -1;
  }

  .organize-caption {
    right: -18%;
    min-width: 200px;
  }

  .desktop-section {
    padding: 100px 20px 58px;
  }

  .desktop-copy {
    display: block;
    margin-bottom: 55px;
  }

  .desktop-copy > p:last-child {
    margin-top: 28px;
  }

  .mac-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .mac-frame img {
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
    height: calc(100% - 38px);
    max-width: none;
    object-fit: cover;
    object-position: 56% center;
  }

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

  .privacy-grid article {
    min-height: 230px;
  }

  .privacy-icon {
    margin-bottom: 30px;
  }

  .faq .section-heading {
    margin-bottom: 0;
  }

  .final-cta {
    min-height: 650px;
  }

  .final-flow {
    width: 170vw;
    opacity: 0.08;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer > p {
    display: none;
  }

  .footer-links {
    gap: 18px;
  }
}

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

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

  .flow-line {
    stroke-dashoffset: 0;
  }

  .hero h1 em::after {
    transform: scaleX(1);
  }
}
