:root {
  --ink: #12213f;
  --muted: #62708c;
  --line: #d8e4ef;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --teal: #22b7b2;
  --teal-dark: #087f83;
  --lavender: #8d66f6;
  --gold: #f6a300;
  --rose: #ee6f9d;
  --shadow: 0 24px 70px rgba(52, 73, 96, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, rgba(141, 102, 246, 0.11), transparent 28rem),
    radial-gradient(circle at 90% 6%, rgba(34, 183, 178, 0.2), transparent 26rem),
    linear-gradient(180deg, #fbfdff 0%, #eef5f8 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(251, 253, 255, 0.82);
  border-bottom: 1px solid rgba(216, 228, 239, 0.72);
}

.landing-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e4fbf8, #ffffff 58%, #eee9ff);
  border: 1px solid rgba(34, 183, 178, 0.26);
  box-shadow: 0 14px 34px rgba(16, 139, 143, 0.12);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
}

.brand-name {
  display: block;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-tagline {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 14px;
  color: #53617d;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(34, 183, 178, 0.1);
  color: var(--teal-dark);
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid rgba(34, 183, 178, 0.32);
  background: #ffffff;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(44, 72, 92, 0.09);
}

.landing-button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), #1aa7b0);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(10, 151, 152, 0.24);
}

.landing-button.ghost {
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 38px;
  min-height: calc(100vh - 76px);
  padding: 56px 0 38px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-badge,
.section-kicker,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(223, 244, 242, 0.82);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  font-size: clamp(2.85rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 950;
}

.hero h1 span {
  color: var(--teal-dark);
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: #566682;
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 34px;
}

.trust-item {
  min-height: 86px;
  border: 1px solid rgba(216, 228, 239, 0.9);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 38px rgba(42, 69, 95, 0.08);
}

.trust-item strong {
  display: block;
  font-size: 1.35rem;
  color: var(--teal-dark);
}

.trust-item span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(198, 222, 232, 0.96);
  border-radius: 36px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 251, 249, 0.82)),
    #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -34px -62px auto;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(34, 183, 178, 0.16);
  border-radius: 50%;
}

.phone-frame {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 228, 239, 0.94);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 24px;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff, #e8fbf9);
  border: 1px solid rgba(216, 228, 239, 0.9);
}

.phone-title {
  font-size: 1.18rem;
  font-weight: 950;
}

.phone-pill {
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.phone-action {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--gold);
  box-shadow: 0 12px 26px rgba(73, 91, 112, 0.12);
}

.mini-panel {
  margin-top: 14px;
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 228, 239, 0.9);
}

.mini-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 950;
}

.soft-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #e1faf6;
  color: var(--teal-dark);
}

.mood-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.mood-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 0;
  text-align: center;
  background: #ffffff;
}

.mood-chip.active {
  border-color: var(--teal);
  background: #ddfbf7;
}

.progress-line {
  position: relative;
  height: 10px;
  margin-top: 20px;
  border-radius: 999px;
  background: #e7eef5;
  overflow: hidden;
}

.progress-line span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--lavender));
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.mini-stat {
  border-radius: 18px;
  padding: 14px;
  background: #f5f9fc;
  border: 1px solid rgba(216, 228, 239, 0.92);
}

.mini-stat strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.5rem;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  padding: 60px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.section-head h2 {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  font-weight: 950;
}

.section-head p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.feature-card,
.plan-card,
.notice-card {
  border: 1px solid rgba(216, 228, 239, 0.95);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(42, 69, 95, 0.08);
}

.feature-card h3,
.plan-card h3,
.notice-card h3 {
  margin: 16px 0 8px;
  font-size: 1.24rem;
}

.feature-card p,
.notice-card p {
  margin: 0;
  color: var(--muted);
}

.journey-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(198, 222, 232, 0.96);
  border-radius: 34px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(231, 250, 248, 0.76));
  box-shadow: var(--shadow);
}

.journey-copy {
  padding: 10px;
}

.journey-copy h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.journey-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.timeline-card {
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 228, 239, 0.9);
}

.timeline-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(216, 228, 239, 0.8);
}

.timeline-row:last-child {
  border-bottom: 0;
}

.timeline-row strong {
  display: block;
}

.timeline-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.plan-card {
  position: relative;
  overflow: hidden;
}

.plan-card.featured {
  border-color: rgba(34, 183, 178, 0.46);
  background: linear-gradient(145deg, #ffffff, #e7fbf8);
}

.plan-card h3 {
  margin-top: 0;
}

.price {
  margin: 6px 0 12px;
  color: var(--teal-dark);
  font-size: 1.8rem;
  font-weight: 950;
}

.plan-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.plan-card li {
  margin: 8px 0;
}

.notice-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.notice-card.emergency {
  border-color: rgba(246, 163, 0, 0.34);
  background: linear-gradient(135deg, #fffdf8, #fff5d9);
}

.site-footer {
  padding: 36px 0 48px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(216, 228, 239, 0.9);
  padding-top: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  font-weight: 800;
  text-decoration: none;
}

.spark {
  position: absolute;
  width: 14px;
  height: 14px;
  color: var(--lavender);
}

.spark.one {
  top: 12%;
  right: 42%;
}

.spark.two {
  right: 5%;
  bottom: 21%;
  color: var(--teal);
}

@media (max-width: 980px) {
  .hero,
  .journey-panel,
  .notice-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 22px, 560px);
  }

  .landing-nav {
    position: static;
  }

  .landing-nav-inner {
    align-items: flex-start;
    min-height: auto;
    padding: 14px 0;
  }

  .brand-tagline,
  .nav-links a:not(.landing-button) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 26px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .trust-strip,
  .feature-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 38px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .hero-card,
  .journey-panel,
  .feature-card,
  .plan-card,
  .notice-card {
    border-radius: 24px;
  }

  .footer-inner {
    display: block;
  }

  .footer-links {
    margin-top: 16px;
  }
}
