:root {
  color-scheme: light;
  --ink: #24322d;
  --muted: #66766f;
  --line: #e9e4d8;
  --paper: #fffaf1;
  --white: #ffffff;
  --mint: #c9f4dc;
  --mint-strong: #31c979;
  --leaf: #167e52;
  --coral: #ff7b65;
  --sun: #ffd766;
  --sky: #bfe9ff;
  --blue: #3f8efc;
  --shadow: 0 22px 70px rgba(47, 61, 51, 0.14);
  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: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.section-pad {
  padding: 76px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(233, 228, 216, 0.72);
  background: rgba(255, 250, 241, 0.84);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 850;
  font-size: 1.25rem;
}

.brand-mark,
.mini-mark {
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--mint-strong);
  color: var(--white);
  font-weight: 900;
}

.brand-mark {
  width: 40px;
  height: 40px;
  box-shadow: 0 8px 20px rgba(49, 201, 121, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-weight: 700;
}

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

.hero {
  padding-top: 54px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  column-gap: clamp(2.5rem, 8vw, 8rem);
  row-gap: 0;
}

.hero-copy {
  max-width: 760px;
}

.mobile-copy {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--leaf);
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.status-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--mint-strong);
  box-shadow: 0 0 0 6px rgba(49, 201, 121, 0.16);
}

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

h1 {
  margin-bottom: 1.15rem;
  max-width: 880px;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  line-height: 1.18;
}

.hero-text,
.personalization-grid p,
.final-cta p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.signup-panel {
  margin-top: 2rem;
  max-width: 640px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.8rem;
  box-shadow: 0 20px 50px rgba(70, 83, 72, 0.08);
}

.signup-context {
  padding: 0.55rem 0.45rem 0.75rem;
}

.signup-context .eyebrow {
  margin-bottom: 0.45rem;
}

.signup-context p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.email-signup label {
  display: block;
  margin: 0 0 0.55rem 0.4rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.signup-row {
  display: flex;
  gap: 0.65rem;
}

.signup-row input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  padding: 0 1rem;
  outline: none;
}

.signup-row input:focus {
  border-color: var(--mint-strong);
  box-shadow: 0 0 0 4px rgba(49, 201, 121, 0.16);
}

.button {
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1.35rem;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 4px solid rgba(63, 142, 252, 0.28);
  outline-offset: 3px;
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(255, 123, 101, 0.27);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  display: none;
}

.is-loading .button-spinner {
  display: inline-block;
  animation: spin 800ms linear infinite;
}

.form-message {
  min-height: 1.45rem;
  margin: 0.65rem 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.email-signup.is-success .form-message {
  color: var(--leaf);
  font-weight: 850;
}

.email-signup.is-error .form-message {
  color: #b24534;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  grid-row: 1 / span 2;
  grid-column: 2;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(340px, 88vw);
  border-radius: 52px;
  padding: 14px;
  background: #293631;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.phone-screen {
  min-height: 590px;
  border-radius: 40px;
  background: linear-gradient(180deg, #fffdf8 0%, #f4fff7 100%);
  padding: 24px;
  overflow: hidden;
}

.app-topbar,
.alert-summary,
.product-card,
.info-grid {
  display: flex;
  align-items: center;
}

.app-topbar {
  justify-content: space-between;
  margin-bottom: 2.1rem;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 900;
}

.mini-mark {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  font-size: 0.85rem;
}

.app-pill,
.source-pill,
.relevance-badge,
.relevant-line {
  border-radius: 999px;
  background: var(--mint);
  color: var(--leaf);
  font-weight: 900;
}

.app-pill {
  padding: 0.38rem 0.72rem;
  font-size: 0.82rem;
}

.alert-summary {
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.alert-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--sun);
  color: #7a5200;
  font-weight: 1000;
  font-size: 1.55rem;
}

.alert-kicker,
.product-meta {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.alert-summary h2 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.04;
}

.product-card {
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  padding: 0.85rem;
}

.product-art {
  width: 66px;
  height: 78px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.6) 42% 58%, transparent 58%),
    linear-gradient(180deg, var(--coral), #ffbb73);
}

.product-name {
  margin-bottom: 0.1rem;
  font-weight: 900;
}

.alert-copy {
  margin: 1.25rem 0;
  color: var(--muted);
}

.relevance-badge {
  display: inline-flex;
  padding: 0.62rem 0.9rem;
}

.info-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  color: var(--muted);
}

.info-grid span,
.info-grid strong {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
}

.info-grid strong {
  color: var(--ink);
  text-align: right;
}

.float-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: var(--white);
  padding: 0.72rem 1rem;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(47, 61, 51, 0.12);
  animation: floaty 5.5s ease-in-out infinite;
}

.chip-1 {
  left: max(0.25rem, calc(50% - 270px));
  top: 22%;
  border: 2px solid var(--sun);
}

.chip-2 {
  right: max(0.25rem, calc(50% - 280px));
  bottom: 28%;
  border: 2px solid var(--sky);
  animation-delay: 1.2s;
}

.narrow-heading {
  max-width: 760px;
  text-align: center;
}

.narrow-heading p {
  justify-content: center;
}

.steps-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.feature-card,
.alert-card,
.why-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.35rem;
}

.feature-card p,
.alert-card p,
.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-block;
  margin-bottom: 1.1rem;
  border-radius: 18px;
  background: var(--mint);
  position: relative;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.icon-pick::before {
  inset: 14px;
  border: 4px solid var(--leaf);
  border-radius: 50%;
}

.icon-pick::after {
  width: 16px;
  height: 8px;
  left: 20px;
  top: 23px;
  border-left: 4px solid var(--leaf);
  border-bottom: 4px solid var(--leaf);
  transform: rotate(-45deg);
}

.icon-monitor {
  background: var(--sky);
}

.icon-monitor::before {
  left: 15px;
  top: 13px;
  width: 26px;
  height: 30px;
  border: 4px solid var(--blue);
  border-radius: 8px;
}

.icon-monitor::after {
  left: 24px;
  bottom: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.icon-update {
  background: #ffe2dc;
}

.icon-update::before {
  left: 14px;
  top: 18px;
  width: 28px;
  height: 20px;
  border: 4px solid var(--coral);
  border-radius: 12px;
}

.icon-update::after {
  right: 10px;
  top: 11px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--coral);
}

.personalized {
  background: var(--white);
}

.personalization-grid,
.alerts-layout,
.final-cta-inner,
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.chip-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 0.78rem 1rem;
  font-weight: 850;
}

.chip-cloud span:nth-child(3n + 1) {
  background: var(--mint);
}

.chip-cloud span:nth-child(3n + 2) {
  background: #ffe2dc;
}

.chip-cloud span:nth-child(3n + 3) {
  background: var(--sky);
}

.alerts-section {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.illustration-wrap {
  border-radius: 32px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(47, 61, 51, 0.1);
}

.alert-card-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.alert-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.source-pill {
  display: inline-flex;
  padding: 0.34rem 0.64rem;
  font-size: 0.8rem;
}

.source-pill.blue {
  background: var(--sky);
  color: #145c98;
}

.relevant-line {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.55rem 0.78rem;
}

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

.why-grid article {
  background: transparent;
}

.small-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--sun);
  color: var(--leaf);
  font-size: 0;
}

.final-cta {
  padding-top: 36px;
}

.final-cta-inner {
  border-radius: 34px;
  background: var(--mint);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.final-cta .eyebrow,
.final-cta p {
  color: #285644;
}

.email-signup.light {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
  padding: 0.9rem;
}

.site-footer {
  padding: 46px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: start;
}

.footer-grid p,
.footer-bottom p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.2rem;
  color: var(--muted);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--leaf);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: var(--leaf);
  transform: translateY(-1px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  font-size: 0.9rem;
}

.footer-bottom-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  white-space: nowrap;
}

.footer-bottom-meta p {
  margin: 0;
}

.legal-page .site-header {
  position: static;
}

.legal-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.legal-main {
  flex: 1;
  padding: 64px 0;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.legal-card h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.legal-card h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a {
  color: var(--leaf);
  font-weight: 850;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floaty {
  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 58px 0;
  }

  .hero-grid,
  .personalization-grid,
  .alerts-layout,
  .final-cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-visual {
    grid-row: auto;
    grid-column: auto;
    min-height: auto;
    padding-top: 1rem;
  }

  .phone-shell {
    transform: none;
  }

  .steps-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1360px);
  }

  .section-pad {
    padding: 42px 0;
  }

  .nav {
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 1.12rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid {
    gap: 0.9rem;
  }

  .eyebrow {
    margin-bottom: 0.7rem;
    font-size: 1rem;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(2.2rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .hero-text {
    margin-bottom: 0;
    font-size: 1.04rem;
    line-height: 1.45;
  }

  .hero-visual {
    display: block;
    min-height: 0;
    height: 255px;
    margin: 0 0 -0.95rem;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    background: rgba(255, 255, 255, 0.78);
    padding-top: 0;
    overflow: hidden;
  }

  .phone-shell {
    width: min(320px, 82vw);
    margin: 0 auto;
    padding: 10px;
    border-radius: 40px;
    transform: rotate(2deg) translateY(4px);
  }

  .phone-screen {
    min-height: 520px;
    padding: 20px;
    border-radius: 31px;
  }

  .app-topbar {
    margin-bottom: 1.55rem;
  }

  .alert-summary {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .alert-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.35rem;
  }

  .alert-summary h2 {
    font-size: 1.45rem;
  }

  .product-card {
    border-radius: 20px;
    padding: 0.72rem;
  }

  .product-art {
    width: 54px;
    height: 64px;
    border-radius: 14px;
  }

  .signup-panel {
    margin-top: 0;
    border-top: 0;
    border-radius: 0 0 22px 22px;
    padding: 0.65rem;
  }

  .signup-row {
    flex-direction: column;
    gap: 0.55rem;
  }

  .button,
  .signup-row input {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
  }

  .float-chip {
    padding: 0.52rem 0.72rem;
    font-size: 0.78rem;
  }

  .chip-1 {
    left: 0;
    top: 30%;
  }

  .chip-2,
  .alert-copy,
  .relevance-badge,
  .info-grid {
    display: none;
  }

  .steps-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .alert-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }
}
