:root {
  color-scheme: light;
  --bg: #f4f7fc;
  --surface: #ffffff;
  --ink: #05060a;
  --ink-soft: #161a23;
  --muted: #656e7d;
  --line: #d7dfeb;
  --line-strong: #c4cfdf;
  --blue: #2454e8;
  --blue-strong: #1742c8;
  --blue-soft: #eef4ff;
  --green: #0d8f5f;
  --shadow: 0 26px 80px rgba(9, 18, 36, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(215, 223, 235, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 12px;
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: #ffffff;
  font-size: 17px;
  box-shadow: inset 0 -6px 0 var(--blue);
}

.nav-links {
  gap: 20px;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.nav-links .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
}

main {
  overflow: hidden;
}

.hero-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 36%),
    #05060a;
  color: #ffffff;
}

.hero-inner {
  display: grid;
  max-width: 1180px;
  min-height: calc(100vh - 69px);
  align-items: center;
  gap: clamp(22px, 3vw, 36px);
  grid-template-columns: 1fr;
  margin: 0 auto;
  padding: clamp(42px, 5vw, 72px) 28px clamp(48px, 5vw, 78px);
}

.hero-copy {
  min-width: 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  color: #8fb0ff;
}

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

h1 {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 22px;
  margin-left: auto;
  font-size: clamp(58px, 8vw, 108px);
  line-height: 0.93;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.14;
}

p,
li {
  font-size: 17px;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #c6cedb;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.42;
}

.hero-after {
  display: grid;
  justify-items: center;
  text-align: center;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(9, 18, 36, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(9, 18, 36, 0.16);
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--blue-strong);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.demo-sticker {
  width: 100%;
  min-width: 0;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  touch-action: pan-y;
}

.sticker-embed {
  display: block;
  width: 100%;
  height: clamp(520px, 64vh, 780px);
  aspect-ratio: 4 / 3;
  border: 0;
  background: #05060a;
  pointer-events: none;
  touch-action: pan-y;
}

.metrics-strip,
.section,
.final-cta,
.site-footer,
.shell {
  max-width: 1130px;
  margin: 0 auto;
  padding-right: 28px;
  padding-left: 28px;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -38px;
  padding-bottom: 54px;
}

.metrics-strip div {
  min-height: 148px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(9, 18, 36, 0.11);
}

.metrics-strip strong,
.metrics-strip span {
  display: block;
}

.metrics-strip strong {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.metrics-strip span {
  max-width: 280px;
}

.metrics-strip span,
.process-grid p,
.feature-stack p,
.price-card p,
.faq-list p,
.control-list p,
.section-heading p,
.statement-panel p,
.muted {
  color: var(--muted);
}

.section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading.wide {
  max-width: 900px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid article,
.price-card,
.feature-stack article {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(9, 18, 36, 0.08);
}

.process-grid article {
  min-height: 258px;
  padding: 28px;
}

.process-grid span,
.plan-name {
  display: inline-flex;
  min-width: 42px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.statement-panel {
  padding: clamp(30px, 4vw, 48px);
  border-radius: 32px;
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 26px 80px rgba(9, 18, 36, 0.22);
}

.statement-panel .eyebrow {
  color: #9fb8ff;
}

.statement-panel p {
  color: #cbd3df;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-stack article {
  padding: 24px 26px;
}

.control-section {
  padding-top: 44px;
}

.control-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: clamp(30px, 4vw, 46px);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.control-list {
  display: grid;
  gap: 14px;
}

.control-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8faff;
}

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

.faq-section {
  padding-top: 48px;
}

.faq-shell {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 14px;
  margin: 0 auto;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #f8faff;
}

.faq-list details[open] {
  border-color: rgba(36, 84, 232, 0.35);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(36, 84, 232, 0.1);
}

.faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 950;
  list-style: none;
}

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

.faq-list summary b {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
}

.faq-list summary b::before,
.faq-list summary b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: #ffffff;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary b::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 22px;
  font-size: 17px;
}

.final-cta {
  margin-top: 20px;
  margin-bottom: 70px;
  padding-top: 54px;
  padding-bottom: 54px;
  border-radius: 34px;
  background: var(--ink);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 28px 80px rgba(5, 7, 13, 0.22);
}

.final-cta h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta .eyebrow {
  color: #9fb8ff;
}

.final-cta .button.primary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 430px;
  margin: 6px 0 0;
  color: var(--muted);
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.shell {
  padding-top: 56px;
  padding-bottom: 80px;
}

.document {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(28, 43, 71, 0.08);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.back-link::before {
  content: "<";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f8faff;
  color: var(--ink);
}

.back-link:hover {
  color: var(--blue);
}

.document h1 {
  font-size: 48px;
}

.document h2 {
  margin-top: 30px;
  font-size: 24px;
}

.document ul {
  padding-left: 22px;
}

.document a {
  color: var(--blue);
  font-weight: 850;
}

.auth-confirm-page {
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(36, 84, 232, 0.07), transparent 42%),
    #f6f8fc;
}

.auth-confirm-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
}

.auth-confirm-card {
  width: min(100%, 620px);
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(20, 39, 83, 0.14);
  text-align: center;
}

.auth-confirm-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.auth-confirm-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  font-size: 17px;
}

.confirm-symbol {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  margin: 40px auto 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
}

.confirm-symbol span {
  display: block;
}

.confirm-symbol.is-loading span {
  width: 34px;
  height: 34px;
  border: 4px solid rgba(36, 84, 232, 0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: confirm-spin 800ms linear infinite;
}

.confirm-symbol.is-success {
  background: #e8f8ef;
  color: var(--green);
}

.confirm-symbol.is-success span {
  width: 34px;
  height: 18px;
  border-bottom: 5px solid currentColor;
  border-left: 5px solid currentColor;
  transform: translateY(-3px) rotate(-45deg);
}

.confirm-symbol.is-error {
  background: #fff0ee;
  color: #b42318;
}

.confirm-symbol.is-error span::before,
.confirm-symbol.is-error span::after {
  position: absolute;
  top: 39px;
  left: 24px;
  width: 34px;
  height: 5px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.confirm-symbol.is-error span::after {
  transform: rotate(-45deg);
}

.auth-confirm-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.auth-confirm-card h1 {
  max-width: 520px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(38px, 7vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.auth-confirm-body {
  max-width: 470px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.confirm-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.confirm-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
}

.confirm-status.is-loading .confirm-status-dot {
  animation: pulse 900ms ease-in-out infinite alternate;
}

.confirm-status.is-success {
  border-color: rgba(13, 143, 95, 0.22);
  background: #e8f8ef;
  color: var(--green);
}

.confirm-status.is-error {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff0ee;
  color: #b42318;
}

.auth-confirm-footnote {
  max-width: 450px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.reset-password-card {
  text-align: left;
}

.reset-password-card .auth-confirm-brand,
.reset-password-card .auth-confirm-kicker,
.reset-password-card h1,
.reset-password-card .auth-confirm-body,
.reset-password-card .auth-confirm-footnote {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.reset-password-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.reset-password-form[hidden] {
  display: none;
}

.auth-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.auth-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  outline: none;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  font-weight: 700;
}

.auth-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 84, 232, 0.13);
}

.password-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: -2px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  list-style: none;
}

.password-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.password-checklist li span {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
}

.password-checklist li.is-met {
  color: var(--green);
}

.password-checklist li.is-met span {
  border-color: var(--green);
  background: var(--green);
}

.password-checklist li.is-met span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
  transform: rotate(-45deg);
}

.password-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.password-note.is-error {
  color: #b42318;
  font-weight: 800;
}

.reset-form-error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(180, 35, 24, 0.2);
  border-radius: 12px;
  background: #fff0ee;
  color: #b42318;
  font-size: 14px;
  font-weight: 800;
}

.reset-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.reset-submit:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

@keyframes confirm-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  from {
    opacity: 0.35;
    transform: scale(0.82);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
  }

  .hero-copy {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }

  .lead {
    margin-right: auto;
    margin-left: auto;
  }

  .actions {
    justify-content: center;
  }

  .sticker-embed {
    height: clamp(430px, 58vh, 620px);
  }

  .metrics-strip,
  .process-grid,
  .split-section,
  .control-card {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: auto;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 560px) {
  .auth-confirm-shell {
    padding: 22px 14px;
  }

  .auth-confirm-card {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .confirm-symbol {
    margin-top: 34px;
  }

  .auth-confirm-card h1 {
    font-size: 38px;
  }

  .auth-confirm-body {
    font-size: 16px;
  }

  .password-checklist {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 14px 18px;
  }

  .hero-inner,
  .metrics-strip,
  .section,
  .final-cta,
  .site-footer,
  .shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-inner {
    width: 100%;
    max-width: 100vw;
    padding-top: 28px;
    padding-bottom: 40px;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
    margin-right: auto;
    margin-left: auto;
  }

  .demo-sticker {
    width: 100%;
    max-width: 100vw;
    margin-right: auto;
    margin-left: auto;
    touch-action: pan-y;
  }

  h1 {
    max-width: min(360px, 100%);
    margin-right: auto;
    margin-left: auto;
    font-size: 43px;
    line-height: 0.98;
    overflow-wrap: normal;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    max-width: min(304px, 100%);
    font-size: 18px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .demo-sticker {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  }

  .sticker-embed {
    height: clamp(360px, 58vh, 520px);
    aspect-ratio: auto;
    pointer-events: none;
    touch-action: pan-y;
  }

  .metrics-strip {
    margin-top: 0;
    padding-top: 22px;
  }

  .metrics-strip div,
  .process-grid article,
  .price-card,
  .feature-stack article,
  .control-list p {
    border-radius: 22px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .statement-panel,
  .control-card,
  .faq-shell,
  .final-cta {
    border-radius: 26px;
  }

  .faq-list summary {
    align-items: flex-start;
    font-size: 18px;
  }

  .document {
    padding: 24px;
  }

  .document h1 {
    font-size: 38px;
  }
}

/* Home page */

.home-page {
  --home-max: 1480px;
  background: #ffffff;
  color: #0a0b10;
}

.home-page main {
  overflow: hidden;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e8e9ed;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.home-header-inner {
  display: grid;
  max-width: var(--home-max);
  min-height: 84px;
  align-items: center;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  padding: 12px 32px;
}

.home-brand,
.footer-brand {
  display: flex;
  align-items: center;
}

.home-brand {
  gap: 12px;
  color: #0a0b10;
  font-size: 21px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.download-icon {
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.home-brand-mark,
.footer-brand-mark,
.download-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: inset 0 -6px 0 var(--blue);
}

.home-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 22px;
}

.footer-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 18px;
}

.home-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.home-nav a,
.home-footer a {
  color: #24262c;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.home-nav a:hover,
.home-footer a:hover,
.plain-link:hover {
  color: #174ae4;
}

.header-store-link,
.store-badge-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.app-store-button {
  min-height: 52px;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 11px;
  background: #05060a;
  color: #ffffff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 12px 22px rgba(8, 11, 24, 0.12);
  text-decoration: none;
}

.app-store-button:hover {
  background: #11131a;
  color: #ffffff;
}

.app-store-button span:last-child {
  display: grid;
  gap: 1px;
}

.app-store-button small,
.app-store-button strong {
  display: block;
  letter-spacing: 0;
}

.app-store-button small {
  font-size: 10px;
  font-weight: 750;
}

.app-store-button strong {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.app-store-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue);
  font-size: 16px;
  font-weight: 950;
}

.home-hero {
  background: #ffffff;
}

.home-hero-inner {
  display: grid;
  width: 100%;
  max-width: var(--home-max);
  min-height: min(790px, calc(100vh - 84px));
  align-items: center;
  gap: clamp(52px, 6vw, 108px);
  grid-template-columns: minmax(390px, 0.83fr) minmax(540px, 1.17fr);
  margin: 0 auto;
  padding: 72px 32px 82px;
}

.home-hero-copy {
  min-width: 0;
}

.home-kicker {
  margin: 0 0 16px;
  color: #174ae4;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 650px;
  margin: 0;
  color: #090a0e;
  font-size: clamp(54px, 5.5vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero h1 strong,
.home-hero h1 span {
  display: block;
}

.home-hero h1 strong {
  margin-bottom: 20px;
  font-size: 0.62em;
  line-height: 1;
}

.home-hero h1 span {
  font-weight: 500;
}

.home-lead {
  max-width: 630px;
  margin: 32px 0 0;
  color: #65676f;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.store-badge-link {
  min-width: 190px;
}

.plain-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  color: #17181d;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.plain-link span {
  color: #174ae4;
  font-size: 20px;
}

.hero-demo {
  position: relative;
  min-width: 0;
  padding: clamp(12px, 1.4vw, 20px);
  border: 1px solid #dbe3f4;
  border-radius: 8px;
  background: #eef4ff;
  box-shadow: 0 34px 90px rgba(20, 48, 110, 0.17);
}

.hero-demo::before {
  position: absolute;
  inset: 14% -9% -13% 36%;
  z-index: -1;
  border-radius: 8px;
  background: #174ae4;
  content: "";
}

.hero-demo iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 6px;
  background: #ffffff;
  pointer-events: none;
}

.promise-band {
  padding: 35px 24px;
  background: #0a2859;
  color: #ffffff;
  text-align: center;
}

.promise-band p {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1.18;
}

.home-section,
.feature-section,
.download-section,
.home-footer {
  max-width: 1220px;
  margin: 0 auto;
  padding-right: 28px;
  padding-left: 28px;
}

.home-section {
  padding-top: 108px;
  padding-bottom: 108px;
}

.home-section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.home-section-heading h2,
.feature-intro h2,
.download-section h2 {
  margin: 0;
  color: #090a0e;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-section-heading > p:last-child {
  max-width: 660px;
  margin: 20px 0 0;
  color: #65676f;
  font-size: 19px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dfe1e7;
  border-bottom: 1px solid #dfe1e7;
}

.how-steps article {
  display: grid;
  min-height: 245px;
  align-content: start;
  gap: 30px;
  grid-template-columns: 44px 1fr;
  padding: 38px 34px;
}

.how-steps article + article {
  border-left: 1px solid #dfe1e7;
}

.how-steps article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #174ae4;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.how-steps h3,
.feature-rows h3 {
  margin: 3px 0 12px;
  color: #0a0b10;
  font-size: 24px;
}

.how-steps p,
.feature-rows article > p:last-child {
  margin: 0;
  color: #65676f;
  font-size: 17px;
  line-height: 1.55;
}

.feature-section {
  display: grid;
  max-width: none;
  gap: clamp(48px, 7vw, 112px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding-top: 106px;
  padding-bottom: 106px;
  padding-right: max(28px, calc((100vw - 1164px) / 2));
  padding-left: max(28px, calc((100vw - 1164px) / 2));
  background: #f2f6ff;
}

.feature-intro {
  align-self: start;
  position: sticky;
  top: 130px;
}

.feature-intro h2 {
  max-width: 650px;
  font-size: clamp(40px, 4.7vw, 68px);
}

.feature-rows {
  border-top: 1px solid #cdd8ec;
}

.feature-rows article {
  display: grid;
  min-height: 180px;
  align-items: start;
  gap: 20px;
  grid-template-columns: 52px minmax(170px, 0.9fr) minmax(220px, 1.1fr);
  padding: 34px 0;
  border-bottom: 1px solid #cdd8ec;
}

.feature-rows .feature-number {
  margin: 7px 0 0;
  color: #174ae4;
  font-size: 13px;
  font-weight: 900;
}

.feature-rows h3 {
  margin-top: 0;
}

.faq-heading {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.home-faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid #dfe1e7;
}

.home-faq-list details {
  border-bottom: 1px solid #dfe1e7;
}

.home-faq-list summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 2px;
  color: #111217;
  cursor: pointer;
  font-size: 21px;
  font-weight: 800;
  list-style: none;
}

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

.home-faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid #cfd2da;
  border-radius: 50%;
}

.home-faq-list summary span::before,
.home-faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #17181d;
  content: "";
  transform: translate(-50%, -50%);
}

.home-faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq-list details[open] summary span::after {
  transform: translate(-50%, -50%);
}

.home-faq-list details > p {
  max-width: 760px;
  margin: -4px 0 26px;
  color: #65676f;
  font-size: 17px;
  line-height: 1.65;
}

.download-section {
  display: grid;
  max-width: 1164px;
  align-items: center;
  gap: 34px;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 92px;
  padding-top: 48px;
  padding-bottom: 48px;
  border-radius: 8px;
  background: #0a2859;
  color: #ffffff;
}

.download-icon {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  font-size: 42px;
}

.download-section .home-kicker {
  margin-bottom: 10px;
  color: #93c5fd;
}

.download-section h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
}

.download-section div > p:last-child {
  margin: 11px 0 0;
  color: #cad8f2;
  font-size: 18px;
}

.home-footer {
  display: grid;
  max-width: none;
  align-items: center;
  gap: 32px;
  grid-template-columns: 1fr auto auto;
  padding-top: 38px;
  padding-bottom: 44px;
  padding-right: max(28px, calc((100vw - 1164px) / 2));
  padding-left: max(28px, calc((100vw - 1164px) / 2));
  border-top: 1px solid #e2e4e9;
  background: #ffffff;
}

.footer-brand {
  gap: 12px;
}

.footer-brand strong {
  display: block;
  color: #101116;
  font-size: 16px;
}

.footer-brand p,
.footer-email {
  margin: 2px 0 0;
  color: #777a83;
  font-size: 14px;
}

.home-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.home-footer a {
  font-size: 14px;
}

.footer-email {
  margin: 0;
}

@media (max-width: 1180px) {
  .home-header-inner {
    grid-template-columns: auto 1fr;
  }

  .home-nav {
    display: none;
  }

  .header-store-link {
    justify-self: end;
  }

  .home-hero-inner {
    gap: 46px;
    grid-template-columns: minmax(330px, 0.82fr) minmax(470px, 1.18fr);
  }

  .how-steps article {
    grid-template-columns: 1fr;
  }

  .feature-rows article {
    grid-template-columns: 44px 1fr;
  }

  .feature-rows article > p:last-child {
    grid-column: 2;
  }

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

  .footer-email {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .home-hero-inner {
    min-height: auto;
    gap: 64px;
    grid-template-columns: 1fr;
    padding-top: 68px;
  }

  .home-hero-copy {
    max-width: 690px;
  }

  .home-hero h1 {
    font-size: clamp(54px, 10vw, 76px);
  }

  .hero-demo {
    width: 100%;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .how-steps article {
    min-height: 0;
    grid-template-columns: 44px 1fr;
  }

  .how-steps article + article {
    border-top: 1px solid #dfe1e7;
    border-left: 0;
  }

  .feature-section {
    grid-template-columns: 1fr;
  }

  .feature-intro {
    position: static;
  }

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

  .download-section > .store-badge-link {
    grid-column: 2;
  }

  .home-footer {
    grid-template-columns: 1fr;
  }

  .home-footer nav {
    justify-content: flex-start;
  }

  .footer-email {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .home-page {
    overflow-x: hidden;
  }

  .home-header-inner {
    min-height: 72px;
    padding: 10px 18px;
    grid-template-columns: 1fr;
  }

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

  .home-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .header-store-link {
    display: none;
  }

  .home-hero-inner {
    gap: 42px;
    padding: 52px 18px 60px;
  }

  .home-kicker {
    font-size: 12px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 14vw, 58px);
  }

  .home-hero h1 strong {
    margin-bottom: 16px;
  }

  .home-lead {
    max-width: 330px;
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .store-badge-link {
    min-width: 172px;
  }

  .hero-demo {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 8px 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .hero-demo::before {
    display: none;
  }

  .hero-demo iframe {
    border-radius: 0;
  }

  .promise-band {
    padding: 28px 18px;
  }

  .home-section,
  .feature-section {
    padding-top: 76px;
    padding-bottom: 76px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .home-section-heading {
    margin-bottom: 36px;
  }

  .home-section-heading h2,
  .feature-intro h2,
  .download-section h2 {
    font-size: 39px;
  }

  .how-steps article {
    gap: 20px;
    padding: 30px 0;
  }

  .feature-rows article {
    gap: 14px;
    grid-template-columns: 36px 1fr;
    padding: 28px 0;
  }

  .home-faq-list summary {
    min-height: 78px;
    font-size: 18px;
  }

  .download-section {
    display: block;
    margin-right: 18px;
    margin-bottom: 68px;
    margin-left: 18px;
    padding: 32px 24px;
  }

  .download-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 28px;
  }

  .download-section > .store-badge-link {
    margin-top: 28px;
  }

  .home-footer {
    padding: 34px 18px 40px;
  }

  .home-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 390px) {
  .home-brand span {
    max-width: none;
    line-height: 1.05;
    white-space: normal;
  }
}

/* Cal-inspired homepage refinement */
.home-page {
  --blue: #2454e8;
  --blue-deep: #0a2859;
  --blue-soft: #eef4ff;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #f7f9ff 100%);
}

.home-header {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.94);
}

.home-header-inner {
  min-height: 86px;
  max-width: 1500px;
}

.home-brand {
  font-size: 24px;
  font-weight: 900;
}

.home-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.home-nav a {
  color: #0b0c10;
  font-size: 17px;
  font-weight: 750;
}

.header-store-link {
  min-width: 150px;
}

.home-hero-inner {
  min-height: min(820px, calc(100vh - 86px));
  gap: clamp(48px, 5vw, 92px);
  grid-template-columns: minmax(420px, 0.9fr) minmax(600px, 1.1fr);
  padding-top: 60px;
  padding-bottom: 80px;
}

.home-kicker {
  color: var(--blue);
  font-weight: 950;
}

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(64px, 6vw, 96px);
  line-height: 1.02;
}

.home-hero h1 strong {
  margin-bottom: 14px;
  font-size: 0.55em;
}

.home-hero h1 span {
  font-weight: 600;
}

.home-lead {
  max-width: 620px;
  color: #6b7280;
  font-size: clamp(20px, 1.7vw, 24px);
}

.hero-demo {
  padding: 0;
  border: 0;
  border-radius: 34px;
  background: transparent;
  box-shadow: none;
}

.hero-demo::before {
  inset: 9% -4% -7% 22%;
  border-radius: 46px;
  background: linear-gradient(135deg, #2454e8 0%, #0a2859 100%);
  opacity: 0.1;
}

.hero-demo iframe {
  overflow: hidden;
  border: 1px solid #dfe6f5;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 36px 90px rgba(10, 40, 89, 0.16);
}

.promise-band {
  max-width: 1180px;
  margin: 0 auto 26px;
  padding: 0 28px;
  background: transparent;
  color: #0a0b10;
}

.promise-band p {
  display: block;
  max-width: none;
  padding: 26px 34px;
  border: 1px solid #dfe6f5;
  border-radius: 999px;
  background: #f4f8ff;
  color: #0a2859;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 850;
  box-shadow: 0 18px 48px rgba(10, 40, 89, 0.06);
}

.home-section {
  padding-top: 98px;
  padding-bottom: 98px;
}

.home-section-heading h2,
.feature-intro h2,
.download-section h2 {
  font-weight: 650;
}

.how-steps {
  overflow: hidden;
  border: 1px solid #dfe6f5;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(10, 40, 89, 0.08);
}

.how-steps article {
  min-height: 230px;
}

.feature-section {
  background: #ffffff;
}

.feature-rows,
.feature-rows article {
  border-color: #e1e6f0;
}

.download-section {
  border: 1px solid #dfe6f5;
  background: #ffffff;
  color: #0a0b10;
  box-shadow: 0 30px 90px rgba(10, 40, 89, 0.12);
}

.download-section h2 {
  color: #0a0b10;
}

.download-section .home-kicker {
  color: var(--blue);
}

.download-section div > p:last-child {
  color: #6b7280;
}

@media (max-width: 1180px) {
  .home-hero-inner {
    grid-template-columns: minmax(330px, 0.88fr) minmax(470px, 1.12fr);
  }
}

@media (max-width: 860px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-demo {
    width: 100%;
  }

  .promise-band p {
    border-radius: 28px;
  }
}

@media (max-width: 600px) {
  .home-header-inner {
    min-height: 72px;
  }

  .home-brand {
    font-size: 17px;
  }

  .home-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 19px;
  }

  .home-hero-inner {
    gap: 36px;
    padding-top: 44px;
  }

  .home-hero h1 {
    font-size: clamp(44px, 14vw, 56px);
  }

  .home-lead {
    max-width: 342px;
    font-size: 18px;
  }

  .hero-demo {
    width: calc(100vw - 24px);
    margin-left: calc(50% - 50vw + 12px);
    padding: 0;
    border: 0;
  }

  .hero-demo iframe {
    border-radius: 18px;
  }

  .promise-band {
    padding: 0 18px;
  }

  .promise-band p {
    padding: 22px;
    border-radius: 24px;
    font-size: 20px;
    text-align: left;
  }
}

/* Done color restoration */
.home-page {
  --blue: #2454e8;
  --blue-strong: #1742c8;
  --blue-deep: #071a3f;
  --blue-night: #050b1f;
  --blue-soft: #edf4ff;
  background: #f4f7fc;
  color: var(--ink);
}

.home-header {
  border-bottom: 1px solid rgba(215, 223, 235, 0.85);
  background: rgba(255, 255, 255, 0.92);
}

.home-brand-mark,
.footer-brand-mark,
.download-icon {
  background: var(--ink);
  color: #ffffff;
  box-shadow: inset 0 -6px 0 var(--blue);
}

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(36, 84, 232, 0.58), transparent 34%),
    radial-gradient(circle at 20% 88%, rgba(90, 150, 255, 0.22), transparent 36%),
    linear-gradient(145deg, #05060a 0%, #071a3f 55%, #0a2859 100%);
  color: #ffffff;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 80%);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
}

.home-hero h1,
.home-hero h1 strong,
.home-hero h1 span {
  color: #ffffff;
}

.home-hero h1 strong {
  color: #93b4ff;
}

.home-lead {
  color: #d7e1f7;
}

.home-kicker {
  color: var(--blue);
}

.home-hero .home-kicker {
  color: #93b4ff;
}

.plain-link {
  color: #ffffff;
}

.plain-link:hover,
.plain-link span {
  color: #b8caff;
}

.app-store-button {
  background: #ffffff;
  color: #05060a;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.app-store-button:hover {
  background: #eef4ff;
  color: #05060a;
}

.app-store-icon {
  background: var(--blue);
  color: #ffffff;
}

.home-header .app-store-button,
.download-section .app-store-button {
  background: #05060a;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(9, 18, 36, 0.14);
}

.home-header .app-store-button:hover,
.download-section .app-store-button:hover {
  background: #11131a;
  color: #ffffff;
}

.home-header .app-store-icon,
.download-section .app-store-icon {
  background: #ffffff;
  color: var(--blue);
}

.hero-demo {
  padding: clamp(12px, 1.6vw, 22px);
  border: 1px solid rgba(184, 202, 255, 0.32);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.38);
}

.hero-demo::before {
  inset: 12% -6% -9% 26%;
  border-radius: 40px;
  background: var(--blue);
  opacity: 0.42;
}

.hero-demo iframe {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #ffffff;
  box-shadow: none;
}

.promise-band {
  margin-top: 38px;
}

.promise-band p {
  border: 1px solid #c9d8ff;
  background:
    linear-gradient(135deg, #eef4ff 0%, #ffffff 100%);
  color: #0a2859;
}

.how-steps article > span,
.feature-rows .feature-number {
  background: var(--blue);
  color: #ffffff;
}

.feature-section {
  background:
    linear-gradient(180deg, #f2f6ff 0%, #ffffff 100%);
}

.feature-intro h2,
.home-section-heading h2,
.download-section h2 {
  color: #071226;
}

.feature-rows article {
  border-color: #cdd8ec;
}

.download-section {
  border: 0;
  background:
    radial-gradient(circle at 92% 10%, rgba(147, 180, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #071a3f 0%, #2454e8 100%);
  color: #ffffff;
  box-shadow: 0 34px 90px rgba(23, 66, 200, 0.22);
}

.download-section h2,
.download-section .home-kicker {
  color: #ffffff;
}

.download-section div > p:last-child {
  color: #dbe6ff;
}

.download-section .download-icon {
  background: #ffffff;
  color: var(--blue);
  box-shadow: inset 0 -8px 0 #bcd0ff;
}

@media (max-width: 600px) {
  .home-hero-inner {
    padding-top: 52px;
  }

  .hero-demo {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-demo iframe {
    border-radius: 16px;
  }
}

/* Final Done marketing polish */
.home-page,
.legal-page {
  --done-bg: #f3f7ff;
  --done-card: #ffffff;
  --done-ink: #061126;
  --done-muted: #5e6b82;
  --done-line: #d8e3f7;
  --done-blue: #2454e8;
  --done-blue-dark: #071a3f;
  --done-blue-mid: #0b2d69;
  background: var(--done-bg);
  color: var(--done-ink);
}

.home-header {
  border-bottom: 1px solid rgba(216, 227, 247, 0.9);
  background: rgba(255, 255, 255, 0.94);
}

.home-header-inner {
  max-width: 1440px;
}

.home-brand,
.home-nav a,
.home-footer a {
  color: var(--done-ink);
}

.home-nav a:hover,
.home-footer a:hover {
  color: var(--done-blue);
}

.home-hero {
  background:
    radial-gradient(circle at 86% 20%, rgba(36, 84, 232, 0.58), transparent 30%),
    linear-gradient(145deg, #050814 0%, var(--done-blue-dark) 48%, var(--done-blue-mid) 100%);
}

.home-hero-inner {
  max-width: 1440px;
  min-height: min(760px, calc(100vh - 86px));
  gap: clamp(44px, 5vw, 84px);
}

.home-hero h1 {
  font-size: clamp(62px, 6vw, 96px);
  line-height: 1.02;
}

.home-hero h1 strong {
  color: #9bb8ff;
}

.home-lead {
  color: #dce7ff;
}

.hero-demo {
  border: 1px solid rgba(185, 204, 255, 0.35);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
}

.hero-demo::before {
  background: rgba(36, 84, 232, 0.72);
}

.hero-demo iframe {
  border-radius: 22px;
}

.app-store-button {
  min-width: 184px;
  min-height: 56px;
  gap: 11px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #05060a;
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.app-store-button:hover,
.home-header .app-store-button:hover,
.download-section .app-store-button:hover {
  background: #151823;
  color: #ffffff;
}

.app-store-icon,
.home-header .app-store-icon,
.download-section .app-store-icon {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.app-store-button small {
  color: #ffffff;
  font-size: 10px;
  font-weight: 650;
}

.app-store-button strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 850;
}

.plain-link {
  color: #ffffff;
  font-weight: 850;
}

.plain-link span,
.plain-link:hover {
  color: #a9c0ff;
}

.how-section {
  padding-top: 94px;
}

.home-section-heading {
  max-width: 900px;
}

.home-section-heading h2,
.feature-intro h2,
.download-section h2 {
  color: var(--done-ink);
  font-weight: 850;
}

.home-section-heading > p:last-child,
.how-steps p,
.feature-rows article > p:last-child,
.home-faq-list details > p {
  color: var(--done-muted);
}

.how-steps {
  border: 1px solid var(--done-line);
  border-radius: 24px;
  background: var(--done-card);
  box-shadow: 0 26px 70px rgba(7, 26, 63, 0.08);
}

.how-steps article {
  min-height: 220px;
}

.how-steps article > span {
  background: var(--done-blue);
}

.feature-section {
  border-top: 1px solid var(--done-line);
  border-bottom: 1px solid var(--done-line);
  background: #eef4ff;
}

.feature-rows,
.feature-rows article {
  border-color: #cbd9f2;
}

.feature-rows .feature-number {
  display: inline-flex;
  width: auto;
  min-width: 44px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--done-blue);
  color: #ffffff;
}

.home-faq {
  background: var(--done-bg);
}

.home-faq-list {
  overflow: hidden;
  border: 1px solid var(--done-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(7, 26, 63, 0.06);
}

.home-faq-list details {
  border-color: var(--done-line);
}

.home-faq-list summary,
.home-faq-list details > p {
  padding-right: 26px;
  padding-left: 26px;
}

.download-section {
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 18%, rgba(147, 180, 255, 0.38), transparent 34%),
    linear-gradient(135deg, #071a3f 0%, #2454e8 100%);
}

.download-icon {
  background: #ffffff;
  color: var(--done-blue);
  box-shadow: inset 0 -8px 0 #bcd0ff;
}

.home-footer {
  border-top: 1px solid var(--done-line);
  background: #ffffff;
}

.legal-page .home-header {
  position: sticky;
}

.legal-hero,
.legal-document-shell,
.support-grid,
.legal-callout {
  width: min(1180px, calc(100% - 44px));
  margin-right: auto;
  margin-left: auto;
}

.legal-hero {
  padding: 88px 0 42px;
}

.legal-hero h1,
.legal-document h1 {
  max-width: 860px;
  margin: 0;
  color: var(--done-ink);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1;
}

.legal-hero > p:last-of-type,
.legal-intro {
  max-width: 780px;
  margin-top: 22px;
  color: var(--done-muted);
  font-size: 20px;
  line-height: 1.55;
}

.support-mail-card {
  display: inline-grid;
  gap: 4px;
  margin-top: 30px;
  padding: 18px 22px;
  border: 1px solid var(--done-line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--done-ink);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(7, 26, 63, 0.08);
}

.support-mail-card span {
  color: var(--done-muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.support-mail-card strong {
  font-size: 22px;
}

.support-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 42px;
}

.support-grid article,
.legal-callout,
.legal-document {
  border: 1px solid var(--done-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(7, 26, 63, 0.07);
}

.support-grid article {
  padding: 30px;
}

.support-grid h2,
.legal-callout h2,
.legal-document h2 {
  margin: 0 0 12px;
  color: var(--done-ink);
  font-size: 26px;
  line-height: 1.12;
}

.support-grid p,
.support-grid li,
.legal-callout p,
.legal-document p,
.legal-document li {
  color: var(--done-muted);
  font-size: 17px;
  line-height: 1.65;
}

.support-grid ul,
.legal-document ul {
  padding-left: 22px;
}

.inline-action {
  display: inline-flex;
  margin-top: 10px;
  color: var(--done-blue);
  font-weight: 850;
  text-decoration: none;
}

.legal-callout {
  margin-bottom: 76px;
  padding: 34px;
}

.legal-document-shell {
  padding: 76px 0;
}

.legal-document {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px);
}

.legal-document .eyebrow {
  color: var(--done-blue);
}

.legal-document .muted {
  margin: 18px 0 0;
  color: #7b879b;
}

.legal-document h2 {
  margin-top: 42px;
}

.legal-document a {
  color: var(--done-blue);
  font-weight: 750;
}

@media (max-width: 860px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero,
  .legal-document-shell,
  .support-grid,
  .legal-callout {
    width: min(100% - 32px, 1180px);
  }
}

@media (max-width: 600px) {
  .home-hero h1 {
    font-size: clamp(44px, 14vw, 58px);
  }

  .app-store-button {
    min-width: 178px;
  }

  .how-steps,
  .home-faq-list,
  .support-grid article,
  .legal-callout,
  .legal-document {
    border-radius: 18px;
  }

  .legal-hero {
    padding-top: 58px;
  }

  .legal-hero h1,
  .legal-document h1 {
    font-size: 42px;
  }

  .support-mail-card strong {
    font-size: 18px;
  }
}

/* Final brand, type, and color corrections */
body,
button,
input,
textarea,
select {
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.home-page,
.legal-page {
  --done-navy: #071a3f;
  --done-blue: #2454e8;
  --done-blue-light: #8fbbff;
  --done-page: #f5f8fd;
  --done-surface: #ffffff;
  --done-ink: #07152f;
  --done-muted: #5f6d82;
  --done-line: #d9e2ef;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.home-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.footer-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.home-brand {
  color: var(--done-ink);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0;
}

.app-store-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  text-decoration: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.app-store-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.app-store-link:focus-visible {
  border-radius: 10px;
  outline: 3px solid rgba(143, 187, 255, 0.7);
  outline-offset: 4px;
}

.app-store-badge {
  display: block;
  width: 196px;
  height: auto;
}

.header-store-link .app-store-badge {
  width: 166px;
}

.home-hero {
  background: var(--done-navy);
  color: #ffffff;
}

.home-hero::before {
  background-image:
    linear-gradient(rgba(143, 187, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 187, 255, 0.055) 1px, transparent 1px);
  opacity: 1;
}

.home-hero-inner {
  max-width: 1460px;
  min-height: min(820px, calc(100vh - 86px));
  gap: clamp(50px, 5vw, 88px);
  grid-template-columns: minmax(420px, 0.88fr) minmax(590px, 1.12fr);
  padding-top: 64px;
  padding-bottom: 76px;
}

.home-hero .home-kicker {
  color: var(--done-blue-light);
  font-size: 14px;
  font-weight: 800;
}

.home-hero h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(58px, 5.5vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero h1 strong {
  margin-bottom: 18px;
  color: var(--done-blue-light);
  font-size: 0.54em;
  font-weight: 800;
  line-height: 1.05;
}

.home-hero h1 span {
  color: #ffffff;
  font-weight: 800;
}

.home-lead {
  max-width: 610px;
  margin-top: 34px;
  color: #d9e5f6;
  font-size: clamp(20px, 1.65vw, 24px);
  line-height: 1.48;
}

.hero-demo {
  padding: 14px;
  border: 1px solid rgba(143, 187, 255, 0.34);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 72px rgba(0, 5, 20, 0.28);
}

.hero-demo::before {
  display: none;
}

.hero-demo iframe {
  border: 0;
  border-radius: 16px;
  box-shadow: none;
}

.home-section-heading h2,
.feature-intro h2,
.download-section h2 {
  color: var(--done-ink);
  font-weight: 800;
  line-height: 1.02;
}

.home-section-heading > p:last-child,
.how-steps p,
.feature-rows article > p:last-child,
.home-faq-list details > p {
  color: var(--done-muted);
}

.how-section,
.home-faq {
  background: var(--done-surface);
}

.how-steps {
  border: 1px solid var(--done-line);
  border-radius: 20px;
  background: var(--done-surface);
  box-shadow: 0 18px 56px rgba(7, 26, 63, 0.07);
}

.how-steps article + article {
  border-color: var(--done-line);
}

.how-steps h3,
.feature-rows h3,
.home-faq-list summary {
  color: var(--done-ink);
  font-weight: 800;
}

.how-steps article > span,
.feature-rows .feature-number {
  background: var(--done-blue);
  color: #ffffff;
}

.feature-section {
  border-color: var(--done-line);
  background: var(--done-page);
}

.feature-rows,
.feature-rows article,
.home-faq-list,
.home-faq-list details {
  border-color: var(--done-line);
}

.home-faq-list summary span {
  border-color: #b9c7da;
}

.download-section {
  border: 0;
  border-radius: 20px;
  background: var(--done-navy);
  color: #ffffff;
  box-shadow: 0 26px 72px rgba(7, 26, 63, 0.2);
}

.download-icon {
  width: 86px;
  height: 86px;
  border-radius: 20px;
}

.download-section h2 {
  color: #ffffff;
}

.download-section div > p:last-child {
  color: #d9e5f6;
}

.download-section .home-kicker {
  color: var(--done-blue-light);
}

.auth-confirm-mark {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

@media (max-width: 1180px) {
  .home-hero-inner {
    grid-template-columns: minmax(330px, 0.86fr) minmax(470px, 1.14fr);
  }
}

@media (max-width: 860px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .home-brand {
    font-size: 17px;
  }

  .home-brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .home-hero-inner {
    padding-top: 50px;
  }

  .home-hero h1 {
    font-size: clamp(45px, 13.5vw, 58px);
  }

  .home-hero h1 strong {
    margin-bottom: 14px;
  }

  .home-lead {
    margin-top: 26px;
    color: #d9e5f6;
    font-size: 18px;
  }

  .app-store-badge {
    width: 184px;
  }

  .hero-demo {
    width: calc(100vw - 24px);
    margin-left: calc(50% - 50vw + 12px);
    padding: 8px;
    border-right: 1px solid rgba(143, 187, 255, 0.34);
    border-left: 1px solid rgba(143, 187, 255, 0.34);
    border-radius: 18px;
  }

  .hero-demo iframe {
    border-radius: 11px;
  }

  .how-steps {
    border-radius: 16px;
  }

  .download-section {
    border-radius: 18px;
  }
}

/* Compact feature band */
.feature-section {
  display: block;
  max-width: none;
  padding-top: 88px;
  padding-bottom: 88px;
  border: 0;
  background: #0b2a5b;
  color: #ffffff;
}

.feature-intro {
  position: static;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.feature-intro .home-kicker {
  color: var(--done-blue-light);
}

.feature-intro h2 {
  max-width: none;
  color: #ffffff;
  font-size: clamp(40px, 4.6vw, 64px);
}

.feature-intro > p:last-child {
  max-width: 650px;
  margin: 20px auto 0;
  color: #d4e2f5;
  font-size: 19px;
  line-height: 1.55;
}

.feature-rows {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid rgba(185, 209, 244, 0.28);
  border-bottom: 1px solid rgba(185, 209, 244, 0.28);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-rows article {
  display: block;
  min-height: 0;
  padding: 34px 38px 38px;
  border: 0;
}

.feature-rows article + article {
  border-left: 1px solid rgba(185, 209, 244, 0.28);
}

.feature-rows h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 23px;
  font-weight: 800;
}

.feature-rows article > p:last-child {
  margin: 0;
  color: #d4e2f5;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .feature-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .feature-intro {
    margin-bottom: 34px;
    text-align: left;
  }

  .feature-rows {
    grid-template-columns: 1fr;
  }

  .feature-rows article {
    padding: 28px 0;
  }

  .feature-rows article + article {
    border-top: 1px solid rgba(185, 209, 244, 0.28);
    border-left: 0;
  }
}

/* FAQ overview and complete help page */
.home-faq {
  padding: 104px 24px;
  background: var(--done-page);
}

.faq-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.faq-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.06;
}

.faq-heading p {
  margin: 0;
  color: var(--done-muted);
  font-size: 18px;
}

.home-faq-list,
.faq-accordion {
  display: grid;
  width: 100%;
  gap: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-faq-list {
  max-width: 940px;
  margin: 0 auto;
}

.home-faq-list details,
.faq-accordion details {
  overflow: hidden;
  border: 1px solid var(--done-line);
  border-radius: 8px;
  background: var(--done-surface);
  box-shadow: 0 12px 34px rgba(7, 26, 63, 0.055);
}

.home-faq-list summary,
.faq-accordion summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  color: var(--done-ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

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

.home-faq-list summary span,
.faq-accordion summary span {
  position: relative;
  display: block;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border: 1px solid var(--done-line);
  border-radius: 50%;
  background: var(--done-page);
}

.home-faq-list summary span::before,
.home-faq-list summary span::after,
.faq-accordion summary span::before,
.faq-accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--done-ink);
  content: "";
}

.home-faq-list summary span::after,
.faq-accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.home-faq-list details[open] summary span::after,
.faq-accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.home-faq-list details > p,
.faq-accordion details > p {
  margin: 0;
  padding: 0 76px 24px 24px;
  color: var(--done-muted);
  font-size: 16px;
  line-height: 1.65;
}

.home-faq-list details > p a,
.faq-accordion details > p a {
  color: var(--done-blue);
  font-weight: 700;
}

.faq-all-link {
  display: flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  margin: 32px auto 0;
  padding: 0 20px;
  border: 1px solid var(--done-line);
  border-radius: 8px;
  background: var(--done-surface);
  color: var(--done-ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.faq-all-link:hover {
  transform: translateY(-1px);
  border-color: var(--done-blue);
}

.faq-page {
  background: var(--done-page);
}

.faq-main {
  padding-bottom: 96px;
  background: var(--done-page);
}

.faq-page-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 92px 24px 58px;
  text-align: center;
}

.faq-page-hero h1 {
  margin: 0 0 16px;
  color: var(--done-ink);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.faq-page-hero > p {
  max-width: 720px;
  margin: 0 auto 14px;
  color: var(--done-muted);
  font-size: 19px;
  line-height: 1.55;
}

.faq-page-hero > span {
  display: block;
  color: var(--done-muted);
  font-size: 14px;
}

.faq-category-nav {
  display: flex;
  max-width: 860px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px auto 0;
}

.faq-category-nav a {
  padding: 10px 14px;
  border: 1px solid var(--done-line);
  border-radius: 8px;
  background: var(--done-surface);
  color: var(--done-ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.faq-category-nav a:hover,
.faq-category-nav a:focus-visible {
  border-color: var(--done-blue);
  color: var(--done-blue);
}

.faq-category-list {
  display: grid;
  width: min(1120px, calc(100% - 48px));
  gap: 64px;
  margin: 0 auto;
}

.faq-category {
  scroll-margin-top: 100px;
}

.faq-category h2 {
  margin: 0 0 20px;
  color: var(--done-ink);
  font-size: 27px;
  line-height: 1.2;
}

.faq-support-panel {
  width: min(1120px, calc(100% - 48px));
  margin: 80px auto 0;
  padding: 54px 32px;
  border: 1px solid var(--done-line);
  border-radius: 8px;
  background: var(--done-surface);
  text-align: center;
  box-shadow: 0 18px 52px rgba(7, 26, 63, 0.07);
}

.faq-support-panel h2 {
  margin: 0 0 10px;
  color: var(--done-ink);
  font-size: 30px;
}

.faq-support-panel p {
  max-width: 660px;
  margin: 0 auto 24px;
  color: var(--done-muted);
  line-height: 1.6;
}

.faq-support-panel a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--done-navy);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 700px) {
  .home-faq {
    padding: 76px 18px;
  }

  .faq-heading {
    margin-bottom: 34px;
  }

  .faq-heading h2 {
    font-size: 39px;
  }

  .home-faq-list summary,
  .faq-accordion summary {
    min-height: 66px;
    padding: 18px;
    font-size: 16px;
  }

  .home-faq-list details > p,
  .faq-accordion details > p {
    padding: 0 58px 20px 18px;
    font-size: 15px;
  }

  .faq-page-hero {
    padding: 68px 18px 48px;
  }

  .faq-page-hero h1 {
    font-size: 42px;
  }

  .faq-page-hero > p {
    font-size: 17px;
  }

  .faq-category-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-category-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .faq-category-list,
  .faq-support-panel {
    width: calc(100% - 36px);
  }

  .faq-category-list {
    gap: 50px;
  }

  .faq-category h2 {
    font-size: 24px;
  }

  .faq-support-panel {
    margin-top: 60px;
    padding: 40px 22px;
  }
}

/* Interactive product walkthrough */
.feature-explorer-section {
  scroll-margin-top: 90px;
  padding: 108px max(28px, calc((100vw - 1164px) / 2));
  background: var(--done-surface);
  color: var(--done-ink);
}

.feature-explorer-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.feature-explorer-heading h2,
.spotlight-copy h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

.feature-explorer-heading > p:last-child,
.spotlight-copy > p:last-of-type {
  margin: 20px 0 0;
  color: var(--done-muted);
  font-size: 19px;
  line-height: 1.55;
}

.feature-explorer-grid {
  display: grid;
  align-items: start;
  gap: clamp(54px, 8vw, 112px);
  grid-template-columns: minmax(300px, 0.82fr) minmax(470px, 1.18fr);
}

.feature-device-column {
  position: sticky;
  top: 112px;
  display: grid;
  justify-items: center;
  perspective: 1300px;
}

.feature-device {
  position: relative;
  width: min(100%, 342px, calc((100vh - 190px) * 0.459));
  padding: 10px;
  border: 1px solid #0a0d14;
  border-radius: 56px;
  background: #080b11;
  box-shadow: 12px 10px 0 #252c37, 28px 40px 72px rgba(7, 26, 63, 0.24);
  overflow: hidden;
  transform: rotateY(-9deg) rotateX(2deg) rotateZ(-1.25deg);
  transform-origin: 50% 46%;
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-device:hover {
  box-shadow: 8px 7px 0 #252c37, 22px 34px 66px rgba(7, 26, 63, 0.2);
  transform: rotateY(-5deg) rotateX(1deg) rotateZ(-0.5deg) translateY(-3px);
}

.feature-device-speaker {
  display: none;
}

.feature-device img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 1568;
  border-radius: 46px;
  border: 0;
  background: #080b11;
  clip-path: inset(1px round 45px);
  object-fit: cover;
  object-position: top center;
  opacity: 1;
  transition: opacity 150ms ease;
}

.feature-device img.is-changing {
  opacity: 0.45;
}

.feature-screen-caption {
  max-width: 360px;
  min-height: 48px;
  margin: 22px 0 0;
  color: var(--done-muted);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.feature-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.feature-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c7cfdb;
  cursor: pointer;
}

.feature-dots button.is-active {
  width: 24px;
  border-radius: 5px;
  background: var(--done-blue);
}

.feature-choice-list {
  position: relative;
  display: grid;
  gap: 12px;
}

.feature-choice {
  display: block;
  width: 100%;
  min-height: 108px;
  padding: 24px 28px;
  border: 1px solid var(--done-line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--done-ink);
  box-shadow: none;
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease,
    box-shadow 160ms ease, transform 160ms ease;
}

.feature-choice:hover {
  border-color: #aab7ca;
  background: #f8f9fb;
  box-shadow: 0 12px 30px rgba(7, 26, 63, 0.06);
  transform: translateY(-1px);
}

.feature-choice.is-active {
  border-color: #17243b;
  background: #f1f3f6;
  color: var(--done-ink);
  box-shadow: 0 14px 34px rgba(7, 26, 63, 0.08);
}

.feature-choice:focus-visible,
.feature-dots button:focus-visible {
  outline: 3px solid rgba(36, 84, 232, 0.3);
  outline-offset: 3px;
}

.feature-choice-copy {
  display: grid;
  gap: 8px;
}

.feature-choice strong {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.feature-choice small {
  color: var(--done-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.feature-choice.is-active small {
  color: var(--done-muted);
}

/* Proof requirement */
.proof-rule-section {
  padding: 0 max(28px, calc((100vw - 1164px) / 2));
  background: var(--done-surface);
  color: var(--done-ink);
}

.proof-rule-inner {
  display: grid;
  align-items: center;
  gap: 30px;
  padding: 38px 0;
  border-top: 1px solid var(--done-line);
  border-bottom: 1px solid var(--done-line);
  grid-template-columns: 180px minmax(0, 1fr);
}

.proof-rule-inner .home-kicker,
.proof-rule-inner h2 {
  margin: 0;
}

.proof-rule-inner h2 {
  max-width: 820px;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 750;
  line-height: 1.2;
}

/* Progress feature */
.spotlight-section {
  position: relative;
  padding: 108px max(28px, calc((100vw - 1164px) / 2));
  border-top: 6px solid var(--done-blue);
  border-bottom: 1px solid #17366f;
  background: var(--done-navy);
  color: #ffffff;
  overflow: hidden;
}

.spotlight-inner {
  display: grid;
  align-items: center;
  gap: clamp(64px, 10vw, 148px);
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.72fr);
}

.spotlight-copy {
  max-width: 580px;
}

.spotlight-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  gap: 9px;
  border: 1px solid rgba(154, 191, 255, 0.42);
  border-radius: 6px;
  background: rgba(154, 191, 255, 0.12);
  color: #c9dbff;
}

.spotlight-kicker span {
  display: inline-grid;
  min-height: 22px;
  padding: 0 7px;
  place-items: center;
  border-radius: 4px;
  background: var(--done-blue);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0;
}

.spotlight-copy > p:last-of-type {
  color: #c5d3ec;
}

.spotlight-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.spotlight-details span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.spotlight-details span::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--done-blue);
  color: #ffffff;
  content: "\2713";
  font-size: 12px;
}

.spotlight-phone {
  position: relative;
  width: min(100%, 342px);
  justify-self: center;
  padding: 10px;
  border: 1px solid #7397e5;
  border-radius: 56px;
  background: #080b11;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

/* Hero walkthrough action */
.walkthrough-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.walkthrough-link:hover {
  color: #a9c5ff;
  transform: translateY(-2px);
}

.walkthrough-link span:last-child {
  font-size: 18px;
  transition: transform 160ms ease;
}

.walkthrough-link:hover span:last-child {
  transform: translateY(3px);
}

.spotlight-phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 882 / 1920;
  border-radius: 46px;
  background: #ffffff;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 900px) {
  .feature-explorer-grid,
  .spotlight-inner {
    grid-template-columns: 1fr;
  }

  .feature-device-column {
    position: static;
  }

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

  .spotlight-copy {
    max-width: 720px;
  }

  .spotlight-phone {
    width: min(80vw, 342px);
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .home-header .header-store-link {
    display: none;
  }

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

  .feature-explorer-section {
    scroll-margin-top: 70px;
  }

  .feature-explorer-section,
  .spotlight-section {
    padding: 76px 18px;
  }

  .feature-explorer-heading {
    margin-bottom: 40px;
  }

  .feature-explorer-heading h2,
  .spotlight-copy h2 {
    font-size: 39px;
  }

  .feature-explorer-grid {
    gap: 46px;
  }

  .feature-device {
    width: min(82vw, 310px);
    border-radius: 50px;
    box-shadow: 7px 7px 0 #252c37, 18px 28px 54px rgba(7, 26, 63, 0.22);
    transform: rotateY(-4deg) rotateX(1deg) rotateZ(-0.5deg);
  }

  .feature-device img {
    border-radius: 40px;
    clip-path: inset(1px round 39px);
  }

  .feature-choice-list {
    grid-template-columns: 1fr;
  }

  .feature-choice {
    min-height: 0;
    padding: 20px;
  }

  .spotlight-phone {
    width: min(82vw, 310px);
    border-radius: 50px;
  }

  .spotlight-phone img {
    border-radius: 40px;
  }

  .proof-rule-section {
    padding: 0 18px;
  }

  .proof-rule-inner {
    gap: 12px;
    padding: 30px 0;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-device img,
  .feature-device,
  .feature-choice {
    transition: none;
  }
}

/* Keep the real transparent app mark clean inside the download banner. */
.download-section .download-icon {
  background: transparent;
  box-shadow: none;
}

/* Stable brand typography */
.home-page,
.home-page button,
.home-page input,
.home-page textarea,
.home-page select {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.home-brand,
.home-brand span,
.footer-brand strong,
.plain-link,
.home-nav a,
.home-footer a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  letter-spacing: 0;
}

.home-brand,
.home-brand span,
.footer-brand strong {
  font-weight: 700;
}

.plain-link {
  font-size: 16px;
  font-weight: 700;
}

.home-section-heading h2,
.feature-intro h2,
.download-section h2,
.how-steps h3,
.feature-rows h3,
.home-faq-list summary {
  font-weight: 800;
  letter-spacing: 0;
}

/* Unified Done palette */
.home-page,
.legal-page {
  --done-navy: #071a3f;
  --done-blue: #2454e8;
  --done-blue-light: #9abfff;
  --done-page: #f4f7fc;
  --done-surface: #ffffff;
  --done-ink: #07152f;
  --done-muted: #56657a;
  --done-line: #d7e0ed;
}

.home-page,
.home-page main {
  background: var(--done-surface);
}

.home-header {
  border-bottom-color: var(--done-line);
  background: rgba(255, 255, 255, 0.97);
}

.home-hero {
  background: var(--done-navy);
}

.how-section,
.home-faq {
  background: var(--done-surface);
}

.home-section-heading h2,
.how-steps h3,
.home-faq-list summary {
  color: var(--done-ink);
}

.home-section-heading > p:last-child,
.how-steps p,
.home-faq-list details > p {
  color: var(--done-muted);
}

.how-steps,
.home-faq-list {
  border-color: var(--done-line);
  border-radius: 8px;
  background: var(--done-surface);
  box-shadow: 0 18px 52px rgba(7, 26, 63, 0.07);
}

.how-steps article + article,
.home-faq-list details {
  border-color: var(--done-line);
}

.feature-section {
  padding-top: 92px;
  padding-bottom: 92px;
  border-top: 1px solid var(--done-line);
  border-bottom: 1px solid var(--done-line);
  background: var(--done-page);
  color: var(--done-ink);
}

.feature-intro .home-kicker {
  color: var(--done-blue);
}

.feature-intro h2 {
  color: var(--done-ink);
}

.feature-intro > p:last-child {
  color: var(--done-muted);
}

.feature-rows {
  gap: 16px;
  border: 0;
}

.feature-rows article {
  padding: 30px 30px 32px;
  border: 1px solid var(--done-line);
  border-top: 4px solid var(--done-blue);
  border-radius: 8px;
  background: var(--done-surface);
  box-shadow: 0 16px 44px rgba(7, 26, 63, 0.06);
}

.feature-rows article + article {
  border-left: 1px solid var(--done-line);
}

.feature-rows h3 {
  color: var(--done-ink);
}

.feature-rows article > p:last-child {
  color: var(--done-muted);
}

.download-section {
  border-radius: 8px;
  background: var(--done-navy);
}

.home-footer {
  border-top-color: var(--done-line);
  background: var(--done-surface);
}

@media (max-width: 760px) {
  .feature-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .feature-rows article {
    padding: 26px;
  }

  .feature-rows article + article {
    border-top: 4px solid var(--done-blue);
    border-left: 1px solid var(--done-line);
  }
}

/* Focus lock timeline */
.feature-section {
  padding-top: 92px;
  padding-bottom: 100px;
}

.feature-intro {
  max-width: 820px;
  margin-bottom: 64px;
}

.feature-rows {
  position: relative;
  display: grid;
  max-width: 1160px;
  gap: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: visible;
  border: 0;
}

.feature-rows::before {
  position: absolute;
  z-index: 0;
  top: 23px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: #b9c9e4;
  content: "";
}

.feature-rows article,
.feature-rows article + article {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 0;
  padding: 76px 12px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.feature-rows .feature-number {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  width: 48px;
  min-width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  place-items: center;
  transform: translateX(-50%);
  border: 7px solid var(--done-page);
  border-radius: 50%;
  background: var(--done-blue);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.feature-rows h3 {
  margin: 0 0 12px;
  color: var(--done-ink);
  font-size: 22px;
}

.feature-rows article > div > p {
  max-width: 250px;
  margin: 0 auto;
  color: var(--done-muted);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .feature-intro {
    margin-bottom: 44px;
  }

  .feature-rows {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .feature-rows::before {
    top: 24px;
    right: auto;
    bottom: 108px;
    left: 23px;
    width: 2px;
    height: auto;
  }

  .feature-rows article,
  .feature-rows article + article {
    display: grid;
    min-height: 132px;
    gap: 20px;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 0 0 34px;
    border: 0;
    text-align: left;
  }

  .feature-rows .feature-number {
    position: relative;
    top: 0;
    left: 0;
    grid-column: 1;
    grid-row: 1;
    transform: none;
  }

  .feature-rows article > div {
    grid-column: 2;
    grid-row: 1;
    padding-top: 8px;
  }

  .feature-rows article > div > p {
    max-width: none;
    margin: 0;
  }
}

/* Final FAQ surface override. */
.home-faq-list {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* Complete site footer */
.home-footer.site-footer {
  display: block;
  max-width: none;
  padding: 0;
  border-top: 1px solid var(--done-line);
  background: #f5f7fc;
}

.site-footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 22px;
}

.site-footer-grid {
  display: grid;
  align-items: start;
  gap: clamp(56px, 9vw, 136px);
  grid-template-columns: minmax(320px, 1.4fr) minmax(150px, 0.65fr) minmax(190px, 0.8fr);
}

.site-footer-brand {
  display: grid;
  justify-items: start;
}

.site-footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--done-ink);
  text-decoration: none;
}

.site-footer-wordmark strong {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 23px;
  font-weight: 750;
  letter-spacing: 0;
}

.site-footer-brand > p {
  margin: 18px 0 14px;
  color: var(--done-muted);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer-store-link .app-store-badge {
  width: 150px;
  height: auto;
}

.site-footer .site-footer-column {
  display: grid;
  justify-content: start;
  gap: 13px;
}

.site-footer-column h2 {
  margin: 4px 0 7px;
  color: var(--done-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0;
}

.site-footer .site-footer-column a,
.site-footer-bottom a {
  color: var(--done-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  white-space: normal;
}

.site-footer .site-footer-column a:hover,
.site-footer-bottom a:hover,
.site-footer-wordmark:hover {
  color: var(--done-blue);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid var(--done-line);
}

.site-footer-bottom p {
  margin: 0;
  color: var(--done-muted);
  font-size: 13px;
}

@media (max-width: 820px) {
  .site-footer-inner {
    width: min(100% - 36px, 620px);
    padding-top: 48px;
  }

  .site-footer-grid {
    gap: 40px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-brand {
    grid-column: auto;
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
  }
}

/* Press inquiries */
.press-main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 92px;
}

.press-hero {
  margin-bottom: 34px;
  text-align: center;
}

.press-hero h1 {
  margin: 0;
  color: var(--done-ink);
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
}

.press-hero p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--done-muted);
  font-size: 18px;
}

.press-form {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--done-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 26, 63, 0.09);
}

.press-form label {
  margin-top: 10px;
  color: var(--done-ink);
  font-size: 14px;
  font-weight: 750;
}

.press-form input,
.press-form textarea {
  width: 100%;
  border: 1px solid #c8d4e7;
  border-radius: 12px;
  outline: 0;
  background: #ffffff;
  color: var(--done-ink);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.press-form input {
  min-height: 52px;
  padding: 0 15px;
}

.press-form textarea {
  min-height: 170px;
  padding: 14px 15px;
  resize: vertical;
}

.press-form input::placeholder,
.press-form textarea::placeholder {
  color: #8a96a9;
}

.press-form input:focus,
.press-form textarea:focus {
  border-color: var(--done-blue);
  box-shadow: 0 0 0 4px rgba(36, 84, 232, 0.12);
}

.press-form button {
  min-height: 54px;
  margin-top: 20px;
  border: 0;
  border-radius: 12px;
  background: var(--done-blue);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: background-color 160ms ease, transform 160ms ease;
}

.press-form button:hover {
  background: var(--blue-strong);
  transform: translateY(-1px);
}

.press-form button:focus-visible {
  outline: 3px solid rgba(36, 84, 232, 0.28);
  outline-offset: 3px;
}

.press-form-status {
  min-height: 24px;
  margin: 2px 0 0;
  color: var(--done-muted);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 600px) {
  .press-main {
    width: min(100% - 28px, 760px);
    padding: 54px 0 70px;
  }

  .press-form {
    border-radius: 20px;
  }
}

/* Premium device presentation */
.hero-actions {
  gap: 0;
}

.hero-demo {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  perspective: 1800px;
}

.hero-demo::before {
  display: none;
}

.hero-tablet {
  position: relative;
  padding: 7px;
  border: 1px solid rgba(145, 181, 242, 0.72);
  border-radius: 29px;
  background: #0c111c;
  box-shadow:
    5px 6px 0 #222d3e,
    0 36px 76px rgba(0, 5, 20, 0.38);
  transform: rotateX(1deg) rotateY(-1.5deg);
  transform-style: preserve-3d;
}

.hero-tablet::after {
  position: absolute;
  top: 92px;
  right: -8px;
  width: 3px;
  height: 58px;
  border-radius: 0 3px 3px 0;
  background: #546175;
  content: "";
}

.hero-tablet-camera {
  position: absolute;
  top: 2px;
  left: 50%;
  z-index: 2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #25354e;
  transform: translateX(-50%);
}

.hero-tablet-screen {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background: #02040a;
  overflow: hidden;
}

.hero-demo iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: #02040a;
}

.feature-device {
  width: min(100%, 318px, calc((100vh - 190px) * 0.459));
  padding: 7px;
  border: 1px solid #252d38;
  border-radius: 52px;
  background: #090c12;
  box-shadow:
    4px 5px 0 #2b3441,
    0 30px 64px rgba(7, 26, 63, 0.2);
  overflow: visible;
  transform: none;
}

.feature-device::after {
  position: absolute;
  top: 126px;
  right: -7px;
  width: 3px;
  height: 62px;
  border-radius: 0 3px 3px 0;
  background: #626c79;
  content: "";
}

.feature-device:hover {
  box-shadow:
    4px 5px 0 #2b3441,
    0 34px 70px rgba(7, 26, 63, 0.22);
  transform: translateY(-3px);
}

.feature-device img {
  border-radius: 44px;
  clip-path: inset(0 round 44px);
}

.feature-choice {
  min-height: 112px;
  padding: 25px 28px;
  border: 1px solid #d1d9e6;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.feature-choice:hover {
  border-color: #9da9ba;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 26, 63, 0.07);
}

.feature-choice.is-active {
  border: 1.5px solid #111827;
  background: #f4f6f9;
  color: var(--done-ink);
  box-shadow: 0 14px 32px rgba(7, 26, 63, 0.08);
}

.spotlight-section {
  padding-top: 118px;
  padding-bottom: 118px;
  border-top: 1px solid var(--done-line);
  border-bottom: 1px solid var(--done-line);
  background: #f2f6fc;
  color: var(--done-ink);
}

.spotlight-inner {
  gap: clamp(70px, 10vw, 150px);
  grid-template-columns: minmax(320px, 1fr) minmax(270px, 0.7fr);
}

.spotlight-copy {
  max-width: 610px;
}

.spotlight-kicker {
  display: inline-flex;
  min-height: 0;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.spotlight-kicker span {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(36, 84, 232, 0.32);
  border-radius: 7px;
  background: #e8efff;
  color: var(--done-blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.spotlight-copy h2 {
  color: var(--done-ink);
}

.spotlight-copy > p:last-of-type {
  color: var(--done-muted);
}

.spotlight-details {
  color: var(--done-ink);
}

.spotlight-details span::before {
  background: var(--done-blue);
}

.spotlight-device-stage {
  display: grid;
  justify-items: center;
  perspective: 1600px;
}

.spotlight-phone {
  width: min(100%, 310px);
  justify-self: center;
  padding: 7px;
  border: 1px solid #28313f;
  border-radius: 52px;
  background: #090c12;
  box-shadow:
    4px 5px 0 #2b3441,
    0 36px 72px rgba(7, 26, 63, 0.22);
  overflow: visible;
  transform: rotateX(1deg) rotateY(2deg);
  transform-style: preserve-3d;
}

.spotlight-phone::after {
  position: absolute;
  top: 130px;
  right: -7px;
  width: 3px;
  height: 62px;
  border-radius: 0 3px 3px 0;
  background: #626c79;
  content: "";
}

.spotlight-phone img {
  border-radius: 44px;
  clip-path: inset(0 round 44px);
}

@media (max-width: 900px) {
  .hero-tablet,
  .spotlight-phone {
    transform: none;
  }

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

@media (max-width: 700px) {
  .hero-demo {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .hero-tablet {
    padding: 5px;
    border-radius: 22px;
    box-shadow:
      3px 4px 0 #222d3e,
      0 24px 52px rgba(0, 5, 20, 0.34);
  }

  .hero-tablet-screen {
    border-radius: 17px;
  }

  .feature-device {
    width: min(78vw, 300px);
    padding: 6px;
    border-radius: 49px;
    box-shadow:
      3px 4px 0 #2b3441,
      0 26px 54px rgba(7, 26, 63, 0.2);
    transform: none;
  }

  .feature-device img {
    border-radius: 41px;
    clip-path: inset(0 round 41px);
  }

  .spotlight-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .spotlight-phone {
    width: min(76vw, 292px);
    padding: 6px;
    border-radius: 49px;
    box-shadow:
      3px 4px 0 #2b3441,
      0 28px 58px rgba(7, 26, 63, 0.2);
  }

  .spotlight-phone img {
    border-radius: 41px;
    clip-path: inset(0 round 41px);
  }
}

/* Final device and feature presentation */
.hero-demo {
  perspective: 1500px;
}

.hero-device-rig {
  position: relative;
  width: 100%;
  padding: 14px 10px 20px;
  transform-style: preserve-3d;
}

.hero-tablet {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 4px;
  border: 1px solid rgba(157, 190, 239, 0.72);
  border-radius: 26px;
  background: linear-gradient(145deg, #53627a 0%, #161d29 38%, #080c13 100%);
  box-shadow:
    -3px 4px 0 #111827,
    0 34px 72px rgba(0, 5, 20, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: rotateX(0.8deg) rotateY(2.5deg);
  transform-origin: center;
  transform-style: preserve-3d;
}

.hero-tablet::before {
  position: absolute;
  inset: 1px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 23px;
  content: "";
  pointer-events: none;
}

.hero-tablet::after {
  display: none;
}

.hero-tablet-power {
  position: absolute;
  top: 62px;
  left: -5px;
  z-index: 5;
  width: 5px;
  height: 44px;
  border: 1px solid #1a2331;
  border-radius: 4px 2px 2px 4px;
  background: linear-gradient(#303b4d, #78869c 48%, #303b4d);
}

.hero-tablet-volume {
  position: absolute;
  top: -5px;
  z-index: 5;
  width: 31px;
  height: 5px;
  border: 1px solid #1a2331;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(90deg, #303b4d, #6f7d93, #303b4d);
}

.hero-tablet-volume-up {
  left: 62px;
}

.hero-tablet-volume-down {
  left: 101px;
}

.hero-tablet-screen {
  border-radius: 21px;
}

.feature-explorer-grid {
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
}

.feature-device-column {
  perspective: 1500px;
}

.feature-device {
  width: min(100%, 278px, calc((100vh - 176px) * 0.448));
  padding: 4px;
  border: 1px solid #202a38;
  border-radius: 49px;
  background: linear-gradient(145deg, #667386 0%, #151b25 14%, #070a0f 100%);
  box-shadow:
    0 26px 58px rgba(7, 26, 63, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: none;
  transform-origin: center;
}

.feature-device::before {
  position: absolute;
  inset: 1px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 46px;
  content: "";
  pointer-events: none;
}

.feature-device::after {
  display: none;
}

.feature-device:hover {
  box-shadow:
    0 30px 64px rgba(7, 26, 63, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: none;
}

.feature-device img {
  border-radius: 43px;
  clip-path: inset(0 round 43px);
}

.feature-choice-list {
  gap: 14px;
}

.feature-choice {
  min-height: 104px;
  padding: 22px 26px;
  border-color: #d4dce8;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
  grid-template-columns: 1fr;
  gap: 8px;
}

.feature-choice-index {
  display: block;
  color: #2454e8;
  font-family: var(--done-font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-choice:hover {
  border-color: #98a7ba;
  background: #ffffff;
  box-shadow: none;
  transform: translateX(2px);
}

.feature-choice.is-active {
  border: 1px solid #14213a;
  background: #f3f6fa;
  color: var(--done-ink);
  box-shadow: none;
}

.spotlight-section {
  padding-top: 112px;
  padding-bottom: 112px;
  border-top: 0;
  border-bottom: 0;
  background: var(--done-navy);
  color: #ffffff;
}

.spotlight-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(143, 187, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 187, 255, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  pointer-events: none;
}

.spotlight-inner {
  position: relative;
  z-index: 1;
  gap: clamp(70px, 10vw, 142px);
  grid-template-columns: minmax(360px, 1fr) minmax(250px, 0.62fr);
}

.spotlight-kicker span {
  border-color: rgba(143, 187, 255, 0.62);
  background: rgba(143, 187, 255, 0.13);
  color: #b9d2ff;
}

.spotlight-copy h2 {
  color: #ffffff;
}

.spotlight-copy > p:last-of-type {
  color: #cbd9ef;
}

.spotlight-details {
  color: #ffffff;
}

.spotlight-device-stage {
  perspective: 1500px;
}

.spotlight-phone {
  width: min(100%, 278px);
  padding: 4px;
  border: 1px solid #6f8bc1;
  border-radius: 49px;
  background: linear-gradient(145deg, #71809a 0%, #151b25 14%, #070a0f 100%);
  box-shadow:
    0 32px 68px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.27);
  transform: none;
  transform-origin: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.spotlight-phone:hover {
  transform: translateY(-3px);
}

.spotlight-phone::before {
  position: absolute;
  inset: 1px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 46px;
  content: "";
  pointer-events: none;
}

.spotlight-phone::after {
  display: none;
}

.spotlight-phone img {
  border-radius: 43px;
  clip-path: inset(0 round 43px);
}

@media (max-width: 900px) {
  .feature-explorer-grid,
  .spotlight-inner {
    grid-template-columns: 1fr;
  }

  .hero-tablet,
  .feature-device,
  .spotlight-phone {
    transform: none;
  }

}

@media (max-width: 700px) {
  .hero-tablet {
    padding: 4px;
    border-radius: 20px;
    box-shadow:
      2px 3px 0 #111827,
      0 24px 52px rgba(0, 5, 20, 0.36);
  }

  .hero-tablet-screen {
    border-radius: 16px;
  }

  .hero-tablet-power {
    top: 44px;
    height: 34px;
  }

  .feature-device,
  .spotlight-phone {
    width: min(69vw, 270px);
    padding: 4px;
    border-radius: 47px;
  }

  .feature-device img,
  .spotlight-phone img {
    border-radius: 41px;
    clip-path: inset(0 round 41px);
  }

  .spotlight-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Refined Apple-style device presentation */
.hero-device-rig {
  padding: 12px 10px clamp(82px, 10vw, 132px);
}

.hero-tablet {
  transform: translateY(-8px) translateZ(22px) rotateX(0.8deg);
  box-shadow:
    0 3px 0 #111827,
    0 30px 68px rgba(0, 5, 20, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hero-tablet-stand {
  position: absolute;
  right: 18%;
  bottom: clamp(58px, 7vw, 92px);
  z-index: 2;
  width: 64%;
  height: 32%;
  border: 1px solid #3a4658;
  border-radius: 18px;
  background: linear-gradient(150deg, #4d596b 0%, #202938 26%, #090d14 100%);
  box-shadow: 0 18px 34px rgba(0, 4, 14, 0.36);
  transform: rotateX(-8deg) translateZ(-20px);
}

.hero-keyboard {
  position: absolute;
  right: 2%;
  bottom: -10px;
  z-index: 1;
  width: 96%;
  height: clamp(96px, 11vw, 146px);
  border: 1px solid #5c6879;
  border-radius: 14px 14px 25px 25px;
  background: linear-gradient(180deg, #4a5565 0%, #242d3a 22%, #111720 72%, #080b10 100%);
  box-shadow:
    0 22px 36px rgba(0, 4, 14, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.72);
  overflow: hidden;
  transform: perspective(900px) rotateX(67deg) translateY(30%);
  transform-origin: top center;
}

.hero-keyboard-hinge {
  position: absolute;
  top: 4px;
  left: 19%;
  width: 62%;
  height: 7px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #111722, #7b8798 50%, #111722);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.65);
}

.hero-keyboard-keys {
  position: absolute;
  top: 16%;
  right: 5%;
  left: 5%;
  display: grid;
  height: 46%;
  gap: 4px;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.hero-keyboard-keys span {
  min-width: 0;
  border: 1px solid rgba(121, 135, 154, 0.42);
  border-radius: 4px;
  background: linear-gradient(180deg, #252e3b, #0d121a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 1px rgba(0, 0, 0, 0.8);
}

.hero-keyboard-trackpad {
  position: absolute;
  right: 31%;
  bottom: 6%;
  width: 38%;
  height: 29%;
  border: 1px solid rgba(166, 178, 196, 0.45);
  border-radius: 8px;
  background: rgba(24, 31, 42, 0.72);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.feature-device,
.spotlight-phone {
  isolation: isolate;
  overflow: visible;
  transform-style: preserve-3d;
}

.feature-device {
  box-shadow:
    0 0 0 3px #273244,
    0 30px 62px rgba(7, 26, 63, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateZ(0);
}

.feature-device::after {
  display: none;
}

.feature-device:hover {
  box-shadow:
    0 0 0 3px #273244,
    0 34px 68px rgba(7, 26, 63, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-3px) translateZ(0);
}

.spotlight-phone {
  box-shadow:
    7px 9px 0 #1e2a3e,
    0 34px 72px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.27);
  transform: translateZ(0);
}

.spotlight-phone::after {
  display: none;
}

.spotlight-phone:hover {
  transform: translateY(-3px) translateZ(0);
}

.spotlight-kicker {
  position: relative;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
}

.spotlight-kicker .new-feature-label {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #b9d2ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.spotlight-kicker .new-feature-label::before,
.spotlight-kicker .new-feature-label::after {
  position: absolute;
  top: 50%;
  color: #ffffff;
  content: "\2726";
  filter: drop-shadow(0 0 7px rgba(143, 187, 255, 0.8));
  transform: translateY(-54%);
}

.spotlight-kicker .new-feature-label::before {
  left: 0;
  font-size: 17px;
}

.spotlight-kicker .new-feature-label::after {
  right: 3px;
  color: #8fbbff;
  font-size: 12px;
  animation: done-feature-sparkle 2.4s ease-in-out infinite;
}

@keyframes done-feature-sparkle {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-54%) scale(0.8) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: translateY(-54%) scale(1.12) rotate(18deg);
  }
}

@media (max-width: 900px) {
  .feature-device,
  .spotlight-phone {
    transform: none;
  }

  .hero-tablet {
    transform: translateY(-6px) translateZ(18px);
  }
}

@media (max-width: 700px) {
  .hero-device-rig {
    padding: 8px 4px 68px;
  }

  .hero-tablet-stand {
    right: 17%;
    bottom: 48px;
    width: 66%;
  }

  .hero-keyboard {
    right: 1%;
    bottom: -5px;
    width: 98%;
    height: 76px;
  }

  .hero-keyboard-keys {
    gap: 2px;
  }

  .feature-device,
  .spotlight-phone {
    box-shadow:
      5px 6px 0 #273244,
      0 26px 56px rgba(7, 26, 63, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }

  .feature-device {
    box-shadow:
      0 0 0 3px #273244,
      0 26px 56px rgba(7, 26, 63, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spotlight-kicker .new-feature-label::after {
    animation: none;
  }
}
