:root {
  --bg: #0d0d0d;
  --bg-soft: #121212;
  --panel: rgba(30, 30, 30, 0.72);
  --panel-strong: rgba(22, 22, 22, 0.92);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --line: rgba(245, 245, 245, 0.1);
  --line-gold: rgba(212, 175, 55, 0.28);
  --steel: #8ea0a8;
  --success: #78a887;
  --max: 1180px;
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.04), transparent 280px),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

body:not(.is-loaded) .site-header,
body:not(.is-loaded) .hero-content > *,
body:not(.is-loaded) .hero-visual,
body:not(.is-loaded) .trust-strip {
  opacity: 0;
}

body:not(.is-loaded) .site-header {
  transform: translateY(-14px);
}

body:not(.is-loaded) .hero-content > * {
  transform: translateY(18px);
}

body:not(.is-loaded) .hero-visual {
  transform: translateY(22px) scale(0.985);
}

body:not(.is-loaded) .trust-strip {
  transform: translateY(12px);
}

body.is-loaded .site-header,
body.is-loaded .hero-content > *,
body.is-loaded .hero-visual,
body.is-loaded .trust-strip {
  opacity: 1;
  transform: none;
}

.site-header,
.hero-content > *,
.hero-visual,
.trust-strip {
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

body.is-loaded .hero-content > .eyebrow {
  transition-delay: 120ms;
}

body.is-loaded .hero-content > h1 {
  transition-delay: 210ms;
}

body.is-loaded .hero-content > .hero-tagline {
  transition-delay: 300ms;
}

body.is-loaded .hero-content > .hero-text {
  transition-delay: 390ms;
}

body.is-loaded .hero-content > .hero-actions {
  transition-delay: 480ms;
}

body.is-loaded .hero-visual {
  transition-delay: 360ms;
}

body.is-loaded .trust-strip {
  transition-delay: 620ms;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section-band {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--max));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-gold);
  background: #080808;
  object-fit: contain;
  padding: 4px;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-gold);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 255, 255, 0.03)),
    #111;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.86rem;
  letter-spacing: 0;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border: 1px solid transparent;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover {
  border-color: rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-quote {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.11);
  color: var(--gold);
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-quote:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.58);
  background: rgba(212, 175, 55, 0.18);
}

.nav-quote svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: 88px 0 132px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.tech-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 160, 168, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black 0%, black 70%, transparent 100%);
  opacity: 0.5;
}

body.is-loaded .tech-grid {
  animation: gridDrift 1100ms ease both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0%, rgba(212, 175, 55, 0.1) 62%, transparent 100%),
    linear-gradient(90deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.86) 42%, rgba(13, 13, 13, 0.7) 100%);
}

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

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

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 8.4rem;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-tagline {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1.9rem;
  font-weight: 650;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.12rem;
}

.mobile-copy {
  display: none;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 780;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), #f0d579);
  color: #14110a;
}

.button-secondary {
  border-color: rgba(245, 245, 245, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-visual {
  position: absolute;
  inset: 96px max(22px, calc((100vw - var(--max)) / 2)) 72px auto;
  width: min(620px, 52vw);
  z-index: 1;
  pointer-events: none;
}

.dashboard,
.phone-mock {
  position: absolute;
  border: 1px solid var(--line-gold);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(20, 20, 20, 0.72);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.dashboard-main {
  right: 0;
  top: 58px;
  width: min(540px, 100%);
  min-height: 410px;
  padding: 18px;
}

.dashboard-secondary {
  left: 0;
  bottom: 52px;
  width: 230px;
  height: 182px;
  padding: 18px;
  border-color: rgba(142, 160, 168, 0.24);
}

.dashboard-topline {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
}

.dashboard-topline span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.24);
}

.dashboard-topline span:first-child {
  background: var(--gold);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.metric-tile {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.metric-tile small,
.price-card p {
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-tile strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 1.35rem;
}

.chart-panel {
  height: 160px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 16px;
  background:
    linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05)),
    rgba(255, 255, 255, 0.035);
}

.chart-panel i {
  display: block;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.08));
}

.workflow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.workflow span {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  position: relative;
}

.workflow span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 7px);
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.4), rgba(142, 160, 168, 0.18));
}

.mini-line {
  width: 100%;
  height: 10px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.58), rgba(255, 255, 255, 0.08));
}

.mini-line.short {
  width: 64%;
}

.status-stack {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.status-stack span {
  height: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.phone-mock {
  right: 58px;
  bottom: 0;
  width: 122px;
  height: 238px;
  padding: 18px 14px;
  border-radius: 24px;
}

.phone-mock span,
.phone-mock strong,
.phone-mock i {
  display: block;
}

.phone-mock span {
  width: 38px;
  height: 4px;
  margin: 0 auto 26px;
  border-radius: 10px;
  background: rgba(245, 245, 245, 0.28);
}

.phone-mock strong {
  height: 58px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.32), rgba(142, 160, 168, 0.18));
}

.phone-mock i {
  height: 16px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.float-slow {
  animation: floatSlow 7s ease-in-out infinite;
}

.float-soft {
  animation: floatSoft 8s ease-in-out infinite;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes gridDrift {
  from {
    opacity: 0;
    background-position: 0 18px, 18px 0;
  }
  to {
    opacity: 0.5;
    background-position: 0 0, 0 0;
  }
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #101010;
}

.trust-grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.section-heading.compact {
  max-width: 500px;
  margin-bottom: 0;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: 3.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.service-card,
.principle-card,
.portfolio-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.service-card {
  min-height: 246px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-gold);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(22, 22, 22, 0.84);
}

.icon-shell {
  display: inline-grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line-gold);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.8);
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.08);
}

.service-icon {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.08) contrast(1.08);
}

.service-card h3,
.principle-card h3,
.portfolio-card h3,
.price-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-card p,
.principle-card p,
.portfolio-card p,
.price-card li {
  margin-bottom: 0;
  color: var(--muted);
}

.about-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.055), transparent 38%),
    #0f0f0f;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.principles {
  display: grid;
  gap: 14px;
}

.principle-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 4px 22px;
  padding: 22px;
}

.principle-icon {
  grid-row: span 2;
  display: inline-grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid var(--line-gold);
  background: rgba(212, 175, 55, 0.06);
}

.portfolio-shell {
  display: grid;
  gap: 54px;
}

.portfolio-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.portfolio-heading h2 {
  margin-bottom: 0;
  font-size: 3.8rem;
  line-height: 0.98;
}

.portfolio-heading h2 span {
  color: var(--gold);
}

.portfolio-controls {
  display: flex;
  gap: 12px;
}

.portfolio-controls button,
.portfolio-dots button {
  border: 1px solid rgba(245, 245, 245, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.portfolio-controls button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
}

.portfolio-controls button:hover,
.portfolio-controls button.is-active {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.portfolio-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.portfolio-showcase {
  position: relative;
  min-height: 390px;
}

.portfolio-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 48px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transform: translateY(14px);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.portfolio-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: translateY(0);
}

.portfolio-stage {
  min-height: 330px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(142, 160, 168, 0.08), transparent 42%),
    #070707;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.portfolio-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 245, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
}

.portfolio-image {
  width: min(92%, 560px);
  max-height: 292px;
  position: relative;
  z-index: 1;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.45));
}

.portfolio-image-mobile {
  width: min(92%, 520px);
  max-height: 306px;
}

.result-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.9);
  color: var(--gold);
  padding: 13px 16px;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.portfolio-copy {
  max-width: 560px;
}

.case-eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-copy h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.05;
}

.portfolio-copy > p:not(.case-eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.case-tags span {
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
}

.portfolio-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: calc(50% + 24px);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.portfolio-dots {
  display: flex;
  gap: 9px;
}

.portfolio-dots button {
  width: 14px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(245, 245, 245, 0.14);
}

.portfolio-dots button.is-active {
  width: 34px;
  background: var(--gold);
}

.portfolio-grid {
  display: grid;
  gap: 16px;
}

.portfolio-card {
  padding: 20px;
}

.plans-band {
  background:
    linear-gradient(180deg, rgba(142, 160, 168, 0.05), transparent 48%),
    #0b0b0b;
}

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

.price-card {
  padding: 24px;
}

.price-card.featured {
  border-color: var(--line-gold);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.11), rgba(255, 255, 255, 0.02)),
    rgba(22, 22, 22, 0.94);
}

.price-card strong {
  display: block;
  margin: 18px 0;
  color: var(--gold);
  font-size: 1.35rem;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
}

.price-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  background: var(--success);
}

.price-card a {
  display: inline-flex;
  border-bottom: 1px solid var(--line-gold);
  color: var(--text);
  font-weight: 800;
}

.contact-band {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(155deg, rgba(212, 175, 55, 0.08), transparent 34%),
    linear-gradient(rgba(245, 245, 245, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 245, 0.025) 1px, transparent 1px),
    #101010;
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-copy h2 span {
  color: var(--gold);
}

.contact-lines {
  display: grid;
  gap: 16px;
  margin-top: 44px;
  color: var(--muted);
}

.contact-method {
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.82);
  padding: 18px 20px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.38);
  background: rgba(22, 22, 22, 0.94);
}

.contact-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.contact-icon svg,
.social-row svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-method small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.contact-method strong {
  display: block;
  color: var(--text);
  font-size: 0.96rem;
}

.contact-method:hover strong {
  color: var(--gold);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.social-row a {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.social-row a:hover {
  border-color: rgba(212, 175, 55, 0.36);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.quote-console {
  min-height: 450px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(18, 18, 18, 0.92);
  padding: 40px;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
  padding-bottom: 20px;
}

.console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.console-dot.red {
  background: #bf4141;
}

.console-dot.amber {
  background: #b8971d;
}

.console-dot.green {
  background: #248c4f;
}

.console-top code {
  margin-left: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.console-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 32px 0 34px;
}

.console-progress span {
  height: 2px;
  background: rgba(245, 245, 245, 0.12);
}

.console-progress span.is-active {
  background: var(--gold);
}

.quote-step {
  display: none;
}

.quote-step.is-active {
  display: grid;
  align-content: start;
}

.quote-step label {
  display: grid;
  gap: 16px;
}

.quote-step strong {
  color: var(--text);
  font-size: 1.18rem;
}

.quote-console input,
.quote-console textarea {
  width: 100%;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.54);
  color: var(--text);
  padding: 15px 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.quote-console textarea {
  min-height: 122px;
  resize: vertical;
}

.quote-console input:focus,
.quote-console textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.console-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 44px;
}

.console-back,
.console-next,
.console-submit {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
}

.console-back {
  background: transparent;
  color: var(--muted);
  padding: 0;
}

.console-back::before {
  content: "<- ";
}

.console-back:disabled {
  opacity: 0.4;
}

.console-next,
.console-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #f0d579);
  color: #15110a;
  padding: 11px 20px;
  cursor: pointer;
}

.console-submit:disabled {
  cursor: not-allowed;
  filter: grayscale(0.55);
  opacity: 0.48;
}

.console-next svg,
.console-submit svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.thank-you-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  padding: 24px;
}

