:root {
  --bg: #f4f4ee;
  --surface: #ffffff;
  --surface-alt: #efefe8;
  --ink: #111111;
  --ink-soft: #5f6358;
  --line: #d8d8ce;
  --accent: #9ef06a;
  --accent-strong: #8ae255;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(158, 240, 106, 0.25), transparent 24%),
    linear-gradient(180deg, #f7f7f2 0%, #f1f1ea 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 90%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  background: rgba(244, 244, 238, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
}

.brand-text,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--ink-soft);
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.section {
  padding: 90px 0;
}

.hero {
  padding-top: 56px;
}

.trust-strip {
  padding: 0 0 16px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip-inner span {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-grid,
.band-grid,
.showcase-layout,
.process-layout,
.region-grid,
.contact-shell,
.feature-dark-grid,
.faq-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.94;
}

.eyebrow {
  margin: 0 0 18px;
  color: #4f6c3d;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text,
.band-copy p,
.comparison-card p,
.services-copy p,
.feature-dark-copy p,
.feature-item p,
.showcase-copy p,
.process-steps p,
.region-copy p,
.region-panel p,
.pricing-card p,
.faq-item p,
.contact-copy p,
.site-footer p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

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

.hero-meta {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.mini-proof,
.stat-box,
.comparison-card,
.feature-item,
.pricing-card,
.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.mini-proof strong,
.stat-box strong,
.comparison-card h3,
.feature-item h3,
.pricing-card h3,
.faq-item h3,
.region-panel strong {
  display: block;
  margin-bottom: 10px;
}

.hero-visual img,
.services-shell img,
.showcase-art img,
.process-art img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-accent {
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
}

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--accent-strong);
}

.button-light {
  background: var(--surface);
  border-color: var(--line);
}

.button-dark {
  background: var(--ink);
  color: var(--surface);
}

.intro-band {
  padding-top: 28px;
}

.band-grid,
.services-shell,
.region-panel,
.contact-form {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

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

.pricing-intro {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.pricing-subsection {
  margin: 26px 0 18px;
}

.pricing-group-label {
  margin: 0 0 8px;
  color: #456333;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-subtitle {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.05;
}

.portfolio-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  margin-bottom: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.portfolio-proof-art img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 6px);
  box-shadow: var(--shadow);
}

.proof-stats {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.proof-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(244, 244, 238, 0.9);
}

.proof-stats strong {
  display: block;
  margin-bottom: 8px;
}

.proof-stats span {
  color: var(--ink-soft);
  line-height: 1.6;
}

.concepts-layout {
  align-items: stretch;
}

.comparison-card.negative {
  background: rgba(255, 255, 255, 0.54);
}

.comparison-card.positive {
  background: linear-gradient(180deg, rgba(158, 240, 106, 0.18), rgba(255, 255, 255, 0.96));
}

.comparison-label,
.pricing-tier {
  display: inline-block;
  margin-bottom: 18px;
  color: #456333;
  font-size: 0.88rem;
  font-weight: 800;
}

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

.section-heading h2,
.band-copy h2,
.feature-dark-copy h2,
.showcase-copy h2,
.process-copy h2,
.region-copy h2,
.faq-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.services-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-dark {
  background: var(--ink);
}

.feature-dark-copy,
.feature-dark-copy p,
.feature-dark-copy h2,
.feature-item,
.feature-item p,
.feature-item h3 {
  color: var(--surface);
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.process-steps {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.process-steps article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #456333;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
}

.region-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
}

.region-panel {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, rgba(158, 240, 106, 0.12), rgba(255, 255, 255, 0.85));
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(158, 240, 106, 0.18), rgba(255, 255, 255, 0.95));
}

.pricing-meta {
  margin: 8px 0;
  font-weight: 700;
  color: var(--ink);
}

.domain-note {
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.domain-note strong {
  display: block;
  margin-bottom: 8px;
}

.domain-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.contact-section {
  padding-top: 30px;
}

.contact-shell {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--surface);
}

.contact-shell .eyebrow,
.contact-shell p,
.contact-shell h2,
.contact-shell label {
  color: var(--surface);
}

.contact-shell .contact-copy p {
  color: rgba(244, 244, 238, 0.75);
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.contact-direct a {
  color: var(--surface);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(158, 240, 106, 0.5);
  outline-offset: 0;
}

.site-footer {
  padding: 30px 0 42px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1040px) {
  .hero-grid,
  .band-grid,
  .showcase-layout,
  .process-layout,
  .region-grid,
  .contact-shell,
  .feature-dark-grid,
  .faq-layout,
  .services-shell,
  .comparison-grid,
  .pricing-grid,
  .portfolio-proof,
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}

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

  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 14px;
    padding-top: 8px;
  }

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

  .header-inner {
    flex-wrap: wrap;
  }

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

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

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

  .site-header .button-small {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .band-grid,
  .services-shell,
  .region-panel,
  .contact-form,
  .contact-shell {
    padding: 22px;
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
