:root {
  color-scheme: light;
  --ink: #071634;
  --navy: #071f57;
  --night: #041331;
  --gold: #ffd84d;
  --sun: #ff8a1f;
  --mint: #3fc37b;
  --violet: #7156d9;
  --paper: #fffaf0;
  --cream: #fff4dc;
  --line: rgba(7, 22, 52, 0.12);
  --shadow: 0 22px 70px rgba(7, 22, 52, 0.16);
  --content: min(1120px, calc(100vw - 40px));
  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;
  background: #fffdf8;
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 10;
  display: flex;
  width: var(--content);
  height: 72px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
}

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

.brand-mark {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(7, 22, 52, 0.14);
  border-radius: 50%;
  background: white;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.nav-links {
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(7, 22, 52, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(7, 22, 52, 0.08);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(7, 22, 52, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  background: rgba(7, 22, 52, 0.07);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  background:
    linear-gradient(135deg, #fff 0%, #fffdf8 48%, #fff5d8 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--content);
  margin: 0 auto;
  min-height: 100svh;
  padding: 86px 0 36px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  color: var(--ink);
}

.hero-text {
  padding: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 650px;
  font-size: clamp(3.5rem, 10vw, 7.8rem);
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(7, 22, 52, 0.74);
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
  line-height: 1.58;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: min(64vh, 620px);
  align-items: end;
  justify-items: center;
}

.hero-visual::before {
  position: absolute;
  right: 8%;
  bottom: 7%;
  width: min(84%, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(7, 22, 52, 0.08);
  border-radius: 50%;
  background: #fff7e4;
  content: "";
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(70vh, 640px);
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(7, 22, 52, 0.16));
}

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

.button,
.signup-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.button {
  padding: 0 22px;
}

.button.primary {
  background: var(--gold);
  color: var(--night);
}

.button.secondary {
  border: 1px solid rgba(7, 22, 52, 0.14);
  background: white;
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.trust-strip {
  display: grid;
  width: var(--content);
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1rem;
}

.trust-strip span {
  margin-top: 6px;
  color: rgba(7, 22, 52, 0.62);
}

.section,
.feature-band {
  width: var(--content);
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 680px;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.curation-grid {
  display: grid;
  margin-top: 38px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.curation-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(7, 22, 52, 0.08);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
}

.card-icon.blue {
  background: #2474df;
}

.card-icon.green {
  background: var(--mint);
}

.card-icon.violet {
  background: var(--violet);
}

.card-icon.amber {
  background: var(--sun);
}

.curation-card h3 {
  margin-top: 58px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.curation-card p,
.feature-copy p,
.join-copy p,
.form-note {
  color: rgba(7, 22, 52, 0.68);
  line-height: 1.64;
}

.curation-card p {
  margin: 14px 0 0;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
  padding: 72px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
}

.feature-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

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

.feature-list div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--night);
  font-weight: 900;
}

.feature-list p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 56px;
  align-items: center;
}

.signup-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

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

.signup-form input {
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.signup-form button {
  padding: 0 20px;
  background: var(--sun);
  color: var(--night);
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  width: var(--content);
  margin: 0 auto;
  padding: 34px 0 46px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(7, 22, 52, 0.68);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  :root {
    --content: min(100vw - 28px, 760px);
  }

  .site-header {
    height: 66px;
  }

  .brand-mark span:last-child {
    display: none;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .trust-strip,
  .curation-grid,
  .feature-band,
  .join-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.58fr);
    gap: 18px;
    padding: 78px 0 30px;
  }

  .hero-text {
    padding: 0;
  }

  .hero-visual {
    min-height: 420px;
    order: initial;
  }

  .hero-visual img {
    width: min(100%, 340px);
    max-height: min(58vh, 440px);
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .curation-card {
    min-height: 210px;
  }

  .curation-card h3 {
    margin-top: 42px;
  }

  .feature-band {
    padding: 36px 22px;
  }
}

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

  .nav-links a {
    padding: 8px 8px;
  }

  .hero-content {
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(104px, 34vw);
    gap: 10px;
    padding: 76px 0 20px;
  }

  h1 {
    font-size: clamp(2.4rem, 14.5vw, 3.9rem);
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(0.92rem, 4.2vw, 1.05rem);
    line-height: 1.48;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .hero-visual {
    min-height: auto;
    align-self: center;
    align-items: center;
  }

  .hero-visual::before {
    right: 3%;
    bottom: 2%;
    width: 108%;
  }

  .hero-visual img {
    width: min(32vw, 138px);
    max-height: 34vh;
  }

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

  .signup-form button {
    width: 100%;
  }

  .site-footer {
    display: grid;
    gap: 8px;
  }
}
