:root {
  --bg: #ffffff;
  --surface: #f7f5f0;
  --surface-strong: #f2ede0;
  --text: #151515;
  --muted: #66645d;
  --line: #e8e0d1;
  --gold: #ba9f33;
  --gold-deep: #ba9f33;
  --gold-light: #d8c46b;
  --download-hover-bg: linear-gradient(140deg, #c9ad3f 0%, #e1d080 45%, #b69127 100%);
  --download-glow: radial-gradient(circle at 18% 18%, rgba(216, 196, 107, 0.32), transparent 40%), radial-gradient(circle at 85% 76%, rgba(186, 159, 51, 0.24), transparent 42%);
  --download-sheen: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0) 70%);
  --teal: #1e4151;
  --shadow: 0 24px 80px rgba(26, 29, 32, 0.08);
  --radius: 14px;
  --container: 1200px;
  --header-height: 88px;
  --download-pattern-size: 120px;
  --hero-image-opacity: 0.82;
  --hero-glow-opacity: 0.45;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.4;
}

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

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

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(194, 166, 51, 0.08), transparent 28%),
    radial-gradient(circle at 12% 22%, rgba(30, 65, 81, 0.05), transparent 22%);
  z-index: -1;
}

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

.section {
  padding: 0;
}

.section-divider {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  height: 0;
}




.statement {
  padding: 10px 0 90px;
}

.final-cta {
  padding: 70px 0 70px;
}
.editorial-grid {
  padding: 80px 0 90px;
}

.flow {
  padding: 60px 0 70px;
}

.download {
  padding: 50px 0 0;
  background: linear-gradient( 180deg, rgba(251, 249, 244, 0.98), rgba(243, 238, 227, 0.95) );
}

.faq {
  padding: 50px 0 50px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease,
    backdrop-filter 180ms ease, -webkit-backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(232, 224, 209, 0.9);
  box-shadow: 0 12px 40px rgba(24, 24, 24, 0.04);
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #dcc878);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.brand-logo {
  display: inline-block;
  background: none;
  box-shadow: none;
  object-fit: contain;
}

.brand-text {
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-size: 1.3rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 0.96rem;
  color: var(--muted);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero-centered {
  display: flex;
  justify-content: center;
}

.eyebrow,
.download-os,
.final-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.98rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--teal);
  margin-bottom: 22px;
}

.hero-copy,
.statement-wrap,
.section-head-centered,
.final-cta-wrap {
  text-align: center;
}

.hero-copy {
  max-width: 920px;
  margin: 0 auto;
}

