:root {
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --linen: #e8dfd0;
  --sage: #899b86;
  --slate: #526874;
  --charcoal: #202322;
  --ink: #2c302e;
  --muted: #686d67;
  --line: rgba(32, 35, 34, 0.14);
  --shadow: 0 22px 70px rgba(32, 35, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(247, 243, 234, 0.96) 72%),
    var(--paper);
}

.nav {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--paper);
}

.brand-wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(21, 24, 23, 0.78), rgba(21, 24, 23, 0.44) 42%, rgba(21, 24, 23, 0.12)),
    linear-gradient(0deg, rgba(21, 24, 23, 0.72), rgba(21, 24, 23, 0) 55%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 64px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 253, 248, 0.78);
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 7.6rem);
  font-weight: 500;
  line-height: 0.9;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 253, 248, 0.88);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.button.primary {
  background: var(--paper);
  color: var(--charcoal);
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.48);
  color: var(--paper);
}

.launch-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(980px, 100%);
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.2);
  backdrop-filter: blur(16px);
}

.launch-card div {
  min-height: 112px;
  padding: 22px;
  background: rgba(32, 35, 34, 0.25);
}

.launch-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.launch-card span {
  display: block;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.45;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--slate);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.section-copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.feature {
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.feature strong {
  display: block;
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: 1rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.signup-band {
  background: var(--charcoal);
  color: var(--paper);
}

.signup-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 44px;
  align-items: center;
}

.signup-inner h2 {
  color: var(--paper);
}

.signup-inner .section-copy {
  color: rgba(255, 253, 248, 0.72);
}

.form {
  display: grid;
  gap: 12px;
}

.form input,
.form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  color: var(--paper);
  padding: 0 15px;
  font: inherit;
}

.form input::placeholder {
  color: rgba(255, 253, 248, 0.55);
}

.form select option {
  color: var(--charcoal);
}

.form-note {
  margin: 4px 0 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
}

.index-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: var(--ivory);
}

.index-panel {
  width: min(920px, 100%);
}

.index-panel h1 {
  color: var(--charcoal);
  font-size: clamp(3rem, 8vw, 6rem);
}

.index-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.index-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.index-link {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(32, 35, 34, 0.08);
}

.index-link strong {
  display: block;
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.index-link span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.washed .hero::after {
  background:
    linear-gradient(90deg, rgba(20, 22, 20, 0.76), rgba(20, 22, 20, 0.4) 42%, rgba(20, 22, 20, 0.08)),
    linear-gradient(0deg, rgba(20, 22, 20, 0.66), rgba(20, 22, 20, 0) 55%);
}

.naples .button.primary {
  color: #20343d;
}

.washed .section-kicker,
.washed .nav-links a:hover {
  color: var(--sage);
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    padding: 22px 20px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.7rem;
  }

  .nav-links a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-inner {
    width: min(100% - 32px, 680px);
    padding-bottom: 38px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.2rem);
    max-width: 10ch;
  }

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

  .launch-card,
  .split,
  .signup-inner,
  .index-links {
    grid-template-columns: 1fr;
  }

  .launch-card {
    margin-top: 36px;
  }

  .launch-card div {
    min-height: auto;
  }

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

  .section {
    width: min(100% - 32px, 680px);
    padding: 64px 0;
  }

  .signup-inner {
    width: min(100% - 32px, 680px);
    padding: 58px 0;
  }

  .footer {
    width: min(100% - 32px, 680px);
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-wordmark {
    font-size: 1.35rem;
  }

  .nav-links {
    font-size: 0.66rem;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.2rem);
  }
}
