:root {
  --bg: #f8f1e5;
  --surface: rgba(255, 251, 245, 0.9);
  --surface-strong: rgba(255, 253, 249, 0.95);
  --ink: #241d18;
  --muted: #6e6258;
  --brand: #118f72;
  --brand-deep: #0d5c52;
  --accent: #f0b149;
  --line: rgba(36, 29, 24, 0.08);
  --shadow: 0 22px 60px rgba(36, 29, 24, 0.12);
  --shadow-strong: 0 32px 80px rgba(19, 28, 29, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(17, 143, 114, 0.09), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.75), transparent 24%),
    radial-gradient(circle at bottom right, rgba(240, 177, 64, 0.22), transparent 25%),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero,
.surface,
.cta-strip {
  border-radius: 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 32px;
  padding: 40px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(17, 143, 114, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 248, 239, 0.94));
}

.hero-copy h1,
.section-head h2,
.cta-strip h2 {
  margin: 0;
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-lead,
.section-head p,
.card p,
.step p,
.feature-block p,
.faq-list p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lead {
  max-width: 38rem;
  font-size: 19px;
  margin: 18px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17, 143, 114, 0.11);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}

.hero-proof span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 143, 114, 0.08);
  border: 1px solid rgba(17, 143, 114, 0.12);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), #159a7a);
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 143, 114, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  color: var(--brand);
  margin-right: 10px;
}

.hero-card {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 0;
}

.story-mock {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 380px;
  padding: 24px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 72% 76%, rgba(255, 202, 102, 0.26), transparent 22%),
    linear-gradient(180deg, #114d56 0%, #0f7a73 58%, #f1b045 100%);
  box-shadow: var(--shadow-strong);
  display: grid;
  align-content: start;
  overflow: hidden;
  position: relative;
}

.story-mock::after {
  content: "";
  position: absolute;
  inset: auto -14% -18% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(2px);
}

.story-kicker {
  font-size: 12px;
  letter-spacing: 0.15em;
  opacity: 0.88;
}

.story-pill {
  margin-top: 14px;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
}

.story-mock h2 {
  margin: 18px 0 0;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 8.2ch;
  position: relative;
  z-index: 1;
}

.story-mock p {
  margin: 16px 0 0;
  max-width: 18ch;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.story-facts {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.story-facts span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 15px;
  font-weight: 600;
}

.story-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.story-note {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.story-note-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.story-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.story-footer-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

main {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.surface {
  padding: 34px;
}

.accent {
  background:
    radial-gradient(circle at top right, rgba(17, 143, 114, 0.1), transparent 34%),
    var(--surface-strong);
}

.section-head {
  max-width: 54rem;
}

.section-head h2 {
  font-size: clamp(28px, 3.8vw, 46px);
}

.grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

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

.card,
.feature-block,
.step,
.seo-card,
.article-card,
.article-note,
.article-step,
.article-cta-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover,
.feature-block:hover,
.step:hover,
.seo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(36, 29, 24, 0.08);
  border-color: rgba(17, 143, 114, 0.14);
}

.card h3,
.feature-block h3,
.step h3,
.seo-card h3,
.article-card h3,
.article-step h3,
.faq-list summary {
  margin: 0 0 10px;
  font-size: 20px;
}

.seo-card {
  display: grid;
  gap: 8px;
  min-height: 210px;
}

.seo-card-kicker,
.article-kicker {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-card p,
.article-card p,
.article-note p,
.article-step p,
.article-cta-card p,
.article-copy p,
.article-list li {
  color: var(--muted);
  line-height: 1.65;
}

.article-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.article-hero .hero-lead {
  max-width: 48rem;
}

.article-visual {
  min-height: 360px;
  padding: 24px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(240, 177, 73, 0.28), transparent 24%),
    linear-gradient(180deg, #124f58 0%, #0d7973 62%, #efb24d 100%);
  box-shadow: var(--shadow-strong);
  display: grid;
  align-content: space-between;
  overflow: hidden;
}

.article-visual strong {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.article-visual span,
.article-visual p {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.article-card-list {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.article-visual .article-card {
  grid-template-columns: 1fr auto;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.article-visual .article-card strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
}

.article-copy {
  display: grid;
  gap: 18px;
}

.article-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.article-copy h3 {
  margin: 8px 0 0;
  font-size: 24px;
}

.article-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.article-card,
.article-note {
  display: grid;
  gap: 10px;
}

.article-note {
  background:
    radial-gradient(circle at top right, rgba(17, 143, 114, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.76);
}

.article-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: 20px;
}

.article-steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.article-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.article-step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(17, 143, 114, 0.12);
  color: var(--brand);
  font-weight: 900;
}

.article-cta-card {
  background:
    radial-gradient(circle at top right, rgba(240, 177, 73, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.8));
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.article-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(17, 143, 114, 0.08);
  border: 1px solid rgba(17, 143, 114, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 143, 114, 0.12);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 20px;
  margin-top: 28px;
}

.showcase-tabs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.showcase-tab {
  width: 100%;
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.showcase-tab strong {
  font-size: 20px;
  line-height: 1.08;
}

.showcase-tab small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.showcase-tab:hover,
.showcase-tab.active {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(36, 29, 24, 0.08);
  border-color: rgba(17, 143, 114, 0.14);
  background:
    radial-gradient(circle at top right, rgba(17, 143, 114, 0.07), transparent 32%),
    rgba(255, 255, 255, 0.9);
}

.showcase-stage {
  position: relative;
  min-height: 430px;
}

.showcase-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 340px);
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(17, 143, 114, 0.09), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.86));
  box-shadow: 0 24px 48px rgba(36, 29, 24, 0.08);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.showcase-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.panel-copy {
  display: grid;
  align-content: center;
}

.panel-copy h3 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.panel-copy p {
  margin: 16px 0 0;
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.panel-visual {
  min-height: 320px;
  padding: 18px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(180deg, #124f58 0%, #0d7973 62%, #efb24d 100%);
  box-shadow: 0 20px 46px rgba(17, 35, 38, 0.18);
}

.panel-visual::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.mock-window,
.mock-chat,
.insight-stack,
.currency-stack {
  position: relative;
  z-index: 1;
}

.mock-window {
  height: 100%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
}

.mock-header {
  display: flex;
  gap: 8px;
}

.mock-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.mock-grid span {
  aspect-ratio: 1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.mock-grid span.busy {
  background: rgba(255, 255, 255, 0.3);
}

.mock-chat {
  display: grid;
  gap: 12px;
  align-content: center;
  height: 100%;
}

.chat-bubble {
  max-width: 90%;
  padding: 16px 18px;
  border-radius: 20px 20px 20px 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 600;
  line-height: 1.45;
}

.chat-bubble-accent {
  justify-self: end;
  border-radius: 20px 20px 8px 20px;
  background: rgba(255, 255, 255, 0.28);
}

.insight-stack {
  display: grid;
  gap: 14px;
  align-content: center;
  height: 100%;
}

.insight-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
}

.accent-card {
  background: rgba(255, 255, 255, 0.3);
  color: #14373a;
}

.currency-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
  height: 100%;
}

.currency-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.currency-pill.active {
  background: rgba(255, 255, 255, 0.3);
  color: #0d4d56;
}

.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(17, 143, 114, 0.12);
  color: var(--brand);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-list details {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::after {
  content: "+";
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 10px 0 0;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  background:
    radial-gradient(circle at left center, rgba(17, 143, 114, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(17, 143, 114, 0.09), rgba(255, 255, 255, 0.92)),
    var(--surface-strong);
}

.cta-strip h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.footer {
  padding: 18px 4px 0;
}

@media (max-width: 960px) {
  .hero,
  .article-hero,
  .article-layout,
  .grid.three,
  .grid.two,
  .steps,
  .cta-strip {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 28px;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .showcase-stage {
    min-height: 540px;
  }

  .showcase-panel {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding: 20px 0 38px;
  }

  .hero,
  .surface,
  .cta-strip {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-copy h1,
  .section-head h2,
  .cta-strip h2 {
    letter-spacing: -0.04em;
  }

  .story-mock {
    padding: 18px;
    border-radius: 26px;
  }

  .showcase-stage {
    min-height: 600px;
  }
}
