:root {
  --ink: #102027;
  --muted: #5c6f74;
  --line: #dbe8e7;
  --cloud: #f4f8f7;
  --white: #ffffff;
  --teal: #04746f;
  --teal-dark: #063f3d;
  --mint: #d9fff4;
  --lime: #b9f271;
  --amber: #ffb84d;
  --blue: #2f6fed;
  --shadow: 0 24px 70px rgba(7, 54, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 232, 231, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
}

.brand-tm {
  margin-left: 1px;
  font-size: 0.34em;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0;
  vertical-align: super;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  place-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover,
.login-link:hover {
  color: var(--teal);
}

.login-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 700;
}

.login-link:hover {
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 72px 5vw;
  background:
    radial-gradient(circle at 72% 12%, rgba(185, 242, 113, 0.34), transparent 28%),
    linear-gradient(135deg, #effaf7 0%, #ffffff 52%, #eaf5f4 100%);
}

.hero-content {
  max-width: 700px;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.hero-copy {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-button {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(4, 116, 111, 0.22);
}

.secondary-button {
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.secondary-button.dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.35);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 10px 13px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.product-shell {
  overflow: hidden;
  min-height: 620px;
  background: #0d2528;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.78);
  background: #071719;
  font-size: 0.82rem;
}

.product-topbar span {
  width: 10px;
  height: 10px;
  background: #294549;
  border-radius: 50%;
}

.product-topbar strong {
  margin-left: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: 158px 1fr;
  min-height: 572px;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 14px;
  color: rgba(255, 255, 255, 0.66);
  background: #0a1e20;
  font-size: 0.83rem;
  font-weight: 700;
}

.product-sidebar span {
  padding: 12px 10px;
  border-radius: 8px;
}

.product-sidebar .active {
  color: var(--mint);
  background: rgba(217, 255, 244, 0.1);
}

.product-main {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-content: start;
  padding: 22px;
}

.score-card,
.status-card,
.risk-panel,
.activity-panel {
  background: #f8fffc;
  border-radius: 8px;
  padding: 18px;
}

.score-card {
  grid-column: span 3;
  min-height: 180px;
}

.status-card {
  grid-column: span 3;
  min-height: 180px;
}

.score-card p,
.status-card p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.score-card strong,
.status-card strong {
  display: block;
  margin: 18px 0 6px;
  font-size: 3.2rem;
  letter-spacing: -0.05em;
}

.score-card small,
.status-card small {
  color: var(--muted);
  font-weight: 600;
}

.green {
  background: #e6fff4;
}

.amber {
  background: #fff4dc;
}

.risk-panel {
  grid-column: span 4;
  min-height: 250px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.risk-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: end;
  height: 172px;
  margin-top: 26px;
}

.risk-bars span {
  height: var(--h);
  background: linear-gradient(180deg, var(--lime), var(--teal));
  border-radius: 8px 8px 3px 3px;
}

.activity-panel {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 250px;
  background: #152f33;
  color: var(--white);
}

.activity-panel div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.activity-panel div:last-child {
  border-bottom: 0;
}

.activity-panel strong,
.activity-panel span {
  display: block;
}

.activity-panel span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.section {
  padding: 92px 5vw;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: start;
  color: var(--white);
  background: var(--teal-dark);
}

.intro-band .eyebrow {
  color: var(--lime);
}

.intro-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.answer-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 120px 5vw 72px;
  color: var(--white);
  isolation: isolate;
}

.answer-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 63, 61, 0.9), rgba(6, 63, 61, 0.48) 52%, rgba(6, 63, 61, 0.08)),
    linear-gradient(0deg, rgba(16, 32, 39, 0.38), rgba(16, 32, 39, 0.08));
}

.answer-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.answer-hero-content {
  max-width: 760px;
}

.answer-hero .eyebrow {
  color: var(--lime);
}

.answer-hero h2 {
  max-width: 820px;
  margin-bottom: 18px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.22);
}

.answer-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  line-height: 1.75;
}

.challenge-grid,
.pricing-grid,
.insight-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.challenge-grid article,
.tier {
  padding: 26px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.challenge-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 800;
}

.challenge-grid p,
.feature-list p,
.tier p,
.tier li,
.insight-card p,
.article-card p,
.article-body p,
.article-body li,
.proof-card p,
footer p {
  color: var(--muted);
  line-height: 1.65;
}

.platform-section {
  background: #f9fbfb;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-list article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-card {
  position: sticky;
  top: 100px;
  padding: 30px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.workflow-card ol {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-card li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.workflow-card strong {
  color: var(--lime);
}

.workflow-card span {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.access-section {
  background: var(--white);
}

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

.tier {
  display: flex;
  flex-direction: column;
  min-height: 450px;
  background: var(--white);
}

.tier.featured {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.tier.featured .tier-label,
.tier.featured p,
.tier.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.tier-label {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier h3 {
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.tier ul {
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.tier li {
  position: relative;
  padding-left: 26px;
}

.tier li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.tier.featured li::before {
  color: var(--lime);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: stretch;
  background: var(--cloud);
}

.proof-card,
.metric-strip {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-strip {
  display: grid;
  gap: 18px;
}

.metric-strip div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.metric-strip div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.metric-strip strong {
  color: var(--teal);
  font-size: 3rem;
  letter-spacing: -0.05em;
}

.metric-strip span {
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(6, 63, 61, 0.88), rgba(6, 63, 61, 0.88)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='700' viewBox='0 0 1200 700'%3E%3Crect width='1200' height='700' fill='%23063f3d'/%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.16' stroke-width='2'%3E%3Cpath d='M0 480C130 410 230 550 360 480S590 320 720 390 980 550 1200 390'/%3E%3Cpath d='M0 240C170 160 240 330 410 240s230-150 410-60 260 160 380 70'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.contact-section .eyebrow {
  color: var(--lime);
}

.contact-section h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(430px, 100%);
  margin-top: 0;
}

.contact-visual {
  width: 100%;
  margin-bottom: 10px;
}

.contact-visual .visual-kicker {
  margin-bottom: 38px;
}

.contact-visual strong {
  font-size: 1.55rem;
}

.latest-insights {
  background: var(--white);
}

.featured-insight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(185, 242, 113, 0.22), transparent 30%),
    linear-gradient(135deg, #063f3d, #102027);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 54, 51, 0.14);
}

.featured-insight .eyebrow,
.featured-insight time {
  color: var(--lime);
}

.featured-insight time {
  display: inline-flex;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.featured-insight h3 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  letter-spacing: -0.04em;
}

.featured-insight p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.featured-insight .primary-button {
  white-space: nowrap;
}

.insight-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.insight-card,
.article-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 26px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.insight-card:hover,
.article-card:hover {
  border-color: rgba(4, 116, 111, 0.32);
  box-shadow: 0 18px 46px rgba(7, 54, 51, 0.1);
  transform: translateY(-2px);
}

.insight-card time,
.article-card time,
.article-date {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insight-card h3,
.article-card h3 {
  margin-top: 18px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.insight-card span,
.article-card span,
.text-link {
  margin-top: auto;
  color: var(--teal);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
}

.insights-hero {
  padding: 96px 5vw 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(185, 242, 113, 0.28), transparent 28%),
    linear-gradient(135deg, #063f3d, #102027);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: 42px;
  align-items: end;
  padding: 96px 5vw 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(185, 242, 113, 0.28), transparent 24%),
    radial-gradient(circle at 8% 85%, rgba(4, 116, 111, 0.42), transparent 30%),
    linear-gradient(135deg, #063f3d, #102027);
}

.insights-hero .eyebrow,
.article-hero .eyebrow {
  color: var(--lime);
}

.insights-hero h1,
.article-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
}

.insights-hero p,
.article-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.article-hero-content {
  max-width: 980px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.article-meta-row span {
  padding: 9px 12px;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-visual {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.article-visual::before {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 190px;
  height: 190px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
  opacity: 0.24;
}

.article-visual strong,
.article-visual span,
.article-visual p {
  position: relative;
}

.visual-kicker {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-visual strong {
  display: block;
  max-width: 320px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.visual-meter {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.visual-meter span {
  display: block;
  width: var(--w);
  height: 10px;
  background: linear-gradient(90deg, var(--lime), var(--mint));
  border-radius: 999px;
}

.article-visual p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  min-height: 310px;
  background: var(--white);
}

.article-card p {
  margin-bottom: 26px;
}

.article-page {
  background:
    linear-gradient(180deg, var(--cloud), #ffffff 52%, var(--cloud));
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.article-body {
  display: grid;
  gap: 22px;
}

.article-body h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.article-body p,
.article-body li {
  font-size: 1.03rem;
}

.article-body ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.article-body li {
  position: relative;
  padding-left: 28px;
}

.article-body li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.content-panel {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 54, 51, 0.08);
}

.problem-panel {
  border-top: 5px solid var(--amber);
}

.solution-panel {
  background:
    linear-gradient(135deg, rgba(217, 255, 244, 0.58), rgba(255, 255, 255, 0.96)),
    var(--white);
  border-top: 5px solid var(--teal);
}

.panel-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.panel-heading span {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--teal);
  background: var(--mint);
  border-radius: 8px;
  place-items: center;
  font-weight: 900;
}

.article-aside {
  position: sticky;
  top: 100px;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(185, 242, 113, 0.28), transparent 34%),
    var(--ink);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(7, 23, 25, 0.22);
}

.article-aside p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.article-aside .primary-button {
  width: 100%;
  margin-top: 12px;
}

.aside-stats {
  display: grid;
  gap: 10px;
  margin: 24px 0 18px;
}

.aside-stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  font-weight: 700;
}

.aside-stats strong {
  color: var(--lime);
  font-size: 1.18rem;
}

.share-card {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.share-card .eyebrow {
  margin-bottom: 12px;
  color: var(--lime);
}

.share-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.share-actions a,
.share-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.share-actions a:hover,
.share-actions button:hover {
  color: var(--ink);
  background: var(--lime);
}

.share-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64) !important;
  font-size: 0.85rem;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.post-nav-link,
.post-nav-home {
  display: flex;
  min-height: 86px;
  padding: 16px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-nav-link {
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.post-nav-link.next {
  text-align: right;
}

.post-nav-link span,
.post-nav-home {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-nav-link strong {
  color: var(--ink);
  line-height: 1.35;
}

.post-nav-link:hover,
.post-nav-home:hover {
  border-color: rgba(4, 116, 111, 0.32);
  box-shadow: 0 14px 32px rgba(7, 54, 51, 0.1);
}

.post-nav-link.disabled {
  opacity: 0.48;
}

.post-nav-link.disabled:hover {
  border-color: var(--line);
  box-shadow: none;
}

.post-nav-home {
  align-items: center;
  justify-content: center;
  min-width: 126px;
}

footer {
  background: #071719;
  color: var(--white);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 36px;
  align-items: center;
  padding: 64px 5vw;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 16%, rgba(185, 242, 113, 0.42), transparent 26%),
    linear-gradient(135deg, var(--mint), var(--white));
}

.footer-cta .eyebrow {
  color: var(--teal);
}

.footer-cta h2 {
  max-width: 780px;
}

.footer-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
}

.subscribe-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 54, 51, 0.14);
}

.subscribe-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.subscribe-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.subscribe-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(4, 116, 111, 0.12);
}

.subscribe-form .primary-button {
  width: 100%;
  margin-top: 4px;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 5vw;
}

.footer-brand {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-brand .brand-tm {
  font-size: 0.22em;
}

.footer-brand:hover {
  color: var(--lime);
}

.footer-base p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.login-modal {
  width: min(920px, calc(100vw - 32px));
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.login-modal::backdrop {
  background: rgba(7, 23, 25, 0.66);
  backdrop-filter: blur(12px);
}

.login-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(7, 23, 25, 0.36);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close:hover {
  color: var(--ink);
  background: var(--mint);
}

.login-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 20%, rgba(185, 242, 113, 0.34), transparent 30%),
    linear-gradient(145deg, #063f3d, #102027);
}

.login-panel .eyebrow {
  color: var(--lime);
}

.login-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.login-panel p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.login-highlights {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.login-highlights span {
  padding: 12px 14px;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-weight: 700;
}

.login-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 54px 42px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.login-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(4, 116, 111, 0.12);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-row a {
  color: var(--teal);
  font-weight: 800;
}

.login-submit {
  width: 100%;
  margin-top: 6px;
}

.login-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1080px) {
  .hero,
  .article-hero,
  .intro-band,
  .feature-layout,
  .proof-section,
  .article-shell,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .product-shell {
    min-height: auto;
  }

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

  .workflow-card {
    position: static;
  }

  .article-grid,
  .insight-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-insight {
    grid-template-columns: 1fr;
  }

  .featured-insight .primary-button {
    justify-self: start;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .answer-hero {
    min-height: 520px;
    padding-top: 92px;
  }

  .answer-hero::before {
    background:
      linear-gradient(0deg, rgba(6, 63, 61, 0.92), rgba(6, 63, 61, 0.42)),
      linear-gradient(90deg, rgba(16, 32, 39, 0.4), rgba(16, 32, 39, 0.05));
  }

  .article-hero {
    padding-top: 58px;
  }

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

  .product-sidebar {
    flex-direction: row;
    overflow-x: auto;
  }

  .product-main,
  .feature-list,
  .challenge-grid,
  .pricing-grid,
  .article-grid,
  .insight-preview-grid {
    grid-template-columns: 1fr;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-nav-link.next {
    text-align: left;
  }

  .content-panel {
    padding: 30px 24px;
  }

  .score-card,
  .status-card,
  .risk-panel,
  .activity-panel {
    grid-column: span 1;
  }

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

  .contact-section {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

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

  .login-panel {
    min-height: auto;
    padding: 34px 28px;
  }

  .login-form {
    padding: 34px 28px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3rem;
  }

  .section,
  .hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-main {
    padding: 14px;
  }

  .article-visual,
  .article-aside {
    padding: 22px;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .risk-bars {
    gap: 8px;
  }

  .form-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
