@font-face {
  font-family: "Oleo Script";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/oleo-script-latin-400.woff2") format("woff2");
}

:root {
  --ink: #173a35;
  --muted: #5a746f;
  --teal: #009b8f;
  --teal-dark: #00746c;
  --mint: #dff8f3;
  --aqua: #baf4f0;
  --cream: #fffaf0;
  --paper: #fffef9;
  --coral: #ff7d62;
  --gold: #f8c958;
  --shadow: 0 24px 70px rgba(23, 58, 53, 0.16);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(255, 125, 98, 0.18),
      transparent 28rem
    ),
    radial-gradient(
      circle at 92% 4%,
      rgba(0, 155, 143, 0.18),
      transparent 26rem
    ),
    linear-gradient(180deg, #f6fffd 0%, var(--cream) 54%, #f6fffd 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(0, 155, 143, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 155, 143, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

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

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

a:hover {
  color: var(--teal-dark);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--teal-dark);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(1160px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 254, 249, 0.86);
  border: 1px solid rgba(0, 116, 108, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(23, 58, 53, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 160px;
}

.nav-links,
.site-footer nav,
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.35rem;
  font-size: 0.93rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  color: white;
  background: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(0, 155, 143, 0.24);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.button:hover {
  color: white;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-small {
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.section-shell {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  min-height: calc(100vh - 7rem);
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Oleo Script", ui-serif, Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.2rem, 6vw, 5.1rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.95rem, 3.6vw, 3.35rem);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
}

.hero-subtitle {
  max-width: 34rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.18;
}

.hero-lede {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  margin: 1.8rem 0;
}

.download-card {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.store-badge {
  width: 230px;
  border-radius: 10px;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.store-badge:hover {
  transform: translateY(-3px);
  filter: saturate(1.12);
}

.store-rating {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.store-rating span {
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.hero-stats div {
  padding: 1rem;
  background: rgba(255, 254, 249, 0.78);
  border: 1px solid rgba(0, 116, 108, 0.14);
  border-radius: var(--radius-sm);
}

.hero-stats dt {
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 680px;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: min(72vw, 350px);
}

.phone-frame img {
  width: 100%;
  filter: drop-shadow(0 24px 40px rgba(23, 58, 53, 0.2));
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: min(250px, 48vw);
  padding: 1rem;
  background: rgba(255, 254, 249, 0.92);
  border: 1px solid rgba(0, 116, 108, 0.16);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(23, 58, 53, 0.15);
  font-weight: 600;
  line-height: 1.3;
}

.card-kicker {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--coral);
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.floating-card-top {
  right: 0;
  top: 18%;
}

.floating-card-bottom {
  left: 0;
  bottom: 18%;
}

.featured-ticker {
  color: white;
  background: linear-gradient(
    135deg,
    rgba(0, 116, 108, 0.96),
    rgba(0, 155, 143, 0.9)
  );
}

.ticker-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 1.1rem 0;
}

.ticker-shell h2 {
  margin: 0;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-window {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 9%,
    black 91%,
    transparent
  );
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0.8rem;
  animation: ticker-scroll 34s linear infinite;
}

.ticker-track a {
  display: inline-grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  min-width: 250px;
  min-height: 72px;
  padding: 0.5rem 1.05rem 0.5rem 0.6rem;
  color: rgba(23, 58, 53, 0.74);
  background: rgba(255, 254, 249, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ticker-art {
  width: 3.4rem;
  height: 3.4rem;
  background: white;
  border: 1px solid rgba(0, 116, 108, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(23, 58, 53, 0.08);
  object-fit: cover;
}

.ticker-art-logo {
  padding: 0.45rem;
  object-fit: contain;
}

.ticker-text {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.ticker-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker-track a:hover {
  color: var(--teal-dark);
  background: white;
}

.ticker-kicker {
  color: var(--coral);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

@keyframes ticker-scroll {
  to {
    transform: translateX(calc(-50% - 0.4rem));
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-bottom: 1.2rem;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(160deg, white 12%, #dcfbf3);
  border: 1px solid rgba(0, 116, 108, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(23, 58, 53, 0.08);
}

.feature-card img {
  justify-self: center;
  width: min(70%, 225px);
  margin-top: 1.4rem;
  filter: drop-shadow(0 20px 28px rgba(23, 58, 53, 0.18));
}

.feature-card div {
  padding: 1.4rem;
}

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

.feature-card:nth-of-type(2) {
  background: linear-gradient(160deg, white 12%, #e4f0ff);
}

.feature-card:nth-of-type(3) {
  background: linear-gradient(160deg, white 12%, #efe7ff);
}

.feature-card:nth-of-type(4) {
  background: linear-gradient(160deg, white 12%, #ffe8f3);
}

.feature-card:nth-of-type(5) {
  background: linear-gradient(160deg, white 12%, #fff0dd);
}

.feature-card:nth-of-type(6) {
  background: linear-gradient(160deg, white 12%, #fff8cf);
}

.feature-card-list ul,
.check-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card-list li,
.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.feature-card-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 700;
}

.web-version {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.screen-mockup {
  filter: drop-shadow(0 24px 42px rgba(23, 58, 53, 0.16));
}

.screen-bar {
  display: none;
}

.screen-bar span {
  width: 0.7rem;
  aspect-ratio: 1;
  background: var(--gold);
  border-radius: 999px;
}

.screen-bar span:nth-child(2) {
  background: var(--coral);
}

.screen-bar span:nth-child(3) {
  background: var(--aqua);
}

.screen-mockup img {
  width: 100%;
}

.web-copy p:not(.eyebrow),
.about-copy p,
.plus-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.about {
  position: relative;
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-block: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(255, 125, 98, 0.16),
      transparent 16rem
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92),
      rgba(223, 248, 243, 0.78)
    );
  border: 1px solid rgba(0, 116, 108, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 58px rgba(23, 58, 53, 0.1);
}

.about-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.about-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.about-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-copy p {
  margin: 0;
  padding: 1.35rem;
  background: rgba(255, 254, 249, 0.88);
  border: 1px solid rgba(0, 116, 108, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(23, 58, 53, 0.06);
}

.about-photo {
  width: 100%;
  justify-self: end;
  border: 8px solid white;
  border-radius: 32px;
  box-shadow: 0 18px 44px rgba(23, 58, 53, 0.16);
  transform: rotate(1.5deg);
}

.testimonials {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: white;
  background:
    linear-gradient(180deg, rgba(0, 116, 108, 0.96), rgba(0, 155, 143, 0.96)),
    radial-gradient(
      circle at 20% 8%,
      rgba(255, 255, 255, 0.28),
      transparent 22rem
    );
}

.testimonials .eyebrow {
  color: #dff8f3;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.quote-grid figure {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
}

.quote-grid blockquote {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.quote-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.quote-featured blockquote {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
}

.quote-grid figcaption {
  margin-top: 1.2rem;
  color: var(--aqua);
  font-size: 0.92rem;
  font-weight: 600;
}

.plus {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.plus-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(248, 201, 88, 0.32),
      transparent 18rem
    ),
    linear-gradient(135deg, white, var(--mint));
  border: 1px solid rgba(0, 116, 108, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
  font-weight: 600;
}

.price-panel {
  display: grid;
  justify-items: center;
  padding: 2rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--teal);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 155, 143, 0.18);
  text-align: center;
}

.price-panel strong {
  display: block;
  margin: 0.2rem 0;
  color: var(--teal-dark);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.price-panel hr {
  width: 100%;
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid rgba(0, 116, 108, 0.18);
}

.price-label {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  color: white;
  background: var(--coral);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta {
  padding: clamp(3rem, 8vw, 6rem) 0;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  gap: 1.4rem;
  justify-items: center;
  padding: 3rem 1rem;
  color: var(--muted);
  background: white;
  border-top: 1px solid rgba(0, 116, 108, 0.1);
  text-align: center;
}

.social-links {
  font-size: 0.88rem;
}

.legal-main {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-article {
  width: min(860px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 254, 249, 0.92);
  border: 1px solid rgba(0, 116, 108, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.legal-article h1 {
  max-width: none;
}

.legal-article h2,
.legal-article h3,
.legal-article h4 {
  margin-top: 2rem;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.legal-article h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.legal-article h3 {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.legal-article h4 {
  font-size: 1rem;
}

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

.legal-article a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-updated {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-note {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  color: var(--muted);
  background: var(--mint);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
}

@media (min-width: 981px) {
  .hero-actions {
    flex-wrap: nowrap;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 3;
  }

  .hero,
  .web-version,
  .plus-card {
    grid-template-columns: 1fr;
  }

  .about-heading {
    grid-template-columns: 1fr minmax(150px, 210px);
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: 600px;
  }

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

  .feature-card-large {
    grid-column: auto;
  }

  .price-panel {
    justify-self: start;
    width: min(100%, 360px);
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    width: min(100% - 1rem, 1160px);
    border-radius: 26px;
  }

  .brand img {
    width: 132px;
  }

  .nav-links {
    justify-content: flex-start;
    font-size: 0.88rem;
  }

  .button-small {
    justify-self: end;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

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

  .store-badge {
    width: min(220px, 72vw);
  }

  .ticker-shell {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }

  .ticker-track a {
    min-width: 230px;
  }

  .hero-stats,
  .feature-grid,
  .quote-grid,
  .about-copy,
  .check-list {
    grid-template-columns: 1fr;
  }

  .quote-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .about-heading {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 240px;
    justify-self: start;
  }

  .hero-visual {
    min-height: 530px;
  }

  .phone-frame {
    width: min(78vw, 315px);
  }

  .floating-card {
    width: min(230px, 62vw);
    font-size: 0.9rem;
  }

  .floating-card-top {
    right: 0.3rem;
    top: 7%;
  }

  .floating-card-bottom {
    left: 0.3rem;
    bottom: 8%;
  }

  .feature-card,
  .feature-card-large {
    grid-column: auto;
  }

  .feature-card img,
  .feature-card-large img {
    width: min(70%, 225px);
  }

  .quote-grid figure {
    min-height: auto;
  }

  .price-panel {
    justify-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .ticker-track {
    animation: none;
    transform: none;
  }
}
