:root {
  --color-ink: #111318;
  --color-muted: #5d6675;
  --color-border: #d8efe5;
  --color-surface: #ffffff;
  --color-soft: #f1fbf6;
  --color-navy: #073b32;
  --color-gold: #1dbf73;
  --color-gold-soft: #e8faf2;
  --shadow-soft: 0 18px 45px rgba(17, 19, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-ink);
  background: var(--color-surface);
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--color-ink);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

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

.narrow {
  width: min(800px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 800;
}

.brand-logo-mark {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: block;
  color: var(--color-gold);
}

.brand-text {
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
}

.hero {
  background:
    linear-gradient(120deg, rgba(18, 48, 74, 0.08), rgba(184, 138, 47, 0.12)),
    #fff;
  border-bottom: 1px solid var(--color-border);
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 48px;
  padding: 64px 0;
}

.hero h1,
.page-hero h1,
.article-main h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-subtitle,
.page-hero p,
.article-intro {
  color: var(--color-muted);
  font-size: 1.12rem;
}

.hero-panel {
  min-height: 440px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 18px;
  color: var(--color-muted);
}

.hero-panel-top strong {
  color: var(--color-gold);
}

.path-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.path-list span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-soft);
  font-weight: 800;
  text-align: center;
}

.eyebrow,
.category-label {
  margin: 0 0 10px;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
}

.button-primary {
  background: var(--color-navy);
  color: #fff;
}

.button-primary:hover {
  background: #0c2438;
}

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

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

.text-link {
  display: inline-flex;
  margin-top: auto;
  color: var(--color-navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.section {
  padding: 78px 0;
}

.section-muted {
  background: var(--color-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.section-heading h2,
.split-layout h2,
.cta-box h2,
.sidebar h2,
.pin-details h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p,
.split-layout p,
.card p,
.cta-box p,
.sidebar p,
.prose p,
.prose li {
  color: var(--color-muted);
}

.card-grid,
.blog-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 19, 24, 0.04);
}

.category-card,
.service-card,
.resource-card {
  min-height: 244px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--color-gold-soft);
  color: var(--color-gold);
  font-weight: 900;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  margin: 0;
  padding: 18px 18px 18px 46px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  position: relative;
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--color-gold);
}

.page-hero {
  padding: 78px 0;
  background: var(--color-soft);
  border-bottom: 1px solid var(--color-border);
}

.step-stack {
  display: grid;
  gap: 18px;
}

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

.step-card h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.step-card p {
  margin: 0;
  color: var(--color-muted);
}

.cta-box,
.disclosure-box,
.draft-note {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-gold-soft);
  padding: 24px;
  margin: 28px 0;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-box .button-row {
  margin-top: 0;
  flex-shrink: 0;
}

.disclosure-box,
.draft-note {
  color: #4d4224;
}

.resource-card ul,
.article-section ul {
  padding-left: 20px;
  color: var(--color-muted);
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.image-placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(18, 48, 74, 0.92), rgba(184, 138, 47, 0.82)),
    var(--color-navy);
  color: #fff;
  text-align: center;
  font-weight: 900;
}

.pin-ratio {
  aspect-ratio: 2 / 3;
  min-height: 520px;
  font-size: 2rem;
  line-height: 1.12;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 48px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-main h1 {
  margin-bottom: 12px;
}

.updated {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-weight: 700;
}

.toc {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-soft);
}

.toc h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.toc ol {
  margin: 0;
  padding-left: 22px;
}

.toc a {
  color: var(--color-navy);
  font-weight: 700;
  text-decoration: none;
}

.article-section {
  margin: 34px 0;
}

.article-section h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
  line-height: 1.2;
}

.article-section p,
.article-section li {
  color: #333b48;
}

.sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
}

.sidebar-section {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}

.sidebar h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.sidebar-links {
  display: grid;
  gap: 10px;
}

.sidebar-links a {
  color: var(--color-navy);
  font-weight: 700;
  text-decoration: none;
}

.pin-card {
  margin: 26px 0;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pin-details {
  padding: 22px;
}

.pin-details p {
  margin: 8px 0;
  color: var(--color-muted);
}

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

.prose h2 {
  margin-top: 30px;
  font-size: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
}

.site-footer {
  background: var(--color-ink);
  color: #fff;
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  margin: 8px 0;
}

.footer-brand {
  color: #fff;
  --logo-bg: #ffffff;
  --logo-line: #073b32;
  --logo-dot: #1dbf73;
  --logo-accent: #1dbf73;
}

.footer-brand .brand-logo-mark {
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.22));
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

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

  .hero-grid,
  .split-layout,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    min-height: 360px;
  }

  .sidebar {
    position: static;
  }

  .card-grid,
  .blog-grid,
  .resource-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    min-width: 0;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero h1,
  .page-hero h1,
  .article-main h1 {
    font-size: 2.2rem;
  }

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

  .card-grid,
  .blog-grid,
  .resource-grid,
  .compact-grid,
  .path-list {
    grid-template-columns: 1fr;
  }

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

  .pin-ratio {
    min-height: 430px;
    font-size: 1.6rem;
  }

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

  .button {
    min-width: 0;
  }
}

/* Design refresh: premium editorial resource hub */
:root {
  --color-ink: #121417;
  --color-muted: #5d6671;
  --color-border: #d8efe5;
  --color-surface: #fafffc;
  --color-soft: #effaf5;
  --color-navy: #073b32;
  --color-gold: #1dbf73;
  --color-gold-soft: #e8faf2;
  --color-sage: #00a86b;
  --color-coral: #20c997;
  --color-blue: #0a7f66;
  --shadow-soft: 0 18px 45px rgba(8, 70, 51, 0.09);
  --shadow-lift: 0 28px 70px rgba(8, 70, 51, 0.16);
}

body {
  background:
    linear-gradient(90deg, rgba(29, 191, 115, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(29, 191, 115, 0.045) 1px, transparent 1px),
    var(--color-surface);
  background-size: 48px 48px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.container {
  width: min(1180px, calc(100% - 48px));
}

.site-header {
  background: rgba(250, 255, 252, 0.93);
  box-shadow: 0 1px 0 rgba(29, 191, 115, 0.12);
}

.header-inner {
  min-height: 72px;
}

.brand {
  font-size: 0.98rem;
  --logo-bg: #073b32;
  --logo-line: #bfffe1;
  --logo-dot: #ffffff;
  --logo-accent: #1dbf73;
}

.brand-logo-mark {
  border-radius: 16px;
  filter: drop-shadow(0 10px 22px rgba(29, 191, 115, 0.24));
}

.primary-nav {
  gap: 6px;
}

.nav-link {
  padding: 9px 11px;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.is-active {
  background: #fff;
  box-shadow: 0 1px 0 rgba(18, 20, 23, 0.06);
}

.hero {
  min-height: 552px;
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  background: var(--color-ink);
  border-bottom: 1px solid rgba(18, 20, 23, 0.12);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 20, 23, 0.92) 0%, rgba(18, 20, 23, 0.75) 34%, rgba(18, 20, 23, 0.28) 66%, rgba(18, 20, 23, 0.08) 100%),
    linear-gradient(180deg, rgba(18, 20, 23, 0.14), rgba(18, 20, 23, 0.42));
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: block;
  padding: 62px 0 14px;
}

.hero-copy {
  width: min(720px, 100%);
  color: #fff;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #bfffe1;
  backdrop-filter: blur(10px);
}

.hero h1 {
  max-width: 700px;
  margin-top: 16px;
  color: #fff;
  font-size: 3.55rem;
  line-height: 1;
}

.hero-subtitle {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.hero .button-primary {
  background: #fff;
  color: var(--color-ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.hero .button-primary:hover {
  background: #e8faf2;
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-proof-row span,
.hero-resource-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-resource-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(18, 20, 23, 0.42);
  backdrop-filter: blur(16px);
}

.hero-panel,
.path-list {
  display: none;
}

.section {
  padding: 86px 0;
}

.section-muted {
  background: rgba(239, 250, 245, 0.74);
}

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

.section-heading h2,
.split-layout h2,
.cta-box h2,
.page-hero h1 {
  color: var(--color-ink);
}

.section-heading h2,
.split-layout h2,
.cta-box h2 {
  font-size: 2.25rem;
}

.eyebrow,
.category-label {
  color: var(--color-gold);
}

.card-grid,
.blog-grid,
.resource-grid {
  gap: 24px;
}

.card {
  border-color: rgba(8, 70, 51, 0.12);
  background: rgba(250, 255, 252, 0.96);
  box-shadow: 0 12px 34px rgba(8, 70, 51, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 191, 115, 0.42);
  box-shadow: var(--shadow-lift);
}

.category-card,
.service-card,
.resource-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
}

.category-card::before,
.service-card::before,
.resource-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, #1dbf73, #20c997, #0a7f66);
}

.card-icon {
  background: #e8faf2;
  box-shadow: inset 0 0 0 1px rgba(29, 191, 115, 0.22);
}

.category-card[data-tone="website"] .card-icon,
.category-card[data-tone="seo"] .card-icon,
.category-card[data-tone="ai-services"] .card-icon {
  background: #e4f8f3;
  color: var(--color-blue);
}

.category-card[data-tone="tiktok"] .card-icon,
.category-card[data-tone="social-media"] .card-icon,
.category-card[data-tone="digital-marketing"] .card-icon {
  background: #e7fbf5;
  color: var(--color-coral);
}

.service-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  background: #e8faf2;
  color: var(--color-sage);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  box-shadow: 0 10px 22px rgba(29, 191, 115, 0.16);
}

.button-secondary {
  background: rgba(250, 255, 252, 0.9);
}

.text-link {
  color: var(--color-navy);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(250, 255, 252, 0.96), rgba(232, 250, 242, 0.9)),
    var(--color-soft);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, #1dbf73, #20c997, #00a86b, #0a7f66);
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  justify-items: start;
  align-items: end;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(7, 59, 50, 0.94), rgba(29, 191, 115, 0.74));
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 86px;
  height: 86px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 8px, transparent 8px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 8px, transparent 8px);
  background-size: 22px 22px;
  opacity: 0.32;
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(18, 20, 23, 0.44);
  color: #fff;
  backdrop-filter: blur(8px);
}

.image-placeholder[data-tone="branding"],
.image-placeholder[data-tone="shopify"] {
  background: linear-gradient(135deg, #073b32, #1dbf73);
}

.image-placeholder[data-tone="website"],
.image-placeholder[data-tone="seo"] {
  background: linear-gradient(135deg, #073b32, #0a7f66);
}

.image-placeholder[data-tone="tiktok"],
.image-placeholder[data-tone="social-media"],
.image-placeholder[data-tone="digital-marketing"] {
  background: linear-gradient(135deg, #123b35, #20c997);
}

.image-placeholder[data-tone="ai-services"] {
  background: linear-gradient(135deg, #073b32, #00a86b);
}

.blog-card {
  background: #fafffc;
}

.blog-card-body {
  padding: 24px;
}

.blog-card h3 {
  font-size: 1.28rem;
}

.cta-box {
  background:
    linear-gradient(135deg, rgba(7, 59, 50, 0.97), rgba(10, 127, 102, 0.94));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lift);
}

.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box .button-primary {
  background: #fff;
  color: var(--color-ink);
}

.cta-box .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.disclosure-box,
.draft-note {
  background: #e8faf2;
  border-color: rgba(29, 191, 115, 0.28);
}

.sidebar-section,
.contact-form,
.step-card,
.toc,
.pin-card {
  background: rgba(250, 255, 252, 0.96);
  box-shadow: 0 12px 34px rgba(8, 70, 51, 0.06);
}

.site-footer {
  background:
    linear-gradient(135deg, #121417, #073b32);
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .hero {
    min-height: 552px;
  }

  .hero-grid {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: 2.76rem;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(18, 20, 23, 0.9), rgba(18, 20, 23, 0.58)),
      linear-gradient(180deg, rgba(18, 20, 23, 0.16), rgba(18, 20, 23, 0.52));
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .brand-text {
    max-width: 174px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-bg-img {
    object-position: 58% center;
  }

  .hero-grid {
    padding: 60px 0 18px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-resource-strip {
    margin-bottom: 18px;
  }

  .section-heading h2,
  .split-layout h2,
  .cta-box h2 {
    font-size: 1.78rem;
  }

  .card:hover {
    transform: none;
  }
}

@media (max-width: 360px) {
  .brand-logo-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    max-width: 145px;
  }
}
