:root {
  color-scheme: dark;
  --ink: #f7f4ea;
  --muted: #b8bcb3;
  --paper: #111312;
  --white: #fffdf8;
  --line: rgba(247, 244, 234, 0.14);
  --lime: #ccff5f;
  --mint: #2ccf91;
  --coral: #ff6b52;
  --gold: #f1b84b;
  --charcoal: #090b0a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 244, 234, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 234, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 75%);
  z-index: -1;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(247, 244, 234, 0.12);
  border-radius: 999px;
  background: rgba(17, 19, 18, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 60px;
  background: rgba(17, 19, 18, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.brand,
.nav,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(204, 255, 95, 0.5);
  border-radius: 999px;
  background: var(--lime);
  color: #111312;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav {
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(247, 244, 234, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover {
  background: var(--lime);
  color: #111312;
}

.header-action {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--lime);
  color: #111312;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  width: min(1180px, calc(100% - 32px));
  min-height: 94vh;
  margin: 0 auto;
  padding: 132px 0 58px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.94;
}

h1 {
  max-width: 780px;
  font-size: clamp(4rem, 12vw, 8.4rem);
  letter-spacing: 0;
}

h2 {
  max-width: 850px;
  font-size: clamp(2.4rem, 6vw, 5.35rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.05;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--lime);
  color: #111312;
  box-shadow: 0 18px 35px rgba(204, 255, 95, 0.16);
}

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

.hero-visual {
  position: relative;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(247, 244, 234, 0.13);
  border-radius: 8px;
  background: #1b1f1d;
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.browser-top {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.browser-top span:nth-child(2) {
  background: var(--gold);
}

.browser-top span:nth-child(3) {
  background: var(--mint);
}

.mock-site {
  min-height: 500px;
  padding: 22px;
  background:
    radial-gradient(circle at 76% 12%, rgba(204, 255, 95, 0.55), transparent 32%),
    linear-gradient(135deg, #1b1f1d 0%, #292f2a 100%);
}

.mock-nav {
  width: 100%;
  height: 42px;
  border-radius: 999px;
  background: rgba(247, 244, 234, 0.14);
}

.mock-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 20px;
  margin-top: 62px;
}

.mock-kicker,
.mock-title,
.mock-line,
.mock-photo,
.mock-grid span {
  border-radius: 8px;
  background: var(--ink);
}

.mock-kicker {
  width: 130px;
  height: 16px;
  background: var(--coral);
}

.mock-title {
  width: 100%;
  height: 54px;
  margin-top: 18px;
}

.mock-title.short {
  width: 78%;
  margin-top: 8px;
}

.mock-line {
  width: 76%;
  height: 12px;
  margin-top: 24px;
  background: rgba(247, 244, 234, 0.32);
}

.mock-line.wide {
  width: 92%;
  margin-top: 10px;
}

.mock-photo {
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(17, 19, 18, 0.12), transparent),
    var(--lime);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.mock-grid span {
  height: 86px;
  background: rgba(247, 244, 234, 0.12);
}

.floating-stat {
  position: absolute;
  right: -16px;
  bottom: 30px;
  display: grid;
  gap: 2px;
  max-width: 210px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.floating-stat strong {
  color: var(--lime);
  font-size: 1.3rem;
}

.floating-stat span {
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.86rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 32px));
  margin: -22px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  display: grid;
  gap: 7px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  font-size: 1.08rem;
}

.proof-strip span {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0;
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 42px;
}

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

.showcase-card,
.process-step,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.showcase-card {
  overflow: hidden;
}

.showcase-card h3,
.showcase-card p,
.process-step h3,
.process-step p {
  padding-inline: 22px;
}

.showcase-card h3 {
  margin-top: 22px;
}

.showcase-card p,
.process-step p,
.pricing-card p,
.service-item p,
.about-copy p,
.cta-copy p {
  color: var(--muted);
  line-height: 1.62;
}

.showcase-card p {
  margin: 12px 0 24px;
}

.showcase-preview {
  display: grid;
  align-content: end;
  gap: 10px;
  height: 230px;
  padding: 20px;
}

.showcase-preview span {
  display: block;
  height: 24px;
  border-radius: 999px;
}

.showcase-preview span:nth-child(1) {
  width: 42%;
}

.showcase-preview span:nth-child(2) {
  width: 74%;
}

.showcase-preview span:nth-child(3) {
  width: 58%;
}

.showcase-preview.warm {
  background: #3a1914;
}

.showcase-preview.warm span {
  background: #ff8a76;
}

.showcase-preview.green {
  background: #123227;
}

.showcase-preview.green span {
  background: #6ff0b5;
}

.showcase-preview.ink {
  background: var(--charcoal);
}

.showcase-preview.ink span {
  background: var(--lime);
}

.services-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

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

.service-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--lime);
  color: #111312;
  font-size: 1.45rem;
}

.service-item p {
  margin: 10px 0 0;
}

.pricing-section {
  border-top: 1px solid var(--line);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
}

.pricing-card.featured {
  border-color: rgba(204, 255, 95, 0.55);
  background:
    linear-gradient(180deg, rgba(204, 255, 95, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.pricing-kicker {
  margin: 0 0 18px;
  color: var(--coral) !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
}

.pricing-card p:not(.pricing-kicker) {
  margin: 18px 0 0;
}

.pricing-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.pricing-link:hover {
  background: var(--lime);
  color: #111312;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  gap: clamp(32px, 8vw, 98px);
  align-items: center;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(204, 255, 95, 0.42), rgba(255, 107, 82, 0.3)),
    #202620;
  box-shadow: var(--shadow);
}

.portrait-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.portrait-card.has-photo img {
  opacity: 1;
}

.portrait-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
  text-align: center;
}

.portrait-fallback span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--lime);
  color: #111312;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.portrait-card.has-photo .portrait-fallback {
  opacity: 0;
  pointer-events: none;
}

.about-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-step {
  padding: 26px 0;
}

.process-step span {
  display: inline-flex;
  margin: 0 22px 30px;
  color: var(--coral);
  font-weight: 900;
}

.process-step p {
  margin: 14px 0 0;
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: clamp(28px, 7vw, 86px);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: clamp(58px, 9vw, 96px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(204, 255, 95, 0.12), transparent 42%),
    #070908;
  color: var(--white);
}

.cta-copy h2 {
  max-width: 660px;
}

.cta-copy p {
  max-width: 560px;
  color: rgba(255, 253, 248, 0.7);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
}

.contact-form input {
  min-height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.46);
}

.contact-form .button.primary {
  width: 100%;
  margin-top: 6px;
  background: var(--lime);
  color: #111312;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 34px;
  color: var(--muted);
}

.site-footer a {
  font-weight: 800;
  color: var(--lime);
}

.thank-you-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.thank-you-panel {
  width: min(720px, 100%);
  padding: clamp(34px, 8vw, 70px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(204, 255, 95, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.thank-you-brand {
  width: fit-content;
  margin-bottom: 44px;
}

.thank-you-panel h1 {
  font-size: clamp(3rem, 10vw, 6rem);
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

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

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

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

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .nav {
    display: none;
  }

  .hero,
  .services-section,
  .about-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-visual {
    max-width: 560px;
  }

  .showcase-grid,
  .process-steps,
  .pricing-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    min-height: 62px;
    margin-top: 10px;
  }

  .brand span:last-child {
    max-width: 118px;
    line-height: 1.05;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero,
  .section,
  .proof-strip,
  .cta-section,
  .site-footer {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(3.1rem, 22vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 14vw, 3.25rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mock-site {
    min-height: 390px;
    padding: 16px;
  }

  .mock-layout {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .mock-photo {
    min-height: 128px;
  }

  .mock-grid {
    margin-top: 24px;
  }

  .floating-stat {
    right: 10px;
    bottom: -18px;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 34px 22px;
  }
}