.section-head h2,
.final-cta-wrap h2,
.statement-line {
  margin: 0;
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  line-height: 0.90;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-size: clamp(3.7rem, 7.5vw, 6.4rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin: 0;
}

.hero-highlight {
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.hero-text,
.section-head p,
.statement-subline,
.feature-card p,
.flow-step p,
.site-footer p,
.final-text {
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-points,
.download-card-body p,
.download-card em,
.download-os,
.faq-note,
.faq-answer p,
.final-text,
.final-card em,
.community-item-text em,
.footer-note,
.footer-utility a,
.footer-column a {
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
}

.hero-text {
  max-width: 38rem;
  margin: 22px auto 30px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease,
    background 160ms ease;
}

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

.hero-points {
  margin: 24px 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
}
.statement-wrap {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
  justify-items: center;
}

.statement-line {
  max-width: 13ch;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.statement-subline {
  max-width: 34rem;
  margin: 0;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 38px;
}

.section-head-slim {
  max-width: 620px;
}

.section-head h2,
.final-cta-wrap h2 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.obvious-banner {
  position: relative;
  padding: 55px 0 40px;
  overflow: hidden;
  background: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.obvious-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/dogelogo.svg");
  background-repeat: repeat;
  background-size: var(--download-pattern-size);
  background-position: center;
  opacity: 0.35;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.obvious-banner .container {
  position: relative;
  z-index: 1;
}

.obvious-head {
  max-width: 880px;
}

.obvious-head h2 {
   color: #fff;
}

.obvious-head p {
  margin: 12px auto 0;
  color: #fff;
  display: none;
  font-weight: 600;
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  gap: 14px;
  align-items: stretch;
  margin: 0 auto;
}

.feature-list {
  display: grid;
  gap: 8px;
}


.panel,
.download-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 245, 240, 0.96));
}

.feature-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}


.feature-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  background: url("../assets/doge-feature.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feature-card h3,
.flow-step h3 {
  margin: 0;
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.feature-card p,
.flow-step p {
  margin: 0;
  max-width: 28rem;
}





.flow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: stretch;
}

.flow-head {
  margin: 0;
  align-self: center;
  max-width: 520px;
}

.flow-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  max-width: 10ch;
}

.flow-head p {
  margin: 0;
  max-width: 28rem;
}

.flow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.flow-step {
  padding: 28px 0 18px;
  border-top: 4px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.flow-step:first-child {
  border-top-width: 0px;
}

.flow-step h3 {
  margin: 0;
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.flow-step p {
  margin: 0;
  max-width: 34rem;
}

@media (max-width: 980px) {
  .flow-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .flow-head {
    align-self: start;
    max-width: 100%;
  }

  .flow-head h2,
  .flow-head p,
  .flow-step p {
    max-width: 100%;
  }
}

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

.download-head {
 max-width: 80ch;
}

.download-head .download-title {
  font-size: clamp(2.4rem, 5.1vw, 4.1rem);
  line-height: 0.95;
  z-index: 5;
}

.download-grid-shell {
  position: relative;
  padding: 45px 0;
}

.download-belt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  border-radius: 0;
  background: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  z-index: 0;
  overflow: hidden;
}


.download-belt::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/downloads.webp");
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  pointer-events: none;
}

.download-grid {
  position: relative;
  z-index: 1;
}

.download-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 14px 16px 0px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 240, 0.96));
  --download-title-color: #fff;
  --os-icon: none;
  --os-icon-size: 0px;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--download-glow);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.download-card::after {
  content: "";
  position: absolute;
  inset: -10%;
  background: var(--download-sheen);
  transform: translateX(-18%) rotate(6deg);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}


.download-card > * {
  position: relative;
  z-index: 1;
}

.download-os,
.final-kicker {
  color: var(--gold-deep);
}

.download-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: var(--download-title-color);
  padding: 11px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #927821, #cdb142);
  text-decoration: none;
}

.download-os-label {
  display: block;
}

.download-os-icon {
  display: inline-block;
  width: var(--os-icon-size);
  height: var(--os-icon-size);
  background: currentColor;
  -webkit-mask: var(--os-icon) center/contain no-repeat;
  mask: var(--os-icon) center/contain no-repeat;
  flex-shrink: 0;
}

.download-card--mac {
  --os-icon: url("../assets/apple-logo.svg");
  --os-icon-size: 34px;
}

.download-card--windows {
  --os-icon: url("../assets/windows-logo.svg");
  --os-icon-size: 34px;
}

.download-card--linux {
  --os-icon: url("../assets/linux-logo.svg");
  --os-icon-size: 34px;
}

.download-card em {
  font-style: normal;
  color: var(--muted);
}

.download-card:hover,
.download-card:focus-visible {
  border-color: rgba(186, 159, 51, 0.7);
  background: var(--download-hover-bg);
  box-shadow:
    0 14px 38px rgba(186, 159, 51, 0.2),
    0 8px 20px rgba(30, 65, 81, 0.1);
  color: #120f06;
}

.download-card:hover::before,
.download-card:focus-visible::before {
  opacity: 1;
}

.download-card:hover .download-card-title,
.download-card:focus-visible .download-card-title {
  color: var(--download-title-color);
}

.final-links a:hover,
.final-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(194, 166, 51, 0.5);
  box-shadow: 0 22px 60px rgba(26, 29, 32, 0.1);
}

.final-cta-wrap {
  position: relative;
  padding: 64px 32px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(232, 224, 209, 0.9);
  background:
    linear-gradient(150deg, rgba(194, 166, 51, 0.16), rgba(30, 65, 81, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 240, 0.96));
  box-shadow: 0 28px 80px rgba(26, 29, 32, 0.12);
  overflow: hidden;
}

.final-cta-wrap::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 60%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.55), transparent 60%);
  opacity: 0.65;
}