.thank-you-card {
  width: min(100%, 520px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(18, 18, 18, 0.96);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
  padding: 34px;
  text-align: center;
}

.thank-you-mark {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
}

.thank-you-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.thank-you-card h2 {
  margin-bottom: 12px;
  font-size: 1.75rem;
  line-height: 1.12;
}

.thank-you-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.thank-you-card button {
  min-height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #090909;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 42px;
  align-items: start;
  color: var(--muted);
}

.footer-grid p {
  margin: 18px 0 0;
}

.footer-grid div:nth-child(2),
.footer-grid div:nth-child(3) {
  display: grid;
  gap: 10px;
}

.footer-grid a:hover {
  color: var(--gold);
}

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

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

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

  body:not(.is-loaded) .site-header,
  body:not(.is-loaded) .hero-content > *,
  body:not(.is-loaded) .hero-visual,
  body:not(.is-loaded) .trust-strip {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .nav-shell {
    gap: 14px;
  }

  .nav-quote {
    padding-inline: 12px;
  }

  .nav-quote svg {
    display: none;
  }

  .hero-visual {
    opacity: 0.42;
    width: min(560px, 70vw);
  }

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

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

  .portfolio-heading h2 {
    font-size: 3rem;
  }

  .portfolio-slide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .portfolio-showcase {
    min-height: 0;
  }

  .portfolio-slide:not(.is-active) {
    display: none;
  }

  .portfolio-copy {
    max-width: 760px;
  }

  .portfolio-footer {
    margin-left: 0;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading.compact,
  .contact-copy {
    max-width: 760px;
    position: static;
  }

  .contact-layout {
    gap: 36px;
  }

  h1 {
    font-size: 6rem;
  }

  .hero-tagline {
    font-size: 1.55rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 3rem;
  }
}

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

  .section-band {
    padding: 78px 0;
  }

  .nav-shell {
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-quote {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 66px 12px auto;
    display: none;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    background: rgba(12, 12, 12, 0.96);
    padding: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero {
    min-height: auto;
    padding: 86px 0 92px;
    text-align: center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(212, 175, 55, 0.055), transparent 42%),
      linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.92) 100%);
  }

  .tech-grid {
    background-size: 88px 88px;
    mask-image: linear-gradient(180deg, black 0%, transparent 90%);
    opacity: 0.22;
  }

  body.is-loaded .tech-grid {
    animation: none;
    opacity: 0.22;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    display: grid;
    justify-items: center;
  }

  .hero .eyebrow {
    max-width: 28ch;
    margin-bottom: 22px;
    color: rgba(212, 175, 55, 0.88);
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 7.4ch;
    margin-bottom: 24px;
    font-size: 3.85rem;
    line-height: 0.92;
  }

  .hero-tagline {
    max-width: 16ch;
    margin-bottom: 22px;
    font-size: 1.34rem;
    line-height: 1.18;
  }

  .hero-text {
    max-width: 29ch;
    margin-bottom: 34px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .hero-actions {
    width: min(100%, 360px);
    display: grid;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
  }

  .hero .button-primary {
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.12);
  }

  .hero .button-secondary {
    border-color: rgba(245, 245, 245, 0.14);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(245, 245, 245, 0.9);
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.4rem;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    padding: 20px 0;
  }

  .service-grid,
  .pricing-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-shell {
    gap: 34px;
  }

  .portfolio-heading {
    align-items: start;
  }

  .portfolio-heading h2 {
    font-size: 2.4rem;
  }

  .portfolio-controls {
    flex: 0 0 auto;
  }

  .portfolio-controls button {
    width: 40px;
    height: 40px;
  }

  .portfolio-stage {
    min-height: 300px;
  }

  .portfolio-image {
    width: min(92%, 420px);
    max-height: 240px;
  }

  .portfolio-image-mobile {
    max-height: 248px;
  }

  .portfolio-copy h3 {
    font-size: 1.75rem;
  }

  .portfolio-copy > p:not(.case-eyebrow) {
    font-size: 1rem;
  }

  .result-badge {
    right: 18px;
    bottom: 18px;
    font-size: 0.72rem;
  }

  .principle-card {
    grid-template-columns: 70px 1fr;
  }

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

  .quote-console {
    min-height: 430px;
    padding: 24px;
  }

  .contact-method {
    grid-template-columns: 40px 1fr;
    padding: 16px;
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: 3.1rem;
  }

  .hero {
    padding: 78px 0 84px;
  }

  .hero-tagline {
    font-size: 1.22rem;
  }

  .hero-actions {
    width: 100%;
  }

  .brand-copy small {
    letter-spacing: 0;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.08rem;
  }

  .portfolio-heading {
    display: grid;
    gap: 18px;
  }

  .portfolio-heading h2 {
    font-size: 2.08rem;
  }

  .portfolio-controls {
    justify-self: start;
  }

  .portfolio-stage {
    min-height: 270px;
  }

  .portfolio-image {
    width: 94%;
    max-height: 210px;
  }

  .portfolio-image-mobile {
    max-height: 218px;
  }

  .portfolio-footer {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .quote-console {
    padding: 20px;
  }

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

  .console-back {
    align-self: flex-start;
  }

  .console-next,
  .console-submit {
    width: 100%;
  }
}
