/*
Theme Name: Data Newsletter
Theme URI: https://artoo.com.br/
Author: Artoo
Author URI: https://artoo.com.br/
Description: Lightweight multisite-ready landing theme for newsletter signup pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: data-newsletter
*/

*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --header-height: 88px;
  --green-50: #eefbf6;
  --green-100: #d4f7ea;
  --green-200: #9be8cb;
  --green-500: #009d40;
  --green-600: #03624c;
  --green-700: #042222;
  --gray-50: #f1f7f7;
  --gray-100: #f1f2f4;
  --gray-200: #e0e0e0;
  --gray-300: #cfd7d7;
  --gray-400: #6f7d7d;
  --gray-500: #556464;
  --gray-600: #3a4d4d;
  --gray-700: #233838;
  --gray-800: #102929;
  --gray-900: #021a1a;
  --white: #ffffff;
  --accent: #e7700d;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(2, 26, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(2, 26, 26, 0.1);
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero > .container {
  max-width: 1220px;
}
.pricing-page .container {
  max-width: 1040px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--gray-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus { top: 16px; }

h1 { font-size: 2.75rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--gray-900); }
h2 { font-size: 1.75rem; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; color: var(--gray-900); }
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.35; color: var(--gray-900); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 14px 28px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 157, 64, 0.22);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(3, 98, 76, 0.24);
}
.btn-primary:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--green-200);
  outline-offset: 2px;
}
.btn-secondary {
  background: transparent;
  color: var(--gray-900);
  border: 1px solid rgba(2, 26, 26, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(4, 34, 34, 0.04);
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(2, 26, 26, 0.05);
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: transparent;
  box-shadow: none;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gray-900);
  flex-shrink: 0;
  margin-right: auto;
  width: fit-content;
  max-width: 145px;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: fit-content;
  max-width: 100%;
}
.brand-lockup__mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
  width: fit-content;
  max-width: 145px;
  max-height: 50px;
}
.brand-lockup__text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
}
.brand-lockup__home,
.logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 145px;
  max-height: 50px;
}
.brand-lockup__home {
  color: inherit;
}
.logo .custom-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 145px !important;
  max-height: 50px !important;
  object-fit: contain;
}
.header-nav {
  margin-left: auto;
  flex-shrink: 0;
}
.header-nav .header-menu,
.header-nav ul {
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.site-header .custom-logo {
  vertical-align: middle;
  width: auto !important;
  height: auto !important;
  max-width: 145px !important;
  max-height: 50px !important;
}
.brand-lockup__subtitle {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  line-height: 1;
  color: var(--gray-900);
  white-space: nowrap;
}
.header-nav, .footer-nav { display: flex; align-items: center; gap: 18px; }
.header-nav .header-menu,
.header-nav ul,
.footer-nav ul { display: flex; align-items: center; gap: 18px; list-style: none; }
.header-nav a, .nav-link { font-size: 0.875rem; font-weight: 500; color: var(--gray-500); transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition); }
.header-nav a:hover, .nav-link:hover, .footer-nav a:hover { color: var(--green-500); }
.header-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-menu__link--button {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}
.header-menu__link--button:hover,
.header-menu__link--button:focus-visible {
  transform: none;
}
.header-menu__link--button-secondary {
  background: #f3efe8;
  color: var(--gray-900);
}
.header-menu__link--button-secondary:hover,
.header-menu__link--button-secondary:focus-visible {
  background: #ece5db;
  color: var(--gray-900);
}
.header-menu__link--button-primary {
  background: var(--green-500);
  color: var(--white) !important;
  box-shadow: none;
}
.header-menu__link--button-primary:hover,
.header-menu__link--button-primary:focus-visible {
  background: var(--green-600);
  color: var(--white) !important;
  box-shadow: none;
}