.final-cta-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/dogelogo.svg");
  background-repeat: repeat;
  background-size: 130px;
  mix-blend-mode: soft-light;
  opacity: 0.16;
  pointer-events: none;
}

.final-cta-wrap > * {
  position: relative;
}

.final-kicker {
  margin: 0 0 16px;
}

.final-text {
  max-width: 34rem;
  margin: 18px auto 0;
}

.final-actions {
  margin-top: 28px;
  margin-bottom: 18px;
  justify-content: center;
}

.final-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.link-arrow {
  font-weight: 800;
  display: inline-block;
  transition: transform 160ms ease;
}

.final-links a:hover .link-arrow,
.final-links a:focus-visible .link-arrow {
  transform: translateX(4px);
}

.final-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-block {
  padding: 6px 0 0;
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.faq-head {
  display: grid;
  gap: 6px;
}

.faq-block h2 {
  margin: 0;
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.faq-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--teal);
}

.faq-note {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 2px solid var(--line);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 12px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  border-radius: 999px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  border-radius: 999px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition: max-height 260ms ease, opacity 200ms ease, padding 200ms ease;
  color: var(--muted);
}

.faq-answer p {
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
  opacity: 1;
  padding: 6px 0 14px;
}

.faq-item.is-open .faq-question {
  color: var(--teal);
}

.faq-item.is-open .faq-icon {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background: #fff;
}

.faq-item.is-open .faq-icon::after {
  transform: scaleY(0);
}



[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1100px) {
  .feature-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    min-height: 420px;
    order: -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    left: 20px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding: calc(32px + var(--header-height)) 0 100px;
  }

  .hero-copy h1 {
    max-width: 9.5ch;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta-wrap {
    text-align: center;
  }

  .final-text {
    margin-left: auto;
    margin-right: auto;
  }

  .final-actions {
    justify-content: center;
  }

  .final-links {
    justify-content: center;
  }

  .footer-row {
    flex-direction: column;
  }
}

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

  .section-divider {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding: calc(32px + var(--header-height)) 0 84px;
  }

  .feature-visual {
    min-height: 320px;
  }

  .statement {
    padding: 10px 0 90px;
  }

  .editorial-grid,
  .flow,
  .final-cta {
    padding: 24px 0 84px;
  }

  .download {
    padding: 24px 0 30px;
  }

  .faq {
    padding: 20px 0 64px;
  }

  .hero-text,
  .statement-subline,
  .hero-points li,
  .feature-card p,
  .flow-step p,
  .site-footer p,
  .download-card em,
  .final-text {
    font-size: 0.98rem;
  }


  .hero-points li {
    padding: 0 12px;
    width: auto;
  }

  .feature-card,
  .download-card,
  .final-cta-wrap,
  .flow-step {
    padding-left: 20px;
    padding-right: 20px;
  }

  .download-card-title {
    font-size: 1.34rem;
  }
}

.button-ghost {
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--teal);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(194, 166, 51, 0.45);
  box-shadow: 0 14px 28px rgba(26, 29, 32, 0.08);
}

.button-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button-icon::before,
.button-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 999px;
}

.button-icon::before {
  width: 10px;
  height: 2px;
}

.button-icon::after {
  width: 2px;
  height: 10px;
}






.final-cta {
  padding: 48px 0 50px;
  margin: 0 auto;
  max-width: 1200px;
}

.final-cta-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.final-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(2.7rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 0.94;
  color: var(--gold-deep);
}

.final-text {
  max-width: 36rem;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.final-shelf {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.final-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 5px;
  min-height: 220px;
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,245,240,0.96));
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.44), transparent 42%),
    radial-gradient(circle at top right, rgba(255,255,255,0.36), transparent 30%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  z-index: 0;
}

