:root {
  color-scheme: light;
  --ink: #1e1c16;
  --sand: #f6efe5;
  --coral: #e96a4f;
  --teal: #2c6a63;
  --citrine: #f1c76d;
  --cloud: #fff9f2;
  --shadow: rgba(31, 20, 6, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff2dc 0%, #f5e6d2 45%, #efe0cc 100%);
  min-height: 100vh;
}

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

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease-out;
}

.logo {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff6ea 0%, #fbe7d1 55%, #f2dbc2 100%);
  box-shadow: 0 24px 70px var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 199, 109, 0.5), rgba(241, 199, 109, 0));
}

.hero-copy {
  display: grid;
  gap: 18px;
  animation: fadeUp 0.8s ease-out;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--teal);
  font-weight: 600;
}

h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  margin: 0;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-weight: 600;
  cursor: pointer;
  background: transparent;
}

.btn.primary {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.btn.ghost {
  opacity: 0.6;
  border-style: dashed;
}

.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cloud);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp 1s ease-out;
}

.phone {
  width: 260px;
  height: 520px;
  background: #201a13;
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(23, 17, 11, 0.3);
}

.phone-screen {
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #fef4e7 0%, #fffaf2 100%);
  padding: 20px;
  display: grid;
  gap: 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.screen-top {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.dot,
.pill {
  background: #c8b6a2;
  border-radius: 999px;
}

.dot {
  width: 8px;
  height: 8px;
}

.pill {
  width: 40px;
  height: 8px;
}

.ritual {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: #fff;
  border-radius: var(--radius-sm);
}

.progress {
  height: 10px;
  background: #ead8c1;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 60%;
  background: var(--teal);
}

.mini-btn {
  border: none;
  border-radius: 999px;
  padding: 10px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
}

.glow-circle {
  position: absolute;
  inset: auto 0 -30px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(233, 106, 79, 0.5), rgba(233, 106, 79, 0));
  border-radius: 50%;
  z-index: -1;
}

.features,
.notify {
  margin-top: 64px;
  animation: fadeUp 1s ease-out;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin: 0 0 8px;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-grid article {
  background: var(--cloud);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 35px rgba(29, 17, 7, 0.08);
}

.notify-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 20px;
  box-shadow: 0 18px 40px rgba(29, 17, 7, 0.12);
}

.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.notify-form input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #d9c6af;
  font-size: 15px;
}

.fine-print {
  font-size: 13px;
  color: #5b4c3b;
}

.site-footer {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #5b4c3b;
}

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

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

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
