:root {
  --bg: #050505;
  --bg-2: #090909;
  --panel: rgba(17, 17, 17, 0.9);
  --panel-strong: rgba(10, 10, 10, 0.96);
  --text: #f5f7fa;
  --muted: #b9bec8;
  --line: rgba(255,255,255,0.09);
  --orange: #ff7a00;
  --orange-2: #ff9c2a;
  --gold: #ffc35a;
  --green: #63ff49;
  --steel: #c7ced8;
  --shadow: 0 25px 60px rgba(0,0,0,0.45);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.58);
  --radius: 26px;
  --container: min(1180px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(99,255,73,0.08), transparent 20%),
    radial-gradient(circle at 80% 10%, rgba(255,122,0,0.15), transparent 26%),
    linear-gradient(180deg, #020202 0%, #090909 45%, #040404 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }

.page-glow {
  position: fixed;
  width: 38vw;
  height: 38vw;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.glow-left {
  top: 10%;
  left: -12%;
  background: radial-gradient(circle, rgba(99,255,73,0.65), transparent 68%);
  animation: floatGlow 12s ease-in-out infinite;
}
.glow-right {
  top: 4%;
  right: -10%;
  background: radial-gradient(circle, rgba(255,122,0,0.7), transparent 68%);
  animation: floatGlow 14s ease-in-out infinite reverse;
}

.site-header,
.hero,
.section,
.site-footer,
.trust-strip { position: relative; z-index: 1; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.brand-mark {
  color: var(--orange-2);
  font-size: 1.4rem;
  text-shadow: 0 0 22px rgba(255,122,0,0.35);
}
.brand-text { color: var(--steel); font-size: 1.1rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
}
.site-nav a:hover,
.site-nav a.active { color: var(--text); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  margin: 5px auto;
}

.hero {
  padding: 58px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.eyebrow,
.section-tag,
.label,
.story-badge {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  color: var(--gold);
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .96;
  margin: 12px 0 18px;
  max-width: 11ch;
}
.hero h1 span {
  background: linear-gradient(180deg, #fff, var(--orange-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text,
.hero-subtext,
.section-heading p,
.section-copy p,
.info-card p,
.showcase-copy p,
.brand-card p,
.contact-card p,
.contact-form label span:last-child,
.feature-panel p,
.story-copy p {
  color: var(--muted);
}
.hero-text { font-size: 1.08rem; max-width: 60ch; }
.hero-subtext { max-width: 58ch; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.02); }
.btn-primary {
  color: #120900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 14px 30px rgba(255,122,0,0.25);
  border: 0;
}
.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-stats div,
.info-card,
.showcase-card,
.brand-card,
.contact-card,
.feature-panel article,
.contact-form,
.story-wrap,
.trust-grid,
.cta-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-stats div {
  padding: 18px;
  transition: transform .25s ease, border-color .25s ease;
}
.hero-stats div:hover,
.info-card:hover,
.brand-card:hover,
.contact-card:hover,
.showcase-card:hover,
.contact-form:hover {
  transform: translateY(-4px);
  border-color: rgba(255,156,42,0.24);
}
.hero-stats strong,
.stack-list strong { display: block; font-size: 1.02rem; margin-bottom: 4px; }
.hero-stats span,
.stack-list span { color: var(--muted); font-size: .95rem; }
.card-frame {
  position: relative;
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,122,0,0.18), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-strong);
  animation: heroPulse 6s ease-in-out infinite;
}
.hero-art img { border-radius: 26px; }

.trust-strip { padding: 8px 0 10px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}
.trust-grid div {
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  color: var(--steel);
  border-right: 1px solid var(--line);
}
.trust-grid div:last-child { border-right: 0; }

.section { padding: 56px 0; }
.split-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 30px;
  align-items: center;
}
.reverse { grid-template-columns: .95fr 1.05fr; }
.section-heading { max-width: 780px; margin-bottom: 28px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2,
.section-copy h2,
.feature-panel h2,
.story-copy h2,
.cta-wrap h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  margin: 12px 0;
}
.feature-panel article,
.contact-form,
.contact-card,
.story-wrap,
.cta-wrap { padding: 28px; }
.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.feature-list li + li { margin-top: 10px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card { padding: 24px; }
.card-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 16px;
  font-weight: 900;
  color: #110700;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 10px 24px rgba(255,122,0,0.16);
}
.info-card h3,
.showcase-copy h3,
.brand-card h3,
.contact-card h3,
.feature-panel h3 { margin: 0 0 10px; font-size: 1.2rem; }

.story-wrap {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
  background: linear-gradient(135deg, rgba(255,122,0,0.11), rgba(255,255,255,0.03));
}
.story-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 20px;
}
.showcase-card { overflow: hidden; }
.showcase-image { aspect-ratio: 16 / 11; overflow: hidden; }
.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.showcase-card:hover .showcase-image img,
.brand-card:hover img { transform: scale(1.04); }
.showcase-copy { padding: 20px 22px 22px; }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.brand-card { overflow: hidden; }
.brand-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.brand-card h3,
.brand-card p { padding-inline: 18px; }
.brand-card h3 { margin-top: 16px; }
.brand-card p { padding-bottom: 20px; }

.stack-list {
  display: grid;
  gap: 16px;
}
.stack-list > div {
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,122,0,0.12), rgba(255,255,255,0.03));
}

.contact-wrap {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,122,0,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-grid-extended { grid-template-columns: .9fr 1.1fr; }
.contact-card a {
  color: var(--gold);
  font-weight: 700;
  word-break: break-word;
}
.contact-form {
  background: linear-gradient(180deg, rgba(5,5,5,0.82), rgba(255,255,255,0.015));
}
.form-alert {
  display: none;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 700;
}
.form-alert.show { display: block; }
.form-alert-success {
  background: rgba(99,255,73,0.12);
  border: 1px solid rgba(99,255,73,0.22);
  color: #d9ffd4;
}
.form-alert-error {
  background: rgba(255,122,0,0.12);
  border: 1px solid rgba(255,122,0,0.22);
  color: #ffd5b2;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.form-grid label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
.form-grid label span { color: var(--steel); font-size: .95rem; }
.full-width { grid-column: 1 / -1; }
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
select option {
  color: #111;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255,156,42,0.5);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.12);
  background: rgba(255,255,255,0.06);
}
textarea { resize: vertical; min-height: 160px; }






.polished-contact-card h3,
.contact-form-clean h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.1;
}
.polished-contact-card {
  padding: 28px;
}
.contact-detail-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 20px;
}
.contact-detail-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-detail-item span {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold);
}
.contact-detail-item a {
  color: #fff;
  font-weight: 800;
}
.contact-detail-item p {
  margin: 0;
  color: var(--muted);
}
.contact-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,122,0,0.08);
  border: 1px solid rgba(255,156,42,0.22);
  color: var(--steel);
  font-weight: 700;
}
.contact-form-clean {
  padding: 28px;
  background: linear-gradient(180deg, rgba(5,5,5,0.82), rgba(255,255,255,0.015));
}
.contact-form-heading {
  margin-bottom: 20px;
}
.contact-form-heading p:last-child {
  color: var(--muted);
}
.clean-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.form-field label {
  display: block;
  color: var(--steel);
  font-size: .95rem;
  font-weight: 700;
}
.contact-form-clean .form-field input,
.contact-form-clean .form-field select,
.contact-form-clean .form-field textarea {
  width: 100%;
  min-width: 0;
  display: block;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form-clean .form-field input::placeholder,
.contact-form-clean .form-field textarea::placeholder {
  color: rgba(245,247,250,0.58);
}
.contact-form-clean .form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--orange-2) 50%),
    linear-gradient(135deg, var(--orange-2) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 13px) calc(50% - 3px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.contact-form-clean .form-field input:focus,
.contact-form-clean .form-field select:focus,
.contact-form-clean .form-field textarea:focus {
  border-color: rgba(255,156,42,0.5);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.12);
  background: rgba(255,255,255,0.075);
}
.contact-form-clean .form-field textarea {
  resize: vertical;
  min-height: 170px;
}
.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-form-actions p {
  margin: 0;
  color: var(--muted);
}
.contact-form-actions a {
  color: var(--gold);
  font-weight: 700;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.link-card {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,156,42,0.24);
  box-shadow: var(--shadow-strong);
}
.link-card strong {
  font-size: 1.02rem;
  color: var(--text);
}
.link-card span {
  color: var(--muted);
  word-break: break-word;
}

.site-footer {
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
}
.footer-wrap a { color: var(--text); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }

@keyframes heroPulse {
  0%, 100% { box-shadow: var(--shadow-strong), 0 0 0 rgba(255,122,0,0); }
  50% { box-shadow: var(--shadow-strong), 0 0 38px rgba(255,122,0,0.18); }
}
@keyframes floatGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, 14px, 0) scale(1.03); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .reverse,
  .showcase-grid,
  .brand-grid,
  .card-grid,
  .contact-grid,
  .contact-grid-extended,
  .trust-grid,
  .story-wrap,
  .cta-wrap,
  .contact-shell {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-large { grid-column: span 2; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .story-wrap { grid-template-columns: 1fr; }
  .cta-wrap {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .clean-form-grid,
  .links-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-clean,
  .polished-contact-card {
    padding: 22px;
  }
  .contact-form-actions {
    align-items: flex-start;
  }
  .contact-form-actions .btn {
    width: 100%;
  }
  .contact-shell,
  .contact-grid,
  .contact-grid-extended,
  .form-grid,
  .form-grid-polished,
  .hero-stats,
  .trust-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
  }
  .contact-panel {
    padding: 24px 20px;
    border-radius: 24px;
  }
  .submit-row {
    align-items: flex-start;
  }
  .submit-row .btn {
    width: 100%;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: rgba(10,10,10,0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero { padding-top: 34px; }
  .hero-grid,
  .split-grid,
  .reverse,
  .card-grid,
  .showcase-grid,
  .brand-grid,
  .contact-grid,
  .contact-grid-extended,
  .hero-stats,
  .trust-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .showcase-large { grid-column: span 1; }
  .hero h1 { max-width: none; }
  .contact-wrap { padding: 24px; }
  .footer-wrap,
  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid div:last-child { border-bottom: 0; }
}