.final-card::after {
  content: "";
  position: absolute;
  inset: -24% -12%;
  background:
    radial-gradient(circle at 26% 18%, rgba(194, 166, 51, 0.16), transparent 82%),
    radial-gradient(circle at 78% 10%, rgba(220, 200, 120, 0.12), transparent 74%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
  z-index: 0;
}

.final-card:hover,
.final-card:focus-within {
  border-color: rgba(194, 166, 51, 0.34);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(247,245,240,0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.final-card:hover::before,
.final-card:focus-within::before {
  opacity: 1;
}

.final-card:hover::after,
.final-card:focus-within::after {
  opacity: 1;
}

.final-card > * {
  position: relative;
  z-index: 1;
}

.final-card-label {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
}

.final-card > strong {
  position: relative;
  z-index: 1;
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 2.9vw, 2.45rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(155, 128, 34, 0.45);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 8px;
  transition:
    text-decoration-color 180ms ease,
    text-underline-offset 180ms ease;
}

.final-card:hover > strong,
.final-card:focus-within > strong {
  text-decoration-color: var(--gold-deep);
  text-underline-offset: 10px;
}

.final-card em {
  position: relative;
  z-index: 1;
  font-style: normal;
  color: var(--muted);
  font-size: 1.25rem;
}

.final-card-primary,
.final-card-secondary {
  justify-content: center;
}

.final-card-community {
  justify-content: start;
}

.community-list {
  display: grid;
  margin-top: 4px;
  gap: 4px;
}

.community-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 8px 10px;
  border-radius: 16px;
  width: 100%;
  border: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.community-item:hover,
.community-item:focus-visible {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,245,240,0.9));
  border-color: rgba(194, 166, 51, 0.28);
}

.community-item-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(242,237,224,0.92));
  border: 1px solid rgba(30, 65, 81, 0.08);
  color: var(--teal);
}

.community-item-icon svg {
  width: 27px;
  height: 27 px;
}

.community-item-text {
  display: grid;
  gap: 2px;
}

.community-item-text strong {
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.community-item-text em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .final-shelf {
    grid-template-columns: 1fr;
  }

  .final-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .final-cta {
    padding: 28px 0 84px;
  }

  .final-cta-head {
    margin-bottom: 24px;
  }

  .final-card {
    padding: 20px;
    border-radius: 20px;
  }

  .final-text,
  .community-item-text em,
  .final-card em {
    font-size: 0.98rem;
  }
}




.site-footer {
  padding: 28px 0 0;
  background: transparent;
}

.footer-top {
  padding: 50px 0 50px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
}

.footer-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  align-self: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-logo .brand-mark,
.site-footer .brand-mark {
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
}

.footer-logo .brand-text,
.site-footer .brand-text {
  font-size: 1.82rem;
  font-weight: 700;
}

.footer-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  max-width: 360px;
  margin-top: auto;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-utility a {
  position: relative;
  width: fit-content;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.2;
  transition: color 160ms ease;
}

.footer-utility a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: rgba(155, 128, 34, 0.32);
  transform: scaleX(0.55);
  transform-origin: left center;
  transition: transform 180ms ease, background 180ms ease;
}

.footer-utility a:hover,
.footer-utility a:focus-visible {
  color: var(--text);
}

.footer-utility a:hover::after,
.footer-utility a:focus-visible::after {
  background: rgba(155, 128, 34, 0.72);
}

.footer-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 30px 22px;
  align-items: start;
  justify-items: start;
  padding-top: 6px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-label {
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
}

.footer-column a {
  width: fit-content;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
  transition: color 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  background: #000000;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.footer-bottom-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-word {
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-size: clamp(5rem, 19vw, 15rem);
  line-height: 0.82;
  letter-spacing: -0.09em;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  color: transparent;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(194, 166, 51, 0.55) 52%,
    rgba(255, 255, 255, 0.52) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 28px rgba(194, 166, 51, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.24);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.22) 10%,
    rgba(0, 0, 0, 1) 24%,
    rgba(0, 0, 0, 1) 76%,
    rgba(0, 0, 0, 0.22) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.22) 10%,
    rgba(0, 0, 0, 1) 24%,
    rgba(0, 0, 0, 1) 76%,
    rgba(0, 0, 0, 0.22) 90%,
    transparent 100%
  );
}

