:root {
  --ink: #2b2f36;
  --ink-soft: #4a5462;
  --sea: #5ea7c9;
  --sea-deep: #2f6e90;
  --foam: #e8f5fb;
  --sand: #f7f0e9;
  --sun: #f7d9a5;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(15, 28, 46, 0.18);
  --page-pad: clamp(20px, 6vw, 90px);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fdf7f2 0%, #f0f7fb 35%, #e7f0f7 60%, #f9fbfd 100%);
}

.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-shapes span {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  animation: float 14s ease-in-out infinite;
}

.bg-shapes span:nth-child(1) {
  width: 260px;
  height: 260px;
  background: linear-gradient(140deg, var(--sun), transparent 70%);
  top: -80px;
  left: -60px;
}

.bg-shapes span:nth-child(2) {
  width: 320px;
  height: 320px;
  background: linear-gradient(120deg, var(--sea), transparent 65%);
  bottom: -120px;
  right: -80px;
  animation-delay: -4s;
}

.bg-shapes span:nth-child(3) {
  width: 180px;
  height: 180px;
  background: linear-gradient(120deg, #bfe2f3, transparent 60%);
  top: 30%;
  right: 10%;
  animation-delay: -7s;
}

.nav,
.hero,
.social-proof,
.highlights,
.footer {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--page-pad) 0;
  position: relative;
  z-index: 2;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.ghost {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(15, 28, 46, 0.2);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 6vw;
  padding: 60px var(--page-pad) 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--sea-deep);
  margin-bottom: 14px;
  overflow-wrap: break-word;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  margin: 0 0 18px;
  line-height: 1.1;
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
}


.signup {
  background: var(--card);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.hero-signup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-signup .signup {
  width: min(100%, 520px);
}

.signup-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 0;
}

.signup-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #4a5c70;
  font-size: 0.95rem;
}

.signup-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6fbf97;
  color: #f5fff9;
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 1;
  flex-shrink: 0;
}


.signup input {
  border: 1px solid rgba(15, 28, 46, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: "Nunito", sans-serif;
}

.signup button {
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  background: linear-gradient(120deg, #2f7fd6, #1f5ea8);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.signup input,
.signup button {
  width: 100%;
}


.signup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(46, 110, 144, 0.3);
}

.micro {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.thank-you {
  display: grid;
  gap: 6px;
  text-align: center;
  padding: 18px 10px;
  font-size: 1rem;
  color: var(--ink-soft);
}

.thank-you strong {
  color: var(--ink);
  font-size: 1.1rem;
}


.highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 20px var(--page-pad) 60px;
}

.highlight {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 28, 46, 0.08);
}

.highlight h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight .icon {
  font-size: 1.2rem;
  color: var(--sea-deep);
}

.highlight p {
  margin: 0;
  color: var(--ink-soft);
}

.footer {
  text-align: center;
  padding: 20px var(--page-pad) 40px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.social-proof {
  padding: 10px var(--page-pad) 30px;
}

.quote {
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 10px 24px rgba(15, 28, 46, 0.08);
  text-align: center;
}

.quote p {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}

.quote span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(16px);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .eyebrow {
    letter-spacing: 0.5px;
  }

  .signup {
    padding: 20px;
  }

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