:root {
  --bg: #d6dde0;
  --bg-soft: #ecf3f5;
  --paper: #f6fbfc;
  --ink: #173340;
  --ink-soft: #5b737d;
  --teal: #2d7889;
  --teal-deep: #205e6f;
  --teal-pale: #b9e0ea;
  --line: #b4c8cf;
  --shadow: 0 12px 34px rgba(28, 63, 73, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(600px 280px at 88% -2%, rgba(185, 224, 234, 0.8), transparent),
    radial-gradient(540px 240px at -4% 12%, rgba(183, 213, 222, 0.7), transparent),
    var(--bg);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(214, 221, 224, 0.84);
  border-bottom: 1px solid rgba(180, 200, 207, 0.6);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  font-size: 1.3rem;
}

.top-links {
  display: inline-flex;
  gap: 20px;
}

.top-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

.top-links a:hover {
  color: var(--teal-deep);
}

.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-copy {
  background: linear-gradient(160deg, rgba(245, 251, 253, 0.74), rgba(229, 239, 244, 0.58));
  border: 1px solid rgba(172, 196, 206, 0.56);
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: 0 10px 22px rgba(30, 63, 74, 0.1);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 10px;
  font-size: 0.8rem;
}

h1,
h2,
h3,
.brand-text {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  max-width: 14ch;
  letter-spacing: -0.028em;
  margin-top: 2px;
}

h2 {
  font-size: clamp(1.7rem, 4.2vw, 2.35rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hero-copy p {
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 14px 0 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-lead {
  margin-top: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(125deg, var(--teal) 0%, #3a90a5 100%);
  color: #f7feff;
  box-shadow: 0 10px 22px rgba(45, 120, 137, 0.35);
}

.btn-soft {
  color: var(--teal-deep);
  border: 1px solid var(--line);
  background: rgba(245, 251, 252, 0.9);
}

.social-proof {
  font-size: 0.92rem;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(171, 196, 204, 0.48);
  color: #5f7780;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0;
}

.store-badge {
  min-height: 84px;
  min-width: 256px;
  padding: 12px 18px;
  border-radius: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.store-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
}

.store-name {
  margin-top: 5px;
  font-size: 1.82rem;
  font-weight: 700;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.03em;
}

.store-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

.store-play {
  background: #1b1722;
  border-color: #1b1722;
  color: #f8f8fb;
  box-shadow: 0 12px 22px rgba(23, 20, 30, 0.24);
}

.store-play .store-label {
  color: #b8b1c3;
}

.store-apple {
  background: #f7f7fb;
  border-color: #d8d0df;
  color: #756984;
}

.store-apple .store-label {
  color: #7d708a;
}

.cta-meta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: #1b5f70;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(151, 181, 191, 0.72);
  border-radius: 999px;
  padding: 9px 15px;
  background: rgba(245, 251, 252, 0.7);
}

.cta-meta-link::after {
  content: "→";
  font-size: 0.95rem;
}

.cta-meta-link:hover {
  background: #f3f9fb;
  transform: translateY(-1px);
}

.hero-phone {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: min(340px, 100%);
  margin: 0;
  border-radius: 42px;
  border: 1px solid #aebfc7;
  background: linear-gradient(180deg, #dfe9ee 0%, #eef4f6 100%);
  box-shadow: 0 18px 38px rgba(28, 63, 73, 0.2);
  padding: 10px;
}

.phone-top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 4px 0 10px;
}

.phone-camera {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #132d37;
  box-shadow: 0 0 0 2px rgba(19, 45, 55, 0.08);
}

.phone-speaker {
  width: 84px;
  height: 12px;
  border-radius: 999px;
  background: #132d37;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, #eef4f7 0%, #f7fafb 100%);
  border: 1px solid rgba(151, 176, 185, 0.72);
  min-height: 545px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  margin: 0;
  min-height: 545px;
  padding: 0;
  background: linear-gradient(180deg, #eef4f7 0%, #f8fbfc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  max-height: 516px;
  object-fit: cover;
  object-position: center center;
  border-radius: 30px;
  display: block;
  box-shadow: none;
  background: #eef4f7;
}

.mini-status,
.app-header,
.screen-heading-row,
.chat-header,
.icebreaker-top,
.carousel-shell-controls,
.screen-title-block,
.mini-stats-grid {
  display: flex;
  align-items: center;
}

.mini-status {
  justify-content: space-between;
  color: #607a86;
  font-size: 0.86rem;
  font-weight: 600;
}

.app-header,
.screen-heading-row,
.chat-header {
  justify-content: space-between;
}

.app-name {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
}

.screen-kicker,
.chat-header p {
  margin: 2px 0 0;
  color: #6a818b;
  line-height: 1.2;
}

.avatar-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #667f8a;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.screen-title-block {
  gap: 12px;
  margin-top: 4px;
}

.shield-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.shield-mark svg {
  width: 100%;
  height: 100%;
}

.screen-title-block h3,
.screen-heading-row h3,
.chat-header h3,
.profile-card h4,
.reminder-card strong,
.modal-card strong {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.screen-title-block p,
.reminder-card p,
.form-block label,
.form-field,
.form-area,
.screen-tile span,
.chat-preview .bubble,
.modal-card p,
.profile-card span,
.stats-card p,
.mini-stat p {
  margin: 2px 0 0;
  color: #5f7781;
}

.screen-tile,
.reminder-card,
.form-block,
.form-field,
.form-area,
.pill-button,
.profile-card,
.stats-card,
.mini-stat,
.icebreaker-card,
.chat-compose,
.bubble,
.modal-card {
  border-radius: 22px;
  border: 1px solid rgba(183, 202, 210, 0.92);
  background: #f7fbfd;
  box-shadow: 0 10px 22px rgba(31, 65, 76, 0.08);
}

.screen-tile {
  padding: 14px 16px;
}

.screen-tile-primary {
  background: linear-gradient(180deg, #b9e0ea 0%, #cbe6ee 100%);
}

.screen-tile strong,
.reminder-card strong,
.profile-card h4,
.stats-card strong,
.mini-stat span,
.bubble {
  display: block;
  font-family: "Sora", sans-serif;
}

.reminder-card {
  margin-top: auto;
  background: linear-gradient(180deg, #ddecef 0%, #d6e6eb 100%);
  padding: 18px;
}

.screen-heading-row {
  gap: 12px;
}

.screen-heading-row.compact {
  margin-bottom: 8px;
}

.back-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1f4250;
  font-size: 1.5rem;
  font-weight: 300;
}

.mock-save,
.carousel-button,
.chat-compose button,
.use-this {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.mock-save,
.use-this {
  border-radius: 999px;
  background: linear-gradient(135deg, #2d7889, #397f91);
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
}

.form-block {
  padding: 12px 14px;
}

.form-block label {
  display: block;
  margin: 0 0 8px;
  color: #6b8390;
  font-size: 0.95rem;
}

.form-field,
.form-area,
.pill-button {
  padding: 16px 18px;
  font-size: 1rem;
  color: #253c47;
}

.form-field {
  min-height: 60px;
}

.form-area {
  min-height: 210px;
}

.pill-button {
  margin-top: auto;
  text-align: center;
  font-weight: 700;
  background: #fff;
}

.chat-header {
  gap: 10px;
}

.block-icon {
  color: #db3a34;
  font-size: 1.8rem;
}

.icebreaker-card {
  background: linear-gradient(180deg, #b9e0ea 0%, #cfe8ef 100%);
  padding: 16px;
}

.icebreaker-top {
  justify-content: space-between;
  color: #244957;
  font-weight: 700;
  margin-bottom: 12px;
}

.icebreaker-body {
  border-radius: 20px;
  background: #f7fbfd;
  padding: 22px 18px;
  font-size: 1.1rem;
  color: #1d3340;
}

.use-this {
  margin: 16px 0 0 auto;
  display: block;
  padding: 12px 20px;
}

.chat-compose {
  margin-top: auto;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chat-compose span {
  color: #6a818b;
}

.chat-compose button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d7dfe2;
  color: #fff;
  font-size: 1.1rem;
}

.profile-card {
  text-align: center;
  padding: 20px 18px;
  background: linear-gradient(180deg, #b9e0ea 0%, #eef6f8 100%);
}

.profile-badge {
  width: 132px;
  height: 132px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #f7fbfd;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: #297189;
}

.plan-pill {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #59717d;
  font-weight: 700;
}

.stats-card {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #f9dcdc 0%, #f6d9d9 100%);
}

.stats-card-pink strong {
  color: #5d1717;
}

.ring {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  border: 11px solid #b9e0ea;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #582323;
  background: rgba(255, 255, 255, 0.34);
}

.mini-stats-grid {
  gap: 12px;
}

.mini-stat {
  flex: 1;
  padding: 18px 16px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mini-stat span {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
}

.mini-stat.teal {
  background: linear-gradient(180deg, #2f7c8f 0%, #4a8fa0 100%);
  color: #fff;
}

.mini-stat.teal p,
.mini-stat.warm p {
  color: rgba(255, 255, 255, 0.94);
}

.mini-stat.warm {
  background: linear-gradient(180deg, #a67c68 0%, #4d7988 100%);
  color: #fff;
}

.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  max-width: 84%;
  padding: 14px 16px;
  font-size: 1rem;
  line-height: 1.45;
  box-shadow: 0 10px 18px rgba(31, 65, 76, 0.08);
}

.bubble-right {
  align-self: flex-end;
  background: #b9e0ea;
}

.bubble-left {
  align-self: flex-start;
  background: #f7fbfd;
}

.bubble.long {
  max-width: 88%;
}

.mini-modal {
  margin-top: auto;
  background: #f6f0f7;
  padding: 20px;
}

.mini-modal p {
  margin: 12px 0 0;
  color: #67747b;
}

.carousel-shell-controls {
  justify-content: space-between;
  gap: 10px;
  padding: 14px 8px 8px;
}

.carousel-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(46, 120, 137, 0.12);
  color: var(--teal-deep);
  font-size: 1.05rem;
}

.carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(45, 120, 137, 0.22);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  width: 28px;
  background: linear-gradient(135deg, #2d7889, #3f8fa2);
}

.value-strip {
  padding: 16px 0 24px;
}

.value-list {
  border-radius: 26px;
  padding: 18px;
  border: 1px solid #b4c8cf;
  background: linear-gradient(95deg, rgba(246, 251, 252, 0.95), rgba(215, 232, 238, 0.95));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  box-shadow: var(--shadow);
}

.value-list article {
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.value-list h3 {
  font-size: 1rem;
}

.value-list p,
.feature-card p,
.screen-card p,
.final-cta p,
.site-footer p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.features,
.screens {
  padding: 62px 0 6px;
}

.faq {
  padding: 62px 0 18px;
}

.section-head {
  max-width: 760px;
}

.section-head h2 {
  margin-top: 7px;
}

.feature-grid {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.screen-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 18px;
  background: linear-gradient(180deg, rgba(246, 251, 252, 0.96), rgba(228, 240, 245, 0.92));
  box-shadow: 0 8px 18px rgba(31, 65, 76, 0.1);
}

.screens-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.screens-note {
  margin-top: 14px;
  font-size: 0.95rem;
  color: #4a6772;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-item {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(247, 251, 253, 0.98), rgba(228, 240, 245, 0.92));
  padding: 18px;
  box-shadow: 0 8px 18px rgba(31, 65, 76, 0.1);
}

.faq-item p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.final-cta {
  padding: 76px 0;
}

.final-cta-wrap {
  border-radius: 28px;
  border: 1px solid #8eb2bf;
  background: linear-gradient(130deg, #c0dce6 0%, #f2f8fa 100%);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 42px 22px;
}

.final-cta-wrap h2 {
  max-width: 24ch;
  margin: 0 auto;
}

.final-cta-wrap p {
  max-width: 58ch;
  margin: 14px auto 20px;
}

.site-footer {
  border-top: 1px solid rgba(141, 175, 185, 0.7);
  padding: 24px 0 30px;
  background: rgba(233, 242, 246, 0.72);
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-links {
  display: inline-flex;
  gap: 16px;
}

.footer-links a {
  color: var(--teal-deep);
  text-decoration: none;
  font-weight: 600;
}

.badge,
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(17, 34, 35, 0.06);
}

.badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  color: var(--teal-deep);
  background: #dbedf2;
  border: 1px solid #bfd8e0;
  box-shadow: none;
  padding: 6px 10px;
  margin-bottom: 8px;
}

.header-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 12px 0 0;
}

.header-links a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--ink);
  background: #fbfdfd;
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.14s;
}

.delay-2 {
  animation-delay: 0.27s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .feature-grid,
  .screens-grid,
  .value-list,
  .faq-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero-phone {
    margin-top: 8px;
  }

  .phone-screen,
  .carousel-slide {
    min-height: 510px;
  }

  .carousel-slide img {
    max-height: 510px;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 64px;
  }

  .top-links {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-copy {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .hero-actions {
    width: 100%;
  }

  .store-badge {
    width: auto;
    min-width: 240px;
    min-height: 82px;
    border-radius: 24px;
  }

  .store-name {
    font-size: 1.7rem;
  }

  .feature-grid,
  .screens-grid,
  .value-list,
  .faq-list {
    grid-template-columns: 1fr;
  }

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

  .final-cta-wrap {
    text-align: left;
  }

  .phone-shell {
    width: min(312px, 100%);
  }

  .phone-screen,
  .carousel-slide {
    min-height: 495px;
  }

  .carousel-slide img {
    max-height: 495px;
  }
}