.footer-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/dogelogo.svg");
  background-repeat: repeat;
  background-size: 95px;
  opacity: 0.03;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-map {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
  }

  .footer-column-project {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .footer-top {
    padding: 22px 0 28px;
  }

  .footer-map {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-utility {
    gap: 10px;
    max-width: 100%;
  }

  .footer-column a,
  .footer-utility a {
    font-size: 0.96rem;
  }

  .footer-bottom-word {
    font-size: clamp(4.4rem, 24vw, 8rem);
  }
}








.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-height));
  padding: calc(42px + var(--header-height)) 0 10px;
  background: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/hero.webp") center/cover no-repeat;
  opacity: var(--hero-image-opacity);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-shell {
  display: grid;
  gap: 24px;
}

.hero-kicker {
  display: flex;
  justify-content: center;
}

.hero-kicker .eyebrow {
  margin-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.0fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: center;
}

.hero-copy {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.hero-text {
  max-width: 36rem;
  margin: 18px auto 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  margin-top: 18px;
}

.hero-points {
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0;
}


.hero-visual {
  position: relative;
  min-height: 500px;
  border-radius: 24px;
  background: url("../assets/doge-feature.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-copy h1 .hero-highlight {
  color: transparent;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(194, 166, 51, 0.95) 42%,
    rgba(155, 128, 34, 0.95) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 18px rgba(194, 166, 51, 0.08),
    0 10px 26px rgba(0, 0, 0, 0.06);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  margin-top: 18px;
}

.hero-actions .button {
  font-size: 1.18rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  border-color: rgba(155, 128, 34, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #927821, #cdb142);
  border-color: rgba(155, 128, 34, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 6px 18px rgba(155, 128, 34, 0.1);
}

.button-secondary {
  color: var(--text);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(247, 245, 240, 0.96)
  );
  border-color: rgba(232, 224, 209, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: linear-gradient(
    180deg,
    rgba(247, 245, 240, 0.96),
    rgba(255, 255, 255, 0.98)
  );
  border-color: rgba(194, 166, 51, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-points {
  margin: 30px 0 30px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.25;
  padding: 0;
  white-space: nowrap;
  overflow-x: auto;
}

.hero-points li {
  position: relative;
  padding: 0 14px;
  border: none;
  border-radius: 0;
  background: transparent;
  flex: 0 0 auto;
}

.hero-points li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 18px;
  background: var(--line);
  transform: translateY(-50%);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    min-height: 460px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: calc(32px + var(--header-height)) 0 100px;
  }

  .hero::after {
    top: 56%;
    font-size: clamp(6rem, 30vw, 13rem);
    opacity: 0.42;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: calc(32px + var(--header-height)) 0 84px;
  }

  .hero::after {
    top: 58%;
    font-size: clamp(5.5rem, 34vw, 9rem);
    opacity: 0.34;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    justify-content: center;
    flex-wrap: nowrap;
  }

  .hero-points li {
    padding: 0 12px;
    text-align: center;
  }

  .hero-points li + li::before {
    display: block;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-visual {
    min-height: 320px;
  }
}


.download-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.download-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 180px;
  border: 2px solid rgba(232, 224, 209, 0.92);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,245,240,0.96));
  transition:
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease,
    transform 320ms,
    color 200ms ease;
}

.download-card:hover,
.download-card:focus-visible {
  border-color: rgba(186, 159, 51, 0.7);
  background: var(--download-hover-bg);
  box-shadow:
    0 14px 38px rgba(186, 159, 51, 0.2),
    0 8px 20px rgba(30, 65, 81, 0.1);
  color: #120f06;
}

.download-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 3px solid rgba(232, 224, 209, 0.9);
  color: var(--gold-deep);
}

.download-os {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.92rem;
  font-weight: 800;
  color: inherit;
    color: var(--gold-deep);
}

.download-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("../assets/download-icon.svg") center/contain no-repeat;
  mask: url("../assets/download-icon.svg") center/contain no-repeat;
  transition: transform 180ms ease;
}

.download-card:hover .download-os,
.download-card:focus-visible .download-os {
  color: #fffdf2;
}

.download-card:hover .download-icon,
.download-card:focus-visible .download-icon {
  color: #fffdf2;
  transform: translateX(1px);
}

.download-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 4px 14px 12px;
}

.download-card-body p {
  margin: 0;
  max-width: 24ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.3;
}

.download-card-meta {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid rgba(232, 224, 209, 0.9);
  background: rgba(247, 245, 240, 0.78);
}