.hero {
  padding: 28px 0 48px;
  background: var(--white);
}
.pricing-page-section {
  padding: 72px 0 96px;
}
.data-source-page {
  background: var(--white);
}
.for-whom-page {
  background: var(--white);
}
.for-whom-hero {
  padding: 88px 0 110px;
}
.for-whom-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.for-whom-hero__heading {
  max-width: 14ch;
  margin: 0 auto;
  font-size: clamp(2.7rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.for-whom-hero__copy {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--gray-500);
  font-size: 1.16rem;
  line-height: 1.72;
}
.for-whom-hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.for-whom-hero__button {
  min-width: 180px;
  border-radius: 10px;
}
.for-whom-hero__button.btn-primary {
  box-shadow: none;
  transform: none;
}
.for-whom-hero__button.btn-primary:hover,
.for-whom-hero__button.btn-primary:focus-visible {
  box-shadow: none;
  transform: none;
}
.for-whom-hero__button.btn-secondary:hover,
.for-whom-hero__button.btn-secondary:focus-visible {
  transform: none;
}
.for-whom-cards {
  padding: 0 0 96px;
}
.for-whom-cards__header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.for-whom-cards__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #edf1ec;
  color: var(--gray-700);
  font-size: 0.86rem;
  font-weight: 600;
}
.for-whom-cards__heading {
  max-width: 14ch;
  margin: 20px auto 0;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.for-whom-cards__copy {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--gray-500);
  font-size: 1.04rem;
  line-height: 1.72;
}
.for-whom-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.for-whom-card {
  min-height: 100%;
  padding: 28px 22px 26px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(2, 26, 26, 0.08);
  box-shadow: 0 12px 26px rgba(2, 26, 26, 0.05);
  text-align: center;
}
.for-whom-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(0, 157, 64, 0.06);
  color: var(--green-700);
}
.for-whom-card__icon svg {
  width: 42px;
  height: 42px;
}
.for-whom-card__title {
  font-size: 1.55rem;
  line-height: 1.2;
}
.for-whom-card__copy {
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.72;
}
.for-whom-fit {
  padding: 0 0 104px;
}
.for-whom-fit__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}
.for-whom-fit__intro {
  max-width: 500px;
}
.for-whom-fit__eyebrow {
  margin-bottom: 18px;
}
.for-whom-fit__heading {
  max-width: 12ch;
  margin-top: 0;
}
.faq-heading__tail {
  display: block;
}
.for-whom-fit__copy {
  max-width: 480px;
}
.for-whom-fit__content {
  min-width: 0;
}
.for-whom-fit__list {
  display: grid;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.for-whom-fit__item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.for-whom-fit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--green-600);
}
.for-whom-fit__icon svg {
  width: 34px;
  height: 34px;
}
.for-whom-fit__text {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(2, 26, 26, 0.1);
  color: var(--gray-800);
  font-size: 1.34rem;
  line-height: 1.45;
}
.for-whom-fit__item:last-child .for-whom-fit__text {
  padding-bottom: 0;
  border-bottom: 0;
}
.for-whom-uses {
  padding: 0 0 104px;
}
.for-whom-uses__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}
.for-whom-uses__intro {
  max-width: 470px;
}
.for-whom-uses__eyebrow {
  margin-bottom: 20px;
}
.for-whom-uses__heading {
  max-width: 10ch;
  margin-top: 0;
}
.for-whom-uses__copy {
  max-width: 440px;
  margin-top: 18px;
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.72;
}
.for-whom-uses__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 28px;
}
.for-whom-use-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.for-whom-use-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 14px;
  background: #f3efe8;
  color: var(--green-700);
}
.for-whom-use-card__icon svg {
  width: 40px;
  height: 40px;
}
.for-whom-use-card__title {
  margin-top: 6px;
  font-size: 1.12rem;
  line-height: 1.25;
}
.for-whom-use-card__copy {
  margin-top: 10px;
  color: var(--gray-500);
  font-size: 0.98rem;
  line-height: 1.72;
}
.data-source-hero {
  padding: 88px 0 110px;
}
.data-source-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(160px, 0.2fr);
  gap: 56px;
  align-items: start;
  min-height: 420px;
}
.data-source-hero__content {
  max-width: 720px;
  text-align: left;
}
.data-source-hero__spacer {
  min-height: 100%;
}
.data-source-hero__heading {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.5rem, 4.9vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.data-source-hero__copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--gray-500);
  font-size: 1.16rem;
  line-height: 1.72;
}
.data-source-hero__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.data-source-hero__button {
  min-width: 180px;
  border-radius: 10px;
  box-shadow: none;
  transform: none;
}
.data-source-hero__button:hover,
.data-source-hero__button:focus-visible {
  box-shadow: none;
  transform: none;
}
.data-source-hero__text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-500);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color var(--transition);
}
.data-source-hero__text-link::after {
  content: '\203A';
  font-size: 1.55rem;
  line-height: 1;
}
.data-source-hero__text-link:hover,
.data-source-hero__text-link:focus-visible {
  color: var(--green-600);
}
.data-source-intro {
  padding: 0 0 96px;
}
.data-source-intro__shell {
  border-radius: 10px;
  background: var(--gray-50);
  padding: 72px 72px 78px;
}
.data-source-intro__content {
  max-width: 760px;
}
.data-source-intro__heading {
  max-width: 18ch;
  margin-top: 0;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.data-source-intro__copy {
  max-width: 920px;
  margin-top: 18px;
  color: var(--gray-500);
  font-size: 1.06rem;
  line-height: 1.72;
}
.data-source-flow {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}
.data-source-flow__item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.data-source-flow__rail {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}
.data-source-flow__line {
  position: absolute;
  top: 96px;
  bottom: -20px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(0, 157, 64, 0.28);
}
.data-source-step {
  min-height: 138px;
  padding: 26px 28px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(2, 26, 26, 0.08);
  box-shadow: 0 10px 24px rgba(2, 26, 26, 0.04);
}
.data-source-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0;
  border-radius: 999px;
  border: 4px solid var(--white);
  background: rgba(0, 157, 64, 0.06);
  color: var(--green-700);
  box-shadow: 0 8px 20px rgba(2, 26, 26, 0.04);
}
.data-source-step__icon svg {
  width: 42px;
  height: 42px;
}
.data-source-step__meta {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.data-source-step__number {
  display: inline-block;
  color: rgba(3, 98, 76, 0.86);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.data-source-step__body {
  min-width: 0;
}
.data-source-step__title {
  font-size: 1.75rem;
  line-height: 1.16;
}
.data-source-step__copy {
  max-width: 640px;
  margin-top: 10px;
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.65;
}
.data-source-summary {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(2, 26, 26, 0.1);
}
.data-source-summary__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-600);
  text-align: center;
}
.data-source-summary__item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 157, 64, 0.68);
}
.data-source-summary__item:first-child::before {
  display: none;
}
.data-source-summary__value {
  color: var(--green-600);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.data-source-summary__label {
  font-size: 1rem;
  line-height: 1.35;
}
.data-source-editorial {
  padding: 0 0 96px;
}
.data-source-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: center;
}
.data-source-editorial__content {
  max-width: 620px;
}
.data-source-editorial__heading {
  margin-top: 18px;
}
.data-source-editorial__copy {
  max-width: 600px;
}
.data-source-editorial__visual {
  display: flex;
  justify-content: flex-end;
}
.data-source-editorial__visual-card {
  width: min(100%, 520px);
  min-height: 480px;
}
.data-source-editorial__fallback {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
}
.data-source-editorial__fallback-card {
  position: absolute;
  top: 8%;
  right: 12%;
  width: 34%;
  height: 34%;
  border: 2px solid rgba(231, 112, 13, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}
.data-source-editorial__fallback-panel {
  position: absolute;
  left: 21%;
  bottom: 18%;
  width: 34%;
  height: 34%;
  border-radius: 28px;
  background: linear-gradient(180deg, #f48a24 0%, #e7700d 100%);
  transform: rotate(-8deg);
}
.data-source-editorial__fallback-lines {
  position: absolute;
  right: 14%;
  bottom: 28%;
  display: grid;
  gap: 18px;
}
.data-source-editorial__fallback-lines span {
  display: block;
  width: 126px;
  height: 10px;
  border-radius: 999px;
  background: rgba(2, 26, 26, 0.16);
}
.data-source-editorial__fallback-person {
  position: absolute;
  left: 26%;
  top: 34%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.data-source-editorial__fallback-head {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #173535;
}
.data-source-editorial__fallback-body {
  width: 54px;
  height: 116px;
  border-radius: 18px;
  background: #173535;
}
.pricing-page-hero {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #edf1ec;
  color: var(--gray-700);
  font-size: 0.86rem;
  font-weight: 600;
}
.pricing-heading {
  max-width: 18ch;
  margin: 22px auto 0;
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.pricing-heading__highlight {
  color: var(--accent);
}
.pricing-heading__tail {
  display: block;
}
.pricing-copy {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--gray-500);
  font-size: 1.16rem;
  line-height: 1.72;
}
.pricing-breadcrumb {
  margin-top: 18px;
  color: var(--gray-500);
  font-size: 0.98rem;
}
.pricing-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(4, 34, 34, 0.06);
  color: var(--green-600);
  font-size: 0.95rem;
  font-weight: 600;
}
.pricing-feedback {
  display: none;
  max-width: 760px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(4, 34, 34, 0.06);
  color: var(--green-700);
  font-size: 0.96rem;
  line-height: 1.55;
}
.pricing-feedback--visible {
  display: block;
}
.pricing-feedback.error {
  background: rgba(190, 37, 37, 0.08);
  color: #9f2222;
}
.pricing-feedback.success {
  background: rgba(0, 154, 102, 0.1);
  color: #0a6b4a;
}
.pricing-active-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.pricing-grid {
  display: grid;
  gap: 28px;
  max-width: 1120px;
  margin: 44px auto 0;
}
.pricing-grid--count-1 {
  max-width: 510px;
  grid-template-columns: 1fr;
}
.pricing-grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pricing-grid--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing-card {
  position: relative;
  color: var(--white);
  border-radius: 10px;
  background: linear-gradient(180deg, #173a33 0%, #0b2b26 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 52px rgba(2, 26, 26, 0.14);
}
.pricing-card--featured {
  border: 2px solid rgba(231, 112, 13, 0.88);
  box-shadow: 0 24px 56px rgba(2, 26, 26, 0.18);
}
.pricing-card__badge-wrap {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fb8f33 0%, #f17f17 100%);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(231, 112, 13, 0.24);
}
.pricing-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 30px 28px;
}
.pricing-card__chip {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 600;
}
.pricing-card__title {
  margin-top: 24px;
  font-size: 2rem;
  line-height: 1.12;
  color: var(--white);
}
.pricing-card__copy {
  margin-top: 12px;
  color: rgba(241, 247, 247, 0.84);
  font-size: 1.04rem;
  line-height: 1.55;
}
.pricing-card__divider {
  width: 100%;
  height: 1px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.1);
}
.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pricing-card__price {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 800;
  color: var(--white);
}
.pricing-card__interval {
  color: rgba(241, 247, 247, 0.92);
  font-size: 1.08rem;
  font-weight: 600;
}
.pricing-card__subnote {
  margin-top: 8px;
  margin-bottom: 22px;
  text-align: center;
  color: rgba(241, 247, 247, 0.84);
  font-size: 0.98rem;
}
.pricing-card--free .pricing-card__subnote {
  margin-top: 0;
  margin-bottom: 14px;
  color: rgba(241, 247, 247, 0.72);
}
.pricing-card--free .pricing-card__price-row {
  min-height: 4.8rem;
}
.pricing-card__email {
  margin: 15px 0 8px;
}
.pricing-card__email-input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.pricing-card__email-input::placeholder {
  color: rgba(241, 247, 247, 0.62);
}
.pricing-card__email-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.pricing-card__email-input.input-error {
  border-color: rgba(255, 170, 170, 0.64);
  background: rgba(154, 28, 28, 0.14);
}
.pricing-card__benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.pricing-card__benefits li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.55;
}
.pricing-card__benefits li::before {
  content: "•";
  position: absolute;
  top: 0.08em;
  left: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb8f33 0%, #f17f17 100%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}
.pricing-card__cta {
  width: 100%;
  min-height: 58px;
  margin: 0 0 19px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fb8f33 0%, #f17f17 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: none;
}
.pricing-card__benefits li::before {
  content: "\2022";
}
.pricing-card__cta[disabled] {
  opacity: 0.56;
  cursor: not-allowed;
}
.pricing-card__divider--bottom {
  margin: 0 0 22px;
}
.pricing-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 520px;
  margin: 30px auto 0;
  text-align: left;
  color: var(--gray-500);
}
.pricing-footer-note__icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: var(--green-600);
}
.pricing-footer-note__icon svg {
  width: 100%;
  height: 100%;
}
.thank-you-shell {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.thank-you-onboarding {
  margin-top: 30px;
  padding: 32px;
  border-radius: 10px;
  background: #f1f7f7;
  text-align: left;
}
.thank-you-onboarding__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.thank-you-onboarding__grid label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-weight: 600;
}
.thank-you-onboarding__grid input,
.thank-you-onboarding__grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(4, 34, 34, 0.14);
  border-radius: 10px;
  background: #fff;
  color: var(--green-900);
  font: inherit;
}
.thank-you-onboarding__notes {
  grid-column: 1 / -1;
}
.thank-you-onboarding__submit {
  margin-top: 20px;
}
.manage-support-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-grid, .why-grid, .trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-shell {
  position: relative;
  min-height: calc(88vh - var(--header-height));
  padding: 72px 64px;
  border-radius: 10px;
  background: #042222;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 26, 26, 0.14);
}
.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero-shell::before {
  top: -140px;
  right: -90px;
  width: 340px;
  height: 340px;
  border: 28px solid rgba(0, 223, 130, 0.12);
}
.hero-shell::after {
  right: 120px;
  bottom: -180px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 223, 130, 0.18) 0%, rgba(0, 223, 130, 0) 70%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(88vh - var(--header-height) - 144px);
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.62fr);
  gap: 56px;
}
.hero-content,
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content {
  max-width: 640px;
}
.hero-visual {
  align-items: flex-end;
  justify-content: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-100);
  margin-bottom: 16px;
}
.hero-support, .why-content p, .trust-content p, .entry-content p, .not-found-copy, .page-intro {
  color: var(--gray-600);
  line-height: 1.7;
}
.hero h1 {
  color: var(--white);
  max-width: 540px;
}
.hero-support {
  margin-top: 20px;
  font-size: 1.05rem;
  max-width: 500px;
  color: rgba(241, 247, 247, 0.8);
}
.trust-micro {
  margin-top: 16px;
  font-size: 0.86rem;
  color: rgba(241, 247, 247, 0.7);
}
.hero .newsletter-signup {
  margin-top: 28px;
  max-width: 520px;
}
.hero .form-row {
  padding: 6px;
  border: 1px solid rgba(232, 239, 239, 0.9);
  border-radius: 10px;
  background: rgba(244, 248, 248, 0.94);
  box-shadow: none;
}
.hero .form-row input[type="email"] {
  height: 56px;
  border-radius: 10px;
  color: var(--gray-900);
  background: transparent;
}
.hero .form-row input[type="email"]::placeholder {
  color: var(--gray-400);
}
.hero .form-row input[type="email"]:focus {
  border-color: rgba(0, 223, 130, 0.36);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 223, 130, 0.18);
}
.hero .newsletter-form .btn {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 10px;
  box-shadow: none;
}
.hero .newsletter-form .btn:hover,
.hero .newsletter-form .btn:focus-visible,
.hero .newsletter-form .btn[disabled] {
  box-shadow: none;
}
.hero .form-feedback.success {
  color: var(--green-100);
}
.hero .form-feedback.error {
  color: #fca5a5;
}
.hero-phone-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 100%;
}
.hero-phone-image {
  width: min(100%, 310px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.28));
}
.hero-phone-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
}
.hero-phone-fallback__device {
  width: 320px;
  padding: 14px 12px 16px;
  border-radius: 40px;
  background: linear-gradient(180deg, #0a3333 0%, #021a1a 100%);
  box-shadow: 0 30px 44px rgba(0, 0, 0, 0.28);
}
.hero-phone-fallback__notch {
  width: 116px;
  height: 18px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.hero-phone-fallback__screen {
  padding: 24px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #eff8f4 100%);
}
.hero-phone-fallback__eyebrow,
.hero-phone-fallback__title,
.hero-phone-fallback__card,
.hero-phone-fallback__footer {
  border-radius: 999px;
  background: rgba(4, 34, 34, 0.08);
}
.hero-phone-fallback__eyebrow {
  width: 98px;
  height: 14px;
}
.hero-phone-fallback__title {
  width: 100%;
  height: 18px;
  margin-top: 16px;
}
.hero-phone-fallback__title--short {
  width: 70%;
  margin-top: 10px;
}
.hero-phone-fallback__card {
  width: 100%;
  height: 128px;
  margin-top: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 157, 64, 0.12) 0%, rgba(0, 157, 64, 0.03) 100%);
}
.hero-phone-fallback__chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  height: 88px;
  margin-top: 22px;
}
.hero-phone-fallback__chart span {
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(0, 157, 64, 0.78) 0%, rgba(0, 157, 64, 0.28) 100%);
}
.hero-phone-fallback__chart span:nth-child(1) { height: 54%; }
.hero-phone-fallback__chart span:nth-child(2) { height: 82%; }
.hero-phone-fallback__chart span:nth-child(3) { height: 42%; }
.hero-phone-fallback__chart span:nth-child(4) { height: 68%; }
.hero-phone-fallback__footer {
  width: 86%;
  height: 16px;
  margin-top: 20px;
}

.launch-section {
  padding: 88px 0;
  background: var(--white);
}
.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: center;
}
.launch-content {
  max-width: 620px;
}
.launch-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1ede7;
  color: var(--gray-800);
  font-size: 0.8rem;
  font-weight: 600;
}
.launch-heading {
  margin-top: 22px;
  font-size: 3.1rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}
.launch-heading__highlight {
  color: var(--accent);
}
.launch-copy {
  max-width: 520px;
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-500);
}
.launch-points {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}
.launch-point {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.launch-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 3px;
}
.launch-point__body h3 {
  margin-bottom: 4px;
  font-size: 1.2rem;
  color: var(--gray-900);
}
.launch-point__body p {
  color: var(--gray-500);
  line-height: 1.65;
}
.launch-visual {
  display: flex;
  justify-content: flex-end;
}
.launch-visual-card {
  width: min(100%, 490px);
  min-height: 480px;
  padding: 36px;
  border-radius: 24px;
  background: #f3efe8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.launch-visual-image {
  width: 100%;
  max-width: 410px;
  max-height: 420px;
  object-fit: contain;
}
.launch-visual-fallback {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
}
.launch-visual-fallback__board {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 34%;
  height: 42%;
  border: 2px solid rgba(231, 112, 13, 0.35);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}
.launch-visual-fallback__figure {
  position: absolute;
  left: 20%;
  bottom: 18%;
  width: 36%;
  height: 40%;
}
.launch-visual-fallback__head {
  position: absolute;
  top: 0;
  left: 28%;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #173535;
}
.launch-visual-fallback__body {
  position: absolute;
  top: 44px;
  left: 8%;
  width: 132px;
  height: 120px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent) 0%, #f4a259 100%);
  transform: rotate(-10deg);
}
.launch-visual-fallback__checklist {
  position: absolute;
  right: 10%;
  bottom: 26%;
  display: grid;
  gap: 18px;
  width: 34%;
}
.launch-visual-fallback__checklist span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(2, 26, 26, 0.16);
}

.purchase-reasons {
  padding: 32px 0 88px;
  background: var(--white);
}
.purchase-reasons__header {
  margin-bottom: 40px;
}
.purchase-reasons__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1ede7;
  color: var(--gray-800);
  font-size: 0.8rem;
  font-weight: 600;
}
.purchase-reasons__heading {
  max-width: 780px;
  margin-top: 20px;
  font-size: 3rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}
.purchase-reasons__highlight {
  color: var(--accent);
}
.purchase-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.purchase-reason-card {
  min-height: 320px;
  padding: 40px 38px 34px;
  border-radius: 10px;
  background: #f1f7f7;
}
.purchase-reason-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 10px;
  background: var(--white);
  color: var(--gray-900);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 28px;
  overflow: hidden;
  line-height: 1;
  flex-shrink: 0;
}
.purchase-reason-card__icon svg {
  display: block;
  width: 34px;
  height: 34px;
}
.purchase-reason-card h3 {
  margin-bottom: 16px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--gray-900);
}
.purchase-reason-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-500);
}

.newsletter-contents {
  padding: 0 0 88px;
  background: var(--white);
}
.newsletter-contents__header {
  max-width: 860px;
  margin: 0 0 40px;
  text-align: left;
}
.newsletter-contents__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1ede7;
  color: var(--gray-800);
  font-size: 0.8rem;
  font-weight: 600;
}
.newsletter-contents__heading {
  margin-top: 20px;
  font-size: 3rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}
.newsletter-contents__highlight {
  color: var(--accent);
}
.newsletter-contents__carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.newsletter-contents__viewport {
  overflow: hidden;
}
.newsletter-contents__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.newsletter-contents__track::-webkit-scrollbar {
  display: none;
}
.newsletter-contents__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(2, 26, 26, 0.1);
  border-radius: 999px;
  background: var(--white);
  color: var(--gray-900);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}
.newsletter-contents__control span {
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-1px);
}
.newsletter-contents__control:hover,
.newsletter-contents__control:focus-visible {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}
.newsletter-contents__control[disabled] {
  opacity: 0.4;
  cursor: default;
}
.newsletter-content-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 100%;
  padding: 24px;
  border-radius: 10px;
  background: #f1f7f7;
  scroll-snap-align: start;
}
.newsletter-content-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}
.newsletter-content-card__image {
  width: 100%;
  max-width: 280px;
  max-height: 240px;
  object-fit: contain;
}
.newsletter-content-card__fallback {
  position: relative;
  width: min(100%, 250px);
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(231, 112, 13, 0.08), rgba(4, 34, 34, 0.08));
}
.newsletter-content-card__fallback span {
  position: absolute;
  border-radius: 999px;
  background: rgba(4, 34, 34, 0.16);
}
.newsletter-content-card__fallback span:nth-child(1) {
  top: 22%;
  left: 16%;
  width: 56%;
  height: 16px;
}
.newsletter-content-card__fallback span:nth-child(2) {
  top: 38%;
  left: 16%;
  width: 68%;
  height: 16px;
}
.newsletter-content-card__fallback span:nth-child(3) {
  top: 56%;
  left: 16%;
  width: 44%;
  height: 16px;
}
.newsletter-content-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.newsletter-content-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--gray-900);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}
.newsletter-content-card h3 {
  margin-top: 18px;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--gray-900);
}
.newsletter-content-card p {
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--gray-500);
}
.newsletter-content-card__button {
  margin-top: auto;
  padding: 14px 22px;
  border-radius: 10px;
  background: var(--green-700);
  color: var(--white);
  box-shadow: none;
}
.newsletter-content-card__button:hover,
.newsletter-content-card__button:focus-visible {
  background: var(--gray-900);
  transform: translateY(-1px);
  box-shadow: none;
}

.preview-card, .data-card, .feature-card, .edition-card, .page-card, .not-found-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.preview-card {
  max-width: 520px;
  margin-left: auto;
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.preview-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.preview-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--green-50);
  color: var(--green-600);
  padding: 4px 12px;
  border-radius: 20px;
}
.preview-date, .edition-meta { font-size: 0.75rem; color: var(--gray-400); }
.preview-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  padding: 0 4px;
  margin-bottom: 20px;
}
.chart-bar {
  flex: 1;
  height: var(--h);
  background: var(--green-100);
  border-radius: 6px 6px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 6px;
}
.chart-bar span { font-size: 0.65rem; color: var(--gray-400); margin-top: 8px; }
.chart-bar--accent { background: linear-gradient(180deg, var(--green-500), var(--green-600)); }
.chart-bar--accent span { color: var(--white); }
.preview-takeaway {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid rgba(3, 98, 76, 0.08);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}
.takeaway-icon { font-size: 1.2rem; flex-shrink: 0; }
.preview-takeaway p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }

.bold-statement { padding: 96px 0; text-align: center; background: var(--gray-50); }
.bold-statement h2 { font-size: 2rem; max-width: 640px; margin: 0 auto; }
.bold-statement p { margin-top: 16px; color: var(--gray-500); font-size: 1.05rem; }

.why-helps, .past-editions, .faq, .entry-section { padding: 88px 0; background: var(--white); }
.weekly-content, .editorial-trust, .entry-shell { padding: 88px 0; background: var(--gray-50); }
.why-content h2, .trust-content h2 { margin-bottom: 20px; }

.data-card { padding: 28px; box-shadow: var(--shadow-sm); }
.data-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.dc-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.dc-row:last-child { margin-bottom: 0; }
.dc-label { font-size: 0.82rem; color: var(--gray-700); width: 140px; flex-shrink: 0; }
.dc-track { flex: 1; height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.dc-fill { height: 100%; background: linear-gradient(90deg, var(--green-600), var(--green-500)); border-radius: 4px; }
.dc-val { font-size: 0.8rem; font-weight: 600; color: var(--gray-600); width: 36px; text-align: right; }

.section-title { text-align: center; margin-bottom: 48px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  padding: 32px 24px;
  border-color: rgba(3, 98, 76, 0.12);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover, .edition-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon { font-size: 1.6rem; margin-bottom: 16px; color: var(--accent); }
.feature-card h3, .edition-card h3 { margin-bottom: 8px; }
.feature-card p, .edition-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.55; }

.editions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.edition-card { overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.edition-card-link { display: block; height: 100%; }
.edition-media { height: 160px; overflow: hidden; background: var(--gray-100); }
.edition-image { width: 100%; height: 100%; object-fit: cover; }
.edition-placeholder { height: 160px; background: linear-gradient(135deg, var(--green-50), var(--gray-100)); }
.edition-body { padding: 24px; }

.trust-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--green-50), rgba(44, 194, 149, 0.28));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.trust-signature {
  margin-top: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  font-style: italic;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}
.faq-intro {
  max-width: 460px;
}
.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f1ede7;
  color: var(--gray-800);
  font-size: 0.8rem;
  font-weight: 600;
}
.faq-heading {
  margin-top: 20px;
  font-size: 3rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}
