:root {
  --ink: #0e1b2c;
  --blue: #1b3556;
  --blue-2: #2c4a73;
  --blue-soft: #5b7ba3;
  --paper: #f4eee2;
  --paper-2: #ebe4d4;
  --card: #fbf7ef;
  --mist: #dce7e5;
  --muted: #5e6e83;
  --sage: #6c8c7a;
  --amber: #b88440;
  --line: rgba(14, 27, 44, 0.13);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(14, 27, 44, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(244, 238, 226, 0.84);
  border-bottom: 1px solid rgba(14, 27, 44, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 650;
}

.mark {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue);
  transform: rotate(12deg);
  flex: 0 0 auto;
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
  background: var(--paper);
  opacity: 0.92;
}

.mark::before {
  left: 18%;
  top: -8%;
  width: 8%;
  height: 116%;
  transform: rotate(-34deg);
}

.mark::after {
  right: 8%;
  top: 45%;
  width: 84%;
  height: 8%;
  transform: rotate(-8deg);
}

.mark.mini {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 128px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(244, 238, 226, 0.98) 0%, rgba(244, 238, 226, 0.68) 42%, rgba(220, 231, 229, 0.84) 100%),
    radial-gradient(circle at 76% 36%, rgba(184, 132, 64, 0.19), transparent 32%);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(to top, var(--paper), rgba(244, 238, 226, 0));
}

.phone {
  position: absolute;
  width: min(340px, 44vw);
  min-width: 250px;
  border: 1px solid rgba(14, 27, 44, 0.11);
  border-radius: 30px;
  background: rgba(251, 247, 239, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.phone-a {
  right: 7vw;
  top: 118px;
  padding: 24px;
  transform: rotate(4deg);
}

.phone-b {
  right: 4vw;
  top: 384px;
  padding: 28px;
  transform: rotate(-6deg);
}

.phone-top,
.person-row {
  display: flex;
  align-items: center;
}

.phone-top {
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.search-chip {
  margin: 24px 0 18px;
  padding: 18px;
  border-radius: 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid rgba(14, 27, 44, 0.08);
}

.person-row {
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  flex: 0 0 auto;
}

.avatar.navy {
  background: var(--blue-2);
}

.avatar.sage {
  background: var(--sage);
}

.avatar.amber {
  background: var(--amber);
}

.person-row strong,
.person-row small {
  display: block;
}

.person-row small {
  margin-top: 2px;
  color: var(--muted);
}

.micro,
.section-kicker,
.feature-number {
  margin: 0;
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.phone-b h2 {
  margin: 18px 0 12px;
  font-size: 30px;
  line-height: 1.05;
}

.phone-b p:not(.micro) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: var(--mist);
  font-size: 12px;
  font-weight: 600;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(72px, 13vw, 176px);
  line-height: 0.88;
  font-weight: 650;
}

.lede {
  margin: 22px 0 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
  font-weight: 560;
}

.support {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.waitlist-form {
  width: min(620px, 100%);
  margin-top: 34px;
}

.waitlist-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input,
button {
  min-height: 56px;
  border-radius: 8px;
  font: inherit;
}

input {
  width: 100%;
  border: 1px solid rgba(14, 27, 44, 0.16);
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

input:focus {
  border-color: var(--blue-2);
  outline: 3px solid rgba(91, 123, 163, 0.24);
}

button {
  border: 0;
  padding: 0 22px;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

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

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hidden {
  display: none;
}

.section {
  padding: 86px clamp(20px, 5vw, 72px);
}

.intro {
  max-width: 980px;
}

.intro h2,
.privacy h2 {
  margin: 16px 0 0;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid article {
  min-height: 300px;
  padding: 34px clamp(20px, 4vw, 48px);
  border-right: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.5);
}

.feature-grid article:last-child {
  border-right: 0;
}

.feature-grid h3 {
  margin: 72px 0 12px;
  font-size: 28px;
  line-height: 1.08;
}

.feature-grid p,
.privacy p,
.thanks p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.privacy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: end;
  background: var(--mist);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thanks {
  width: min(640px, calc(100% - 40px));
}

.thanks h1 {
  margin-top: 44px;
  font-size: clamp(52px, 10vw, 104px);
  line-height: 0.95;
}

.thanks p {
  margin-top: 22px;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-art {
    position: relative;
    order: 2;
    height: 520px;
    margin: 42px -20px -56px;
  }

  .hero-content {
    order: 1;
  }

  .phone {
    width: 300px;
    min-width: 0;
  }

  .phone-a {
    left: 8%;
    right: auto;
    top: 38px;
  }

  .phone-b {
    left: 24%;
    right: auto;
    top: 245px;
  }

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

  .feature-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid article:last-child {
    border-bottom: 0;
  }

  .feature-grid h3 {
    margin-top: 42px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(70px, 24vw, 112px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
  }

  .hero-art {
    height: 480px;
    margin-left: -18px;
    margin-right: -18px;
  }

  .phone {
    width: 286px;
  }

  .phone-a {
    left: 16px;
  }

  .phone-b {
    left: 54px;
    top: 242px;
  }

  .section {
    padding: 68px 18px;
  }

  footer {
    display: grid;
    gap: 10px;
    padding: 24px 18px;
  }
}