.download-card-meta span {
  font-size: 0.9rem;
  line-height: 1.2;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .download-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    min-height: 210px;
  }
}

@media (max-width: 640px) {
  .download-card {
    min-height: auto;
    border-radius: 12px;
  }

  .download-card-head {
    padding: 14px 18px;
  }

  .download-card-body {
    padding: 22px 18px 24px;
  }

  .download-card-body p {
    font-size: 0.94rem;
  }

  .download-card-meta {
    padding: 12px 18px;
  }

  .download-card-meta span {
    font-size: 0.86rem;
  }
}




.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease,
    -webkit-backdrop-filter 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(232, 224, 209, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(21, 21, 21, 0.035);
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #dcc878);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.brand-logo {
  display: inline-block;
  background: none;
  box-shadow: none;
  object-fit: contain;
}

.brand-text {
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-size: 1.5rem;
}

.header-meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-left: 16px;
  border-left: 2px solid rgba(232, 224, 209, 0.95);
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.site-nav a + a::before {
  content: "/";
  position: absolute;
  left: -2px;
  color: rgba(102, 100, 93, 0.42);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(194, 166, 51, 0.72);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.header-download {
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  position: relative;
  border: 1px solid rgba(232, 224, 209, 0.96);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 120ms ease;
}

.header-theme-toggle:hover,
.header-theme-toggle:focus-visible {
  outline: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(247, 245, 240, 0.96)
  );
  border-color: rgba(194, 166, 51, 0.38);
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.06);
}

.header-theme-toggle:active {
  transform: translateY(1px);
}

.header-theme-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.theme-toggle-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.not-selectable {
  user-select: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(232, 224, 209, 0.96);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 1180px) {
  .header-meta {
    display: none;
  }

  .site-nav a {
    padding: 0 12px;
    font-size: 0.96rem;
  }
}

@media (max-width: 980px) {
  .header-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(232, 224, 209, 0.96);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 34px rgba(21, 21, 21, 0.05);
  }

  .nav-open .header-menu {
    display: flex;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .site-nav a {
    width: 100%;
    min-height: 44px;
    padding: 0;
    font-size: 1rem;
  }

  .site-nav a + a::before {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-download {
    width: auto;
    flex: 1;
    justify-content: center;
  }

  .header-theme-toggle {
    flex-shrink: 0;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }
}

@media (max-width: 640px) {
  .header-menu {
    left: 12px;
    right: 12px;
  }

  .brand-text {
    font-size: 1rem;
  }

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





.feature-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
  margin: 0 auto;
  justify-items: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

.feature-card {
  --feature-accent: rgba(194, 166, 51, 0.55);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 42px 32px 42px;
  border-radius: 20px;
  border: 1px solid rgba(232, 224, 209, 0.96);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(247, 245, 240, 0.96)
    );
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: stretch;
  justify-content: start;
  align-items: start;
  gap: 18px;
  box-shadow: 0 22px 64px rgba(26, 29, 32, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(194, 166, 51, 0.08),
    var(--feature-accent),
    rgba(194, 166, 51, 0.08)
  );
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 44%);
  pointer-events: none;
}


.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card-primary {
    --feature-accent: rgba(194, 166, 51, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(251, 249, 244, 0.98),
      rgba(243, 238, 227, 0.95)
    );
}

.feature-card-primary h3 {
  font-size: clamp(2rem, 3.2vw, 2.85rem);
}

.feature-card-soft {
  --feature-accent: rgba(194, 166, 51, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(251, 249, 244, 0.98),
      rgba(243, 238, 227, 0.95)
    );
}

.feature-card-teal {
   --feature-accent: rgba(194, 166, 51, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(251, 249, 244, 0.98),
      rgba(243, 238, 227, 0.95)
    );
}

.feature-card h3 {
  margin: 0;
  font-family: "Comic Neue", "Comic Sans MS", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.feature-card p {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.32;
}

@media (max-width: 980px) {
  .feature-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 640px) {
  .feature-card {
    min-height: auto;
    padding: 26px 20px 22px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(26, 29, 32, 0.1);
  }

  .feature-card::before {
    left: 20px;
    right: 20px;
  }

  .feature-card p {
    font-size: 0.98rem;
  }
}