:root {
  --bg: #edf4f8;
  --paper: #ffffff;
  --ink: #102033;
  --muted: #607286;
  --soft: #dce9ef;
  --line: rgba(20, 42, 61, 0.12);
  --teal: #0b9cb4;
  --teal-dark: #087f93;
  --green: #168257;
  --violet: #6a4fcc;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
  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;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
}

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

.launch-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 9px 18px;
  color: #f6fbfd;
  background: #102033;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.launch-banner span {
  color: rgba(246, 251, 253, 0.74);
  font-weight: 680;
}

.launch-banner strong {
  font-weight: 820;
}

.site-header,
main,
.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

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

.brand {
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(11, 156, 180, 0.22);
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  min-height: calc(100svh - 126px);
  padding: clamp(26px, 5vw, 64px) 0 clamp(48px, 8vw, 92px);
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(64px, 12vw, 132px);
  line-height: 0.88;
}

.hero-lede {
  margin-bottom: 34px;
  color: #40566c;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.46;
}

.signup {
  display: grid;
  gap: 11px;
  width: min(100%, 560px);
}

.signup label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.signup-row {
  display: flex;
  gap: 10px;
}

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

.signup input {
  min-width: 0;
  flex: 1;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.signup button {
  flex: 0 0 auto;
  border: 0;
  padding: 0 20px;
  color: #f6fbfd;
  background: var(--teal);
  font-weight: 820;
  cursor: pointer;
}

.signup button:hover {
  background: var(--teal-dark);
}

.owned {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-preview {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.2vw, 24px);
  align-items: center;
  min-height: 540px;
}

.product-preview img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.preview-ask {
  transform: translateY(44px);
}

.flow,
.useful,
.trust {
  border-top: 1px solid var(--line);
  padding: clamp(54px, 9vw, 96px) 0;
}

.section-heading,
.useful,
.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
}

.section-heading {
  align-items: end;
  margin-bottom: 34px;
}

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

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.flow-grid article {
  min-height: 300px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.62);
}

.flow-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 820;
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.08;
}

.flow-grid p,
.useful li,
.trust p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.flow-grid p {
  margin-bottom: 0;
}

.useful ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.useful li {
  padding-left: 22px;
  border-left: 3px solid var(--teal);
}

.trust {
  align-items: start;
}

.trust p {
  max-width: 680px;
  margin-bottom: 0;
}

.legal-page {
  max-width: 820px;
  padding: clamp(56px, 8vw, 92px) 0 clamp(72px, 10vw, 118px);
}

.legal-page h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 86px);
}

.legal-lede {
  margin-bottom: 46px;
  color: #40566c;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
}

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

.legal-page h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 42px);
}

.legal-page p,
.legal-list {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 760;
}

@media (max-width: 920px) {
  .hero,
  .section-heading,
  .useful,
  .trust {
    grid-template-columns: 1fr;
  }

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

  .product-preview {
    min-height: 0;
    max-width: 680px;
  }

  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .launch-banner {
    flex-direction: column;
    gap: 2px;
    min-height: 58px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    gap: 34px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .signup-row {
    flex-direction: column;
  }

  .signup button {
    width: 100%;
  }

  .product-preview {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-preview img {
    max-height: none;
  }

  .preview-ask {
    transform: none;
  }

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

  .flow-grid article {
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