.faq-heading__highlight {
  color: var(--accent);
}
.faq-copy {
  max-width: 420px;
  margin-top: 22px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-500);
}
.accordion { width: 100%; }
.faq-accordion {
  max-width: 100%;
  margin: 0;
}
.accordion-item { border-bottom: 1px solid rgba(2, 26, 26, 0.08); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gray-800);
  text-align: left;
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--gray-900); }
.accordion-question {
  display: flex;
  gap: 10px;
  min-width: 0;
}
.accordion-number {
  flex-shrink: 0;
  font-weight: 500;
}
.accordion-question-text {
  min-width: 0;
  line-height: 1.45;
}
.accordion-icon {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f1ede7;
}
.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}
.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  opacity: 0;
}
.accordion-panel {
  padding: 0 64px 24px 34px;
}
.accordion-panel p {
  font-size: 0.98rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.final-cta {
  padding: 96px 0;
  background: var(--white);
}
.final-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 64px 56px;
  border-radius: 10px;
  background: var(--green-700);
  box-shadow: 0 24px 60px rgba(2, 26, 26, 0.14);
}
.final-cta-shell::before,
.final-cta-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.final-cta-shell::before {
  top: -150px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 28px solid rgba(231, 112, 13, 0.18);
}
.final-cta-shell::after {
  left: 48%;
  bottom: -180px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 223, 130, 0.16) 0%, rgba(0, 223, 130, 0) 72%);
}
.final-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
}
.final-cta-content {
  max-width: 560px;
}
.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}
.final-cta h2 {
  max-width: 560px;
  margin-top: 18px;
  color: var(--white);
  font-size: 2.75rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.final-cta-copy {
  max-width: 500px;
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(241, 247, 247, 0.78);
}
.final-cta-trust {
  margin-top: 16px;
  font-size: 0.86rem;
  color: rgba(241, 247, 247, 0.68);
}
.final-cta-visual {
  display: flex;
  justify-content: flex-end;
}
.final-cta-visual-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 490px);
  min-height: 420px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
}
.final-cta-image {
  width: 100%;
  max-width: 420px;
  max-height: 360px;
  object-fit: contain;
}
.final-cta-fallback {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 0.82;
}
.final-cta-fallback__frame {
  position: absolute;
  inset: 8% 10% 16%;
  border: 2px solid rgba(231, 112, 13, 0.35);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f1 100%);
}
.final-cta-fallback__panel,
.final-cta-fallback__card {
  position: absolute;
  border-radius: 12px;
  border: 1.5px solid rgba(231, 112, 13, 0.28);
  background: rgba(255, 255, 255, 0.96);
}
.final-cta-fallback__panel--large {
  top: 16%;
  left: 10%;
  width: 34%;
  height: 34%;
}
.final-cta-fallback__panel--small {
  top: 16%;
  right: 10%;
  width: 38%;
  height: 26%;
}
.final-cta-fallback__card--left {
  left: 18%;
  bottom: 16%;
  width: 26%;
  height: 16%;
}
.final-cta-fallback__card--right {
  right: 14%;
  bottom: 16%;
  width: 28%;
  height: 22%;
}
.final-cta-fallback__person {
  position: absolute;
  bottom: 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.final-cta-fallback__person--left {
  left: 6%;
}
.final-cta-fallback__person--right {
  right: 4%;
}
.final-cta-fallback__head {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4a259 0%, var(--accent) 100%);
}
.final-cta-fallback__body {
  width: 54px;
  height: 116px;
  border-radius: 18px 18px 14px 14px;
  background: linear-gradient(180deg, #173535 0%, #244949 100%);
}

.site-footer {
  padding: 52px 0 40px;
  background: var(--white);
  border-top: 1px solid rgba(2, 26, 26, 0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(0, 2fr);
  gap: 56px;
  align-items: start;
}
.footer-brand {
  max-width: 300px;
}
.footer-brand-mark {
  display: flex;
  align-items: flex-start;
}
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
  text-decoration: none;
}
.footer-logo-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 240px;
  max-height: 78px;
  object-fit: contain;
}
.footer-logo-link--text {
  color: inherit;
}
.footer-logo-text {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--gray-900);
}
.footer-brand p {
  margin-top: 20px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.footer-copyright {
  font-size: 0.82rem;
  color: var(--gray-500);
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.footer-column {
  min-width: 0;
}
.footer-column-title {
  margin: 0 0 20px;
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--green-500);
}
.footer-nav {
  display: block;
}
.footer-menu-list,
.footer-menu-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu-list {
  display: grid;
  gap: 14px;
}
.footer-nav a,
.footer-contact-link {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--gray-800);
  transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact-link:hover {
  color: var(--green-500);
}
.footer-contact-list {
  display: grid;
  gap: 14px;
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  color: var(--green-500);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 157, 64, 0.38);
  border-radius: 6px;
  color: var(--green-600);
  font-size: 0.82rem;
  line-height: 1.2;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-badge:hover {
  background: var(--green-50);
  border-color: rgba(0, 157, 64, 0.58);
  color: var(--green-500);
}
.footer-badge__icon {
  font-size: 0.95rem;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(2, 26, 26, 0.08);
}
.footer-bottom-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.footer-bottom-menu,
.footer-bottom-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-bottom-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.footer-bottom-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color var(--transition);
}
.footer-bottom-menu a:hover {
  color: var(--green-500);
}

