:root {
  --ink: #0b1220;
  --ink-soft: #4c596d;
  --navy: #07111f;
  --navy-2: #0c1c30;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --line: #dfe6ef;
  --blue: #1677ff;
  --cyan: #21d4c2;
  --cyan-dark: #087d75;
  --lime: #c9f66b;
  --warning: #fff6dc;
  --warning-line: #f0d68b;
  --shadow-sm: 0 10px 30px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 24px 70px rgba(2, 12, 27, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

img,
svg {
  max-width: 100%;
}

[id] {
  scroll-margin-top: 96px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 17, 31, 0.94);
  color: #fff;
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.brand-mark::after {
  position: absolute;
  width: 16px;
  height: 16px;
  right: -5px;
  bottom: -5px;
  border: 4px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-links a {
  padding: 9px 10px;
  border-radius: 9px;
  color: #bac7d8;
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-links .nav-cta {
  margin-left: 6px;
  background: var(--lime);
  color: #14200b;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: #dcff95;
  color: #14200b;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 80% 15%, rgba(33, 212, 194, 0.2), transparent 24rem),
    radial-gradient(circle at 8% 82%, rgba(22, 119, 255, 0.24), transparent 26rem),
    var(--navy);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--cyan-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--cyan);
}

.eyebrow::before {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.8vw, 5rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

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

.hero h1 span {
  color: var(--lime);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #bdc9d8;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-weight: 780;
  line-height: 1.25;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(22, 119, 255, 0.25);
}

.button.primary {
  background: var(--lime);
  color: #14200b;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button.outline {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button.small {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0c67d6;
  font-weight: 760;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 28px;
  color: #9eafc3;
  font-size: 0.88rem;
}

.hero-proof span::before {
  margin-right: 7px;
  color: var(--cyan);
  content: "✓";
}

.path-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.path-card::before {
  position: absolute;
  width: 110px;
  height: 110px;
  top: -28px;
  right: -24px;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(64px);
  opacity: 0.35;
  content: "";
}

.path-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #cbd6e4;
  font-size: 0.86rem;
  font-weight: 700;
}

.status-pill {
  padding: 5px 9px;
  border: 1px solid rgba(201, 246, 107, 0.25);
  border-radius: 99px;
  background: rgba(201, 246, 107, 0.1);
  color: var(--lime);
  font-size: 0.72rem;
}

.path-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.path-step:first-of-type {
  border-top: 0;
}

.path-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(33, 212, 194, 0.15);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 850;
}

.path-step strong,
.path-step small {
  display: block;
}

.path-step small {
  margin-top: 3px;
  color: #91a3b9;
  line-height: 1.45;
}

.section {
  padding: 86px 0;
}

.section.soft {
  border-block: 1px solid #edf1f6;
  background: var(--surface-soft);
}

.section.dark {
  background: var(--navy);
  color: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section-heading > div {
  max-width: 710px;
}

.section-heading p,
.section-intro {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.dark .section-heading p {
  color: #aebcd0;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(11, 18, 32, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #c8d5e6;
  box-shadow: var(--shadow-sm);
}

.card p:last-child {
  margin-bottom: 0;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 12px;
  background: #e9f4ff;
  color: #0a65cc;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.card-kicker,
.article-meta,
.tool-meta {
  color: #6a778a;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card {
  min-height: 270px;
}

.service-card .card-number {
  position: absolute;
  top: 12px;
  right: 20px;
  color: #edf1f6;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.service-card ul,
.check-list,
.plain-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  margin-top: 8px;
  padding-left: 21px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--cyan-dark);
  content: "✓";
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 4px 42px 4px 0;
  counter-increment: steps;
}

.step:not(:last-child)::after {
  position: absolute;
  width: calc(100% - 72px);
  height: 1px;
  top: 24px;
  left: 62px;
  background: #cdd8e7;
  content: "";
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid #bbd2ef;
  border-radius: 15px;
  background: #fff;
  color: #0a65cc;
  font-weight: 900;
}

.step p {
  color: var(--ink-soft);
}

.article-card {
  display: flex;
  min-height: 275px;
  flex-direction: column;
}

.article-visual {
  position: relative;
  height: 120px;
  margin: -24px -24px 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.95), rgba(33, 212, 194, 0.82)),
    var(--blue);
}

.article-visual::before,
.article-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  content: "";
  transform: rotate(-12deg);
}

.article-visual::before {
  width: 130px;
  height: 72px;
  top: 30px;
  left: 34px;
}

.article-visual::after {
  width: 88px;
  height: 88px;
  right: 28px;
  bottom: -30px;
  border-radius: 50%;
}

.article-visual.alt {
  background: linear-gradient(135deg, #6f52e5, #2b78ff);
}

.article-visual.green {
  background: linear-gradient(135deg, #097b73, #42d99b);
}

.article-card .text-link {
  margin-top: auto;
}

.newsletter {
  position: relative;
  overflow: hidden;
  padding: 52px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(33, 212, 194, 0.24), transparent 20rem),
    var(--navy);
  color: #fff;
}

.newsletter-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
}

.newsletter p {
  color: #aebcd0;
}

.email-form {
  display: flex;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.email-form:focus-within {
  border-color: var(--lime);
  outline: 3px solid rgba(201, 246, 107, 0.28);
  outline-offset: 3px;
}

.form-label {
  display: block;
  margin-bottom: 7px;
  color: #dce7f5;
  font-size: 0.86rem;
  font-weight: 750;
}

.email-form input {
  min-width: 0;
  flex: 1;
  padding: 10px 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.email-form input::placeholder {
  color: #8fa1b7;
}

.form-note,
.form-message {
  margin: 10px 0 0;
  color: #8fa1b7;
  font-size: 0.78rem;
}

.form-message {
  color: var(--lime);
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 82% 0%, rgba(33, 212, 194, 0.17), transparent 22rem),
    var(--navy);
  color: #fff;
}

.page-hero h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #b9c6d7;
  font-size: 1.12rem;
}

.breadcrumb {
  margin-bottom: 28px;
  color: #92a4ba;
  font-size: 0.85rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-chip,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
  color: #536176;
  font-size: 0.8rem;
  font-weight: 720;
}

.filter-chip.active {
  border-color: #b5d6ff;
  background: #eaf4ff;
  color: #0b65cd;
}

.roadmap {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.roadmap::before {
  position: absolute;
  width: 2px;
  top: 25px;
  bottom: 25px;
  left: 29px;
  background: linear-gradient(var(--blue), var(--cyan));
  content: "";
}

.roadmap-stage {
  position: relative;
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: 60px 1fr;
  gap: 24px;
}

.roadmap-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 7px solid var(--surface-soft);
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan);
  font-weight: 900;
}

.roadmap-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.stage-details {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stage-details div {
  padding: 14px;
  border-radius: 10px;
  background: var(--surface-soft);
}

.stage-details strong,
.stage-details span {
  display: block;
}

.stage-details strong {
  margin-bottom: 4px;
  font-size: 0.78rem;
}

.stage-details span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.tool-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
}

.tool-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.tool-logo {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 13px;
  background: var(--navy);
  color: var(--cyan);
  font-weight: 900;
}

.tool-card .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.comparison:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.comparison table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: #f7f9fc;
  color: #3f4c60;
  font-size: 0.82rem;
}

.comparison tr:last-child td,
.comparison tr:last-child th {
  border-bottom: 0;
}

.resource-card {
  display: flex;
  flex-direction: column;
}

.resource-card .text-link {
  margin-top: auto;
}

.resource-card .download-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #087d75;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.notice {
  padding: 20px 22px;
  border: 1px solid var(--warning-line);
  border-radius: 14px;
  background: var(--warning);
  color: #594817;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.content-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 54px;
}

.prose {
  max-width: 790px;
}

.prose h2 {
  margin-top: 48px;
  font-size: 2rem;
}

.prose h3 {
  margin-top: 30px;
}

.prose p,
.prose li {
  color: #3f4d60;
}

.prose a {
  color: #0b65cd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.side-card {
  position: sticky;
  top: 98px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.side-card a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: #506076;
  font-size: 0.9rem;
}

.side-card a:last-child {
  border-bottom: 0;
}

.cta-strip {
  padding: 34px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eaf4ff, #e8fbf8);
}

.site-footer {
  padding: 58px 0 28px;
  background: #050c16;
  color: #a9b7c9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 48px;
}

.footer-brand {
  max-width: 330px;
}

.footer-brand p {
  margin-top: 18px;
  color: #7f91a8;
  font-size: 0.9rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.88rem;
}

.footer-column a {
  display: block;
  margin-top: 9px;
  font-size: 0.86rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #6f8299;
  font-size: 0.78rem;
}

.empty-state {
  display: none;
  padding: 36px;
  border: 1px dashed #c9d4e2;
  border-radius: var(--radius);
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 1040px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    max-height: calc(100vh - 72px);
    padding: 18px 16px 26px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy);
  }

  .nav-links.open {
    display: block;
  }

  .nav-links a {
    display: block;
    padding: 12px;
    font-size: 0.95rem;
  }

  .nav-links .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero-grid {
    gap: 38px;
  }

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

  .service-grid,
  .article-grid,
  .tool-grid,
  .resource-grid,
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    max-height: calc(100vh - 72px);
    padding: 18px 16px 26px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy);
  }

  .nav-links.open {
    display: block;
  }

  .nav-links a {
    display: block;
    padding: 12px;
    font-size: 0.95rem;
  }

  .nav-links .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero {
    padding: 68px 0;
  }

  .hero-grid,
  .newsletter-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .path-card {
    max-width: 560px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .button,
  .section-heading .text-link {
    margin-top: 18px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step {
    display: grid;
    padding: 0;
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
  }

  .step:not(:last-child)::after {
    width: 1px;
    height: calc(100% + 28px);
    top: 48px;
    left: 24px;
  }

  .step-number {
    margin: 0;
    grid-row: 1 / span 3;
  }

  .step h3,
  .step p {
    grid-column: 2;
  }

  .newsletter {
    padding: 36px 28px;
  }

  .side-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .hero,
  .page-hero {
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.65rem);
  }

  h2 {
    font-size: 2rem;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .audience-grid,
  .service-grid,
  .article-grid,
  .tool-grid,
  .resource-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 21px;
  }

  .article-visual {
    margin: -21px -21px 20px;
  }

  .stage-details {
    grid-template-columns: 1fr;
  }

  .roadmap-stage {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .roadmap::before {
    left: 21px;
  }

  .roadmap-marker {
    width: 44px;
    height: 44px;
    border-width: 5px;
  }

  .email-form {
    display: grid;
  }

  .email-form .button {
    width: 100%;
  }

  .newsletter {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

