@font-face {
  font-family: "Main-Regular";
  src: url("/assets/fonts/SF-Pro-Rounded-Regular-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Main-Bold";
  src: url("/assets/fonts/SF-Pro-Rounded-Bold-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Main-Heavy";
  src: url("/assets/fonts/SF-Pro-Rounded-Heavy-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #f6f2ea;
  --bg-elevated: #fbf9f4;
  --surface: #ffffff;
  --surface-alt: #f1eadc;
  --surface-green: #eaf4ef;
  --text: #13171d;
  --text-soft: #505967;
  --text-muted: #6c7583;
  --border: #ded8cc;
  --border-soft: #e8e1d2;
  --primary: #3fb488;
  --primary-hover: #35a077;
  --primary-ink: #0f2a22;
  --shadow-soft: 0 42px 110px -62px rgba(17, 24, 39, 0.3);
  --shadow-card: 0 22px 52px -36px rgba(17, 24, 39, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shell: min(1180px, calc(100vw - 32px));
  --font-body: "Main-Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Main-Bold", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Main-Heavy", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "Main-Bold", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(63, 180, 136, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(246, 242, 234, 0) 26%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.28));
  border-top: 1px solid rgba(255, 255, 255, 0.64);
  border-bottom: 1px solid rgba(222, 216, 204, 0.8);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(63, 180, 136, 0.12);
  color: var(--primary-ink);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.narrow {
  max-width: 640px;
}

.section-heading h2,
.footer-card h2,
.hero-copy h1 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading h2,
.footer-card h2 {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
}

.section-heading p,
.hero-copy p,
.feature-card p,
.timeline-copy p,
.pricing-copy,
.faq-panel p,
.footer-card p,
.comparison-card li {
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0 0;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(251, 249, 244, 0.88);
  box-shadow: 0 18px 42px -34px rgba(17, 24, 39, 0.3);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-brand);
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: block;
  width: auto;
  height: 28px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a:not(.button) {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-family: var(--font-accent);
  font-weight: 400;
}

.site-nav a:not(.button):hover,
.locale-link:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 400;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 18px 30px -22px rgba(63, 180, 136, 0.85);
}

.button-primary:hover {
  background: var(--primary-hover);
}

.button-secondary {
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.hero-section {
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 500px);
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 5.8vw, 5.8rem);
  max-width: 10ch;
}

.hero-lead {
  max-width: 62ch;
  margin: 0 0 12px;
  font-size: 1.14rem;
  line-height: 1.7;
}

.hero-sublead {
  max-width: 58ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-chip {
  padding: 10px 13px;
  border: 1px solid rgba(63, 180, 136, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-soft);
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 400;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 580px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 50px -38px rgba(17, 24, 39, 0.24);
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.74rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.stat-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 234, 220, 0.84) 100%);
  box-shadow: 0 34px 90px -52px rgba(17, 24, 39, 0.36);
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
}

.orbit-a {
  inset: auto auto -14% -8%;
  width: 240px;
  height: 240px;
  background: rgba(63, 180, 136, 0.12);
}

.orbit-b {
  inset: -12% -6% auto auto;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.75);
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  height: 100%;
  align-content: start;
}

.floating-note,
.calendar-card {
  position: relative;
  padding: 16px 18px;
  border: 1px solid rgba(223, 217, 205, 0.94);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.floating-note {
  width: auto;
}

.floating-note-left {
  grid-column: 1 / span 3;
}

.floating-note-right {
  grid-column: 4 / span 3;
}

.floating-note-bottom {
  grid-column: 1 / span 4;
}

.floating-label,
.device-kicker {
  display: inline-flex;
  color: var(--primary);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong,
.calendar-card strong,
.device-overview strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: -0.02em;
}

.floating-note small,
.calendar-card span,
.device-proof,
.thread-line p {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.56;
}

.device-shell {
  position: relative;
  grid-column: 1 / -1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.98));
  box-shadow: 0 26px 75px -48px rgba(17, 24, 39, 0.45);
}

.device-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px 0;
}

.device-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.16);
}

.device-surface {
  display: flex;
  min-height: 100%;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
}

.device-overview {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(223, 217, 205, 0.92);
}

.device-status,
.thread-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(63, 180, 136, 0.11);
  color: var(--primary-ink);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 400;
}

.device-thread {
  display: grid;
  gap: 12px;
}

.thread-line {
  padding: 14px 15px;
  border: 1px solid rgba(229, 224, 212, 0.96);
  border-radius: 22px;
  background: rgba(251, 249, 244, 0.92);
}

.thread-line-accent {
  background: linear-gradient(180deg, rgba(232, 245, 238, 0.95), rgba(255, 255, 255, 0.9));
}

.thread-line p {
  margin: 10px 0 0;
}

.device-footer {
  display: grid;
  gap: 12px;
}

.calendar-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.calendar-card.minimal {
  background: #ffffff;
}

.calendar-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(63, 180, 136, 0.14);
}

.device-proof {
  margin-top: 0;
  padding-left: 2px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 46px -38px rgba(17, 24, 39, 0.26);
}

.timeline-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--surface-green);
  color: var(--primary-ink);
  font-family: var(--font-accent);
  font-size: 0.86rem;
  font-weight: 400;
}

.timeline-copy h3,
.step-card h3,
.feature-card h3,
.comparison-card h3,
.pricing-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-accent);
  font-size: 1.18rem;
  line-height: 1.32;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.timeline-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.pain-highlight {
  margin-top: 24px;
}

.highlight-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.highlight-copy,
.highlight-box {
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 52px -38px rgba(17, 24, 39, 0.28);
}

.highlight-copy {
  margin: 0;
  background: linear-gradient(135deg, #111816, #1d2a25);
  color: #f8faf7;
  font-family: var(--font-accent);
  font-size: 1.08rem;
}

.highlight-box {
  border: 1px solid rgba(63, 180, 136, 0.14);
  background: linear-gradient(180deg, rgba(63, 180, 136, 0.08), rgba(255, 255, 255, 0.94));
}

.highlight-box strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.34rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.highlight-box p {
  margin: 0;
  color: var(--text-soft);
}

.steps-grid,
.feature-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

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

.step-card,
.feature-card,
.comparison-card,
.pricing-card,
.faq-list,
.footer-card {
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 58px -40px rgba(17, 24, 39, 0.22);
}

.step-card,
.feature-card,
.comparison-card,
.pricing-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--surface-green);
  color: var(--primary-ink);
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 400;
}

.step-card p,
.feature-card p {
  margin: 0 0 14px;
}

.step-note,
.feature-meta,
.comparison-tag,
.pricing-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(63, 180, 136, 0.14);
  color: var(--primary-ink);
  font-family: var(--font-accent);
  font-size: 0.84rem;
  font-weight: 400;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(63, 180, 136, 0.92), rgba(104, 202, 164, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.comparison-shell {
  display: grid;
  gap: 28px;
}

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

.comparison-card ul,
.pricing-points,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.comparison-card li {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-top: 16px;
}

.comparison-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 400;
}

.comparison-negative .comparison-bullet {
  background: rgba(239, 68, 68, 0.12);
  color: #c44747;
}

.comparison-positive .comparison-bullet {
  background: rgba(63, 180, 136, 0.16);
  color: var(--primary);
}

.comparison-card-muted {
  background: linear-gradient(135deg, rgba(17, 24, 22, 0.98), rgba(28, 39, 34, 0.98));
}

.comparison-card-muted h3,
.comparison-card-muted li {
  color: #e7e5e4;
}

.comparison-card-accent {
  position: relative;
  background: linear-gradient(180deg, rgba(232, 245, 238, 0.94), rgba(255, 255, 255, 0.88));
}

.comparison-tag {
  position: absolute;
  top: 18px;
  right: 18px;
}

.pricing-shell {
  display: grid;
  gap: 30px;
}

.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pricing-copy {
  max-width: 560px;
  margin: 18px auto 24px;
  font-size: 1.04rem;
  line-height: 1.68;
}

.pricing-points {
  display: grid;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 28px;
  text-align: left;
}

.pricing-points li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  line-height: 1.58;
}

.pricing-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-family: var(--font-accent);
  font-weight: 400;
}

.faq-shell {
  display: grid;
  gap: 26px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px;
  border-radius: calc(var(--radius-xl) + 6px);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border);
}

.faq-trigger {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px 16px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  font-size: 1.06rem;
  font-family: var(--font-accent);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.faq-symbol {
  color: var(--primary);
  font-family: var(--font-accent);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-panel {
  display: none;
  padding: 0 16px 22px;
}

.faq-panel.is-open {
  display: block;
}

.faq-panel p {
  margin: 0;
}

.site-footer {
  padding: 0 0 48px;
}

.footer-cta {
  display: grid;
  gap: 20px;
}

.footer-card {
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(14, 22, 19, 0.98), rgba(27, 39, 34, 0.96));
  color: #f8fafc;
}

.footer-card p {
  max-width: 640px;
  color: rgba(248, 250, 252, 0.8);
  line-height: 1.65;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.footer-locale {
  color: rgba(248, 250, 252, 0.72);
}

.footer-meta {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .pain-grid,
  .highlight-card,
  .steps-grid,
  .feature-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

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

@media (max-width: 860px) {
  .site-header {
    padding-top: 12px;
  }

  .header-shell {
    padding: 14px 16px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(251, 250, 248, 0.96);
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-section {
    padding-top: 52px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-stage {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .floating-note,
  .floating-note-left,
  .floating-note-right,
  .floating-note-bottom {
    position: static;
    width: auto;
    grid-column: auto;
  }

  .device-shell {
    position: static;
    min-height: 0;
    grid-column: auto;
  }

  .timeline-card {
    grid-template-columns: 1fr;
  }

  .footer-card {
    padding: 28px;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .hero-section {
    padding-bottom: 52px;
  }

  .hero-visual {
    min-height: auto;
    padding: 18px;
  }

  .button,
  .site-nav .button {
    width: 100%;
  }

  .hero-actions,
  .footer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-chip-row {
    gap: 8px;
  }

  .hero-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .faq-trigger {
    padding-left: 8px;
    padding-right: 8px;
  }

  .faq-panel {
    padding-left: 8px;
    padding-right: 8px;
  }
}
