:root {
  --foam: #f8f5f0;
  --surface: #fffdf9;
  --sand: #d6c6b4;
  --shell: #eecdc2;
  --seafoam: #94b5b0;
  --ocean: #315f76;
  --charcoal: #25485b;
  --muted: #6e7f86;
  --border: #ddd2c4;
  --shadow: 0 22px 70px rgba(37, 72, 91, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--foam);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(221, 210, 196, 0.78);
  background: rgba(248, 245, 240, 0.9);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ocean);
  border-radius: 50%;
  color: var(--ocean);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 23px;
}

.brand-name {
  color: var(--ocean);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ocean);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  min-height: calc(100svh - 72px);
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 72px) clamp(32px, 6vw, 64px);
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--ocean);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(3.15rem, 8vw, 6.7rem);
  font-weight: 400;
  line-height: 0.95;
}

.hero-text {
  max-width: 620px;
  color: #4d6672;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--ocean);
  border-radius: var(--radius);
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.primary {
  background: var(--ocean);
  color: #fffdf9;
  box-shadow: 0 14px 32px rgba(49, 95, 118, 0.22);
}

.secondary {
  background: rgba(255, 253, 249, 0.58);
  color: var(--ocean);
}

.launch-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.launch-note span {
  padding: 8px 11px;
  border: 1px solid rgba(49, 95, 118, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.64);
  color: #58717c;
  font-size: 0.85rem;
}

.hero-visual {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(49, 95, 118, 0.2);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 5vw, 70px);
  padding: clamp(38px, 6vw, 72px) clamp(20px, 5vw, 72px);
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.intro-band p:first-child {
  color: var(--ocean);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1;
}

.intro-band p:last-child {
  max-width: 740px;
  color: #526a75;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.audience-panel {
  min-height: 430px;
  padding: clamp(34px, 5.5vw, 76px);
}

.client-panel {
  background: #e9f0ed;
}

.pro-panel {
  background: #f3dfd7;
}

.audience-panel h2,
.signup-copy h2 {
  max-width: 620px;
  color: var(--ocean);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  font-weight: 400;
  line-height: 1;
}

.audience-panel ul {
  display: grid;
  gap: 14px;
  max-width: 590px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.audience-panel li {
  position: relative;
  padding-left: 25px;
  color: #425d68;
  font-size: 1.02rem;
}

.audience-panel li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ocean);
  content: "";
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.feature-band div {
  min-height: 270px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--foam);
}

.feature-number {
  display: block;
  margin-bottom: 40px;
  color: var(--seafoam);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 2.1rem;
}

.feature-band h3 {
  margin-bottom: 14px;
  color: var(--ocean);
  font-size: 1.2rem;
}

.feature-band p {
  max-width: 430px;
  color: #5d747e;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 560px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(44px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.signup-copy {
  position: sticky;
  top: 112px;
}

.signup-copy p:last-child {
  max-width: 580px;
  color: #526a75;
  font-size: 1.08rem;
}

.waitlist-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(49, 95, 118, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hidden-field {
  display: none;
}

.role-toggle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.role-toggle legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 760;
}

.role-toggle label {
  min-width: 0;
}

.role-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.role-toggle span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #5e737c;
  font-size: 0.94rem;
  font-weight: 740;
  text-align: center;
  cursor: pointer;
}

.role-toggle input:checked + span {
  border-color: var(--ocean);
  background: #e9f0ed;
  color: var(--ocean);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 760;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--charcoal);
  font: inherit;
  font-weight: 500;
}

input {
  min-height: 48px;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
  min-height: 116px;
  padding: 13px;
}

input:focus,
textarea:focus,
.role-toggle input:focus-visible + span {
  border-color: var(--ocean);
  outline: 3px solid rgba(148, 181, 176, 0.35);
}

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

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--ocean);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--border);
  color: #607780;
}

.site-footer span {
  color: var(--ocean);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-socials {
  min-height: 24px;
  min-width: 120px;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .intro-band,
  .audience-grid,
  .feature-band,
  .signup-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 640px;
  }

  .audience-panel {
    min-height: auto;
  }

  .signup-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.09em;
  }

  h1 {
    font-size: clamp(2.72rem, 12.7vw, 3.35rem);
    line-height: 0.98;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intro-band p:first-child,
  .audience-panel h2,
  .signup-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .role-toggle,
  .form-grid {
    grid-template-columns: 1fr;
  }

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