:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5f6f69;
  --quiet: #82908b;
  --moss: #516b53;
  --moss-dark: #354b39;
  --saffron: #c9822f;
  --paper: #f7f1e7;
  --surface: #fffdf8;
  --white: #ffffff;
  --mist: #e8eef0;
  --line: rgba(37, 50, 45, 0.14);
  --shadow: 0 24px 70px rgba(23, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(232, 238, 240, 0.8) 0, rgba(247, 241, 231, 0) 360px),
    var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 241, 231, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

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

main {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 68px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 58px 0 42px;
}

.hero-content {
  padding-bottom: 28px;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  font-weight: 650;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(23, 33, 29, 0.08);
}

.button.primary {
  border-color: transparent;
  background: var(--moss-dark);
  color: white;
}

.button.is-disabled {
  cursor: default;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--quiet);
  font-size: 0.95rem;
  font-weight: 700;
}

.phone-demo {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.phone-shell {
  width: min(100%, 378px);
  border-radius: 44px;
  padding: 13px;
  background: #18211e;
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 660px;
  border-radius: 34px;
  padding: 24px 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(201, 130, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #fffdf8 0, #f3eadc 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.9rem;
  font-weight: 850;
}

.phone-top img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.progress-track {
  height: 8px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 33, 29, 0.08);
}

.progress-track span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: var(--saffron);
}

.screen-label {
  margin: 0 0 8px;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-screen h2 {
  margin-bottom: 22px;
  font-size: 2.15rem;
  line-height: 1.02;
}

.presence {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(23, 33, 29, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.presence span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.presence span:last-child {
  text-align: right;
}

.presence strong {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--moss);
  color: white;
  font-size: 2rem;
}

.quote-panel {
  margin: 0 0 18px;
  padding: 18px;
  border-radius: 8px;
  background: #eef4ef;
}

.quote-panel p {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.quote-panel span,
.unlock-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.unlock-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(23, 33, 29, 0.1);
  border-bottom: 1px solid rgba(23, 33, 29, 0.1);
}

.unlock-row strong {
  color: var(--moss-dark);
}

.screen-button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--saffron);
  color: #fff;
  font-weight: 900;
}

.section {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

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

.step {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
  border-radius: 8px;
  padding: 22px;
}

.step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step p,
.legal-meta,
.legal-intro {
  color: var(--muted);
  font-weight: 620;
}

.simple-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.simple-section h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.simple-section p {
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 650;
}

.simple-list {
  display: grid;
  gap: 12px;
}

.simple-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.simple-list strong,
.simple-list span {
  display: block;
}

.simple-list strong {
  margin-bottom: 4px;
}

.simple-list span {
  color: var(--muted);
  font-weight: 620;
}

.links-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 0 64px;
}

.links-section a {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--moss-dark);
  font-weight: 800;
  text-decoration: none;
}

.legal {
  max-width: 860px;
  padding: 56px 0 72px;
}

.legal h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-meta {
  margin-bottom: 18px;
}

.legal-intro {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.legal section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.legal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.legal ul {
  padding-left: 22px;
  color: var(--muted);
  font-weight: 620;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

.site-footer .inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-weight: 650;
}

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

@media (max-width: 760px) {
  .nav {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
  }

  .nav,
  main,
  .site-footer .inner {
    width: min(350px, calc(100% - 32px));
  }

  .nav-links {
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 26px 0 22px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(2.45rem, 10vw, 2.75rem);
    line-height: 0.96;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
  }

  .phone-demo {
    justify-content: flex-start;
    max-height: 110px;
    overflow: hidden;
  }

  .phone-shell {
    max-width: 350px;
    border-radius: 34px;
    padding: 10px;
  }

  .phone-screen {
    min-height: 460px;
    border-radius: 26px;
    padding: 20px 18px;
  }

  .phone-screen h2 {
    font-size: 1.7rem;
  }

  .presence {
    padding: 14px;
  }

  .presence strong {
    width: 54px;
    height: 54px;
  }

  .steps,
  .simple-section {
    grid-template-columns: 1fr;
  }

  .section,
  .simple-section {
    padding-top: 14px;
  }

  .simple-section {
    gap: 16px;
  }
}

@media (max-width: 430px) {
  .nav-links {
    gap: 10px;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 2.65rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }
}