.newsletter-signup { margin-top: 28px; }
.newsletter-signup--standalone { margin-top: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }
.newsletter-form { width: 100%; }
.form-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(3, 98, 76, 0.1);
  box-shadow: 0 14px 30px rgba(2, 26, 26, 0.08);
}
.form-row input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 50px;
  padding: 0 16px;
  font-size: 1rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
}
.form-row input[type="email"]::placeholder { color: var(--gray-500); }
.form-row input[type="email"]:focus {
  outline: none;
  border-color: rgba(0, 157, 64, 0.24);
  background: rgba(238, 251, 246, 0.9);
  box-shadow: inset 0 0 0 1px rgba(0, 157, 64, 0.12);
}
.form-row input[type="email"].input-error {
  border-color: rgba(239, 68, 68, 0.28);
  background: rgba(254, 242, 242, 0.85);
}
.newsletter-form .btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
}
.newsletter-form.is-submitting .btn,
.newsletter-form.is-submitting input[type="email"] { opacity: 0.7; }
.newsletter-form .btn[disabled] {
  cursor: wait;
  transform: none;
  box-shadow: 0 8px 18px rgba(0, 157, 64, 0.18);
}
.form-feedback {
  font-size: 0.8rem;
  margin-top: 8px;
  min-height: 1.2em;
}
.form-feedback.success { color: var(--green-600); }
.form-feedback.error { color: #ef4444; }
.final-cta .newsletter-signup {
  margin-top: 28px;
  max-width: 520px;
}
.final-cta .newsletter-signup--standalone {
  max-width: 520px;
  margin-left: 0;
  margin-right: 0;
}
.final-cta .form-row {
  padding: 6px;
  border: 1px solid rgba(232, 239, 239, 0.9);
  border-radius: 10px;
  background: rgba(244, 248, 248, 0.94);
  box-shadow: none;
}
.final-cta .form-row input[type="email"] {
  height: 56px;
  border-radius: 10px;
  color: var(--gray-900);
  background: transparent;
}
.final-cta .form-row input[type="email"]::placeholder { color: var(--gray-400); }
.final-cta .form-row input[type="email"]:focus {
  border-color: rgba(0, 223, 130, 0.36);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 223, 130, 0.18);
}
.final-cta .form-row input[type="email"].input-error {
  border-color: rgba(239, 68, 68, 0.28);
  background: rgba(254, 242, 242, 0.85);
}
.final-cta .newsletter-form .btn {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 10px;
  box-shadow: none;
}
.final-cta .newsletter-form .btn:hover,
.final-cta .newsletter-form .btn:focus-visible,
.final-cta .newsletter-form .btn[disabled] {
  box-shadow: none;
}
.final-cta .form-feedback.success { color: var(--green-100); }
.final-cta .form-feedback.error { color: #fca5a5; }

.page-card, .not-found-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.single-post-card { max-width: 820px; }
.single-post-header { margin-bottom: 24px; }
.single-post-meta {
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.single-post-media {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-100);
}
.single-post-image { width: 100%; height: auto; }
.page-title, .not-found-title { margin-bottom: 16px; }
.entry-content > * + * { margin-top: 16px; }
.entry-content img { border-radius: var(--radius-sm); }
.not-found-actions { margin-top: 28px; }

@media (max-width: 960px) {
  h1 { font-size: 2.15rem; }
  .hero-grid, .why-grid, .trust-grid, .card-grid, .editions-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid, .why-grid, .trust-grid { gap: 40px; }
  .pricing-page-section {
    padding: 56px 0 80px;
  }
  .pricing-heading {
    font-size: clamp(2.5rem, 7vw, 3.7rem);
  }
  .pricing-copy {
    font-size: 1.04rem;
  }
  .pricing-grid--count-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-card__inner {
    padding: 28px 24px 24px;
  }
  .purchase-reasons__heading {
    font-size: 2.4rem;
  }
  .purchase-reasons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .final-cta-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 40px;
  }
  .final-cta-shell {
    padding: 48px 40px;
  }
  .final-cta h2 {
    font-size: 2.35rem;
  }
  .final-cta-visual-card {
    min-height: 360px;
    padding: 22px;
  }
  .faq-heading {
    font-size: 2.4rem;
  }
  .accordion-trigger {
    font-size: 1.15rem;
  }
  .accordion-panel {
    padding-right: 44px;
  }
  .newsletter-contents__heading {
    font-size: 2.4rem;
  }
  .newsletter-content-card {
    flex-basis: calc((100% - 24px) / 2);
  }
  .newsletter-content-card {
    padding: 22px;
  }
  .newsletter-content-card__media {
    min-height: 220px;
  }
  .purchase-reason-card {
    min-height: 280px;
    padding: 32px 28px;
  }
  .launch-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .launch-heading {
    font-size: 2.45rem;
  }
  .launch-visual-card {
    min-height: 400px;
    padding: 28px;
  }
  .hero { padding: 20px 0 40px; }
  .hero-shell {
    min-height: auto;
    padding: 56px 40px;
    border-radius: 10px;
  }
  .hero-grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
  }
  .hero-phone-image {
    width: min(100%, 300px);
  }
  .header-inner { align-items: center; }
  .thank-you-onboarding__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .container { padding: 0 16px; }
  .pricing-page-section {
    padding: 36px 0 64px;
  }
  .pricing-heading {
    margin-top: 18px;
    max-width: 11ch;
    font-size: 2.25rem;
  }
  .pricing-copy {
    margin-top: 18px;
    font-size: 0.98rem;
  }
  .pricing-breadcrumb {
    margin-top: 14px;
    font-size: 0.92rem;
  }
  .pricing-status {
    display: flex;
    padding: 12px 16px;
    font-size: 0.88rem;
  }
  .pricing-grid,
  .pricing-grid--count-2,
  .pricing-grid--count-3 {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
  }
  .pricing-card__badge-wrap {
    top: -16px;
  }
  .pricing-card__badge {
    min-height: 38px;
    padding: 0 20px;
    font-size: 0.9rem;
  }
  .pricing-card__inner {
    padding: 24px 20px 22px;
  }
  .pricing-card__title {
    margin-top: 20px;
    font-size: 1.65rem;
  }
  .pricing-card__copy {
    font-size: 0.98rem;
  }
  .pricing-card__price {
    font-size: 3rem;
  }
  .pricing-card__interval {
    font-size: 1rem;
  }
  .pricing-card__subnote {
    font-size: 0.92rem;
  }
  .pricing-card__cta {
    min-height: 54px;
  }
  .pricing-footer-note {
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 24px;
    text-align: left;
  }
  .purchase-reasons {
    padding: 12px 0 64px;
  }
  .purchase-reasons__header {
    margin-bottom: 28px;
  }
  .purchase-reasons__heading {
    font-size: 2rem;
  }
  .purchase-reasons__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-grid {
    gap: 28px;
  }
  .final-cta {
    padding: 72px 0;
  }
  .final-cta-shell {
    padding: 34px 22px;
  }
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .final-cta h2 {
    margin-top: 16px;
    font-size: 2rem;
  }
  .final-cta-copy {
    margin-top: 16px;
    font-size: 1rem;
  }
  .final-cta .newsletter-signup,
  .final-cta .newsletter-signup--standalone {
    max-width: 100%;
  }
  .final-cta-visual {
    justify-content: flex-start;
  }
  .final-cta-visual-card {
    width: 100%;
    min-height: 280px;
    padding: 18px;
    border-radius: 16px;
  }
  .final-cta-image {
    max-height: 240px;
  }
  .faq-heading {
    font-size: 2rem;
  }
  .faq-copy {
    margin-top: 18px;
    font-size: 1rem;
  }
  .accordion-trigger {
    gap: 16px;
    padding: 18px 0;
    font-size: 1rem;
  }
  .accordion-icon {
    width: 36px;
    height: 36px;
  }
  .accordion-panel {
    padding: 0 16px 18px 26px;
  }
  .newsletter-contents {
    padding: 0 0 64px;
  }
  .newsletter-contents__header {
    margin-bottom: 28px;
  }
  .newsletter-contents__heading {
    font-size: 2rem;
  }
  .newsletter-contents__carousel {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .newsletter-contents__viewport {
    order: 1;
  }
  .newsletter-contents__control {
    width: 42px;
    height: 42px;
  }
  .newsletter-contents__control--prev,
  .newsletter-contents__control--next {
    order: 2;
  }
  .newsletter-content-card {
    flex-basis: 86%;
  }
  .newsletter-content-card {
    padding: 20px;
  }
  .newsletter-content-card__media {
    min-height: 200px;
    margin-bottom: 18px;
  }
  .newsletter-content-card__image {
    max-width: 240px;
    max-height: 200px;
  }
  .purchase-reason-card {
    min-height: auto;
    padding: 28px 22px;
    border-radius: 10px;
  }
  .purchase-reason-card__icon {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    margin-bottom: 22px;
  }
  .purchase-reason-card__icon svg {
    width: 30px;
    height: 30px;
  }
  .launch-section {
    padding: 64px 0;
  }
  .launch-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .launch-heading {
    font-size: 2rem;
  }
  .launch-copy {
    margin-top: 18px;
  }
  .launch-points {
    margin-top: 26px;
  }
  .launch-visual {
    justify-content: flex-start;
  }
  .launch-visual-card {
    width: 100%;
    min-height: 320px;
    padding: 22px;
    border-radius: 18px;
  }
  .data-source-hero {
    padding: 64px 0 80px;
  }
  .data-source-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }
  .data-source-hero__content {
    max-width: 100%;
  }
  .data-source-hero__spacer {
    display: none;
  }
  .data-source-hero__heading {
    max-width: 13ch;
    font-size: clamp(2.2rem, 7vw, 3rem);
  }
  .data-source-hero__copy {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .data-source-hero__actions {
    margin-top: 28px;
    gap: 12px;
  }
  .data-source-hero__button {
    width: 100%;
    max-width: 320px;
  }
  .for-whom-hero {
    padding: 64px 0 80px;
  }
  .for-whom-hero__heading {
    max-width: 15ch;
    font-size: clamp(2.2rem, 7vw, 3rem);
  }
  .for-whom-hero__copy {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .for-whom-hero__actions {
    margin-top: 28px;
    gap: 12px;
  }
  .for-whom-hero__button {
    width: 100%;
    max-width: 320px;
  }
  .for-whom-cards {
    padding: 0 0 72px;
  }
  .for-whom-cards__header {
    margin-bottom: 28px;
  }
  .for-whom-cards__heading {
    max-width: 100%;
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }
  .for-whom-cards__copy {
    font-size: 1rem;
    line-height: 1.68;
  }
  .for-whom-cards__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .for-whom-fit {
    padding: 0 0 80px;
  }
  .for-whom-fit__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .for-whom-fit__intro,
  .for-whom-fit__copy {
    max-width: 100%;
  }
  .for-whom-fit__heading {
    max-width: 100%;
  }
  .for-whom-fit__list {
    gap: 18px;
  }
  .for-whom-fit__text {
    padding-bottom: 18px;
    font-size: 1.06rem;
    line-height: 1.6;
  }
  .for-whom-uses {
    padding: 0 0 80px;
  }
  .for-whom-uses__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .for-whom-uses__intro,
  .for-whom-uses__copy {
    max-width: 100%;
  }
  .for-whom-uses__heading {
    max-width: 100%;
  }
  .for-whom-uses__cards {
    gap: 22px 18px;
  }
  .for-whom-use-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
  }
  .for-whom-use-card__icon {
    width: 84px;
    height: 84px;
  }
  .for-whom-use-card__icon svg {
    width: 34px;
    height: 34px;
  }
  .for-whom-use-card__title {
    margin-top: 4px;
  }
  .for-whom-use-card__copy {
    margin-top: 8px;
    font-size: 0.95rem;
  }
  .for-whom-card {
    padding: 24px 20px 22px;
    border-radius: 18px;
  }
  .for-whom-card__icon {
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
  }
  .for-whom-card__icon svg {
    width: 36px;
    height: 36px;
  }
  .for-whom-card__title {
    font-size: 1.3rem;
  }
  .for-whom-card__copy {
    margin-top: 12px;
    font-size: 0.96rem;
  }
  .data-source-intro {
    padding: 0 0 72px;
  }
  .data-source-intro__shell {
    padding: 34px 24px 38px;
  }
  .data-source-intro__content,
  .data-source-intro__copy {
    max-width: 100%;
  }
  .data-source-intro__heading {
    max-width: 100%;
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .data-source-intro__copy {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.72;
  }
  .data-source-flow {
    gap: 14px;
    margin-top: 28px;
  }
  .data-source-flow__item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }
  .data-source-flow__line {
    top: 78px;
    bottom: -14px;
  }
  .data-source-step {
    min-height: auto;
    padding: 20px 18px 18px;
    border-radius: 16px;
  }
  .data-source-step__icon {
    width: 72px;
    height: 72px;
    border-width: 3px;
  }
  .data-source-step__icon svg {
    width: 34px;
    height: 34px;
  }
  .data-source-step__meta {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }
  .data-source-step__number {
    font-size: 1.4rem;
  }
  .data-source-step__title {
    font-size: 1.2rem;
    line-height: 1.22;
  }
  .data-source-step__copy {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.6;
  }
  .data-source-summary {
    margin-top: 20px;
    gap: 14px;
    padding-top: 18px;
    justify-content: flex-start;
  }
  .data-source-summary__item {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
  .data-source-summary__item::before {
    display: inline-block;
  }
  .data-source-summary__item:first-child::before {
    display: inline-block;
  }
  .data-source-summary__value {
    font-size: 1.45rem;
  }
  .data-source-summary__label {
    font-size: 0.95rem;
  }
  .data-source-editorial {
    padding: 0 0 72px;
  }
  .data-source-editorial__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .data-source-editorial__content,
  .data-source-editorial__copy {
    max-width: 100%;
  }
  .data-source-editorial__visual {
    justify-content: flex-start;
  }
  .data-source-editorial__visual-card {
    width: 100%;
    min-height: 320px;
    padding: 22px;
  }
  .data-source-editorial__fallback {
    max-width: 260px;
  }
  .data-source-editorial__fallback-lines span {
    width: 88px;
    height: 8px;
  }
  .data-source-editorial__fallback-head {
    width: 36px;
    height: 36px;
  }
  .data-source-editorial__fallback-body {
    width: 44px;
    height: 92px;
  }
  .hero { padding: 12px 0 28px; }
  .hero-shell {
    padding: 36px 22px;
    border-radius: 10px;
  }
  .bold-statement { padding: 64px 0; }
  .why-helps, .weekly-content, .past-editions, .editorial-trust, .faq, .entry-section, .entry-shell { padding: 64px 0; }
  .hero-grid, .why-grid, .trust-grid, .card-grid, .editions-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-content {
    max-width: 100%;
  }
  .hero-visual {
    margin-top: 12px;
  }
  .hero-phone-image,
  .hero-phone-fallback {
    width: min(100%, 280px);
  }
  .hero-phone-fallback__device {
    width: 100%;
  }
  .dc-label { width: 110px; font-size: 0.75rem; }
  .form-row { flex-direction: column; align-items: stretch; }
  .form-row input[type="email"], .form-row .btn { width: 100%; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding-top: 18px;
  }
  .footer-bottom-nav {
    margin-left: 0;
  }
  .footer-bottom-menu {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .brand-lockup {
    flex-wrap: nowrap;
  }
  .header-nav {
    margin-left: 16px;
  }
  .header-nav .header-menu,
  .header-nav ul,
  .footer-nav ul { flex-direction: column; align-items: flex-start; }
  .header-menu__link--button {
    width: 100%;
    justify-content: flex-start;
  }
  .footer-inner { text-align: left; }
  .footer-brand p {
    margin-top: 16px;
  }
  .footer-logo-image {
    max-width: 200px;
    max-height: 68px;
  }
  .footer-logo-text {
    font-size: 1.7rem;
  }
  .footer-copyright {
    margin-top: 0;
  }
  .page-card, .not-found-card, .preview-card, .data-card { padding: 24px; }
}
