:root {
  --bg: #fcf5ec;
  --bg-2: #fffaf3;
  --panel: rgba(255, 252, 247, 0.88);
  --panel-solid: #fffdfa;
  --ink: #171311;
  --muted: #6f655e;
  --line: rgba(70, 51, 37, 0.09);
  --orange: #ef6b18;
  --orange-2: #ff9a33;
  --orange-3: #ffc56f;
  --shadow-soft: 0 18px 55px rgba(67, 42, 20, 0.08);
  --shadow-card: 0 30px 70px rgba(72, 47, 26, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 9%, rgba(255, 255, 255, 0.88), transparent 22rem),
    radial-gradient(circle at 86% 14%, rgba(255, 174, 85, 0.18), transparent 24rem),
    linear-gradient(180deg, #fff9f2 0%, #fcf5ec 46%, #f9efdf 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
canvas {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(239, 107, 24, 0.22);
}

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

.page-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  z-index: -3;
}

.page-glow-left {
  width: 300px;
  height: 300px;
  top: 160px;
  left: -110px;
  background: rgba(255, 230, 195, 0.78);
}

.page-glow-right {
  width: 500px;
  height: 500px;
  right: -180px;
  top: 100px;
  background: rgba(255, 196, 112, 0.24);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  z-index: 100;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 60;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 10px 14px 10px 22px;
  border: 1px solid rgba(62, 45, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.72);
  backdrop-filter: blur(20px) saturate(1.35);
  box-shadow: 0 16px 45px rgba(71, 45, 22, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled .header-inner {
  background: rgba(255, 251, 246, 0.92);
  box-shadow: 0 18px 48px rgba(71, 45, 22, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.18rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(239, 107, 24, 0.28);
  border-radius: 50%;
  background: linear-gradient(140deg, #fffdfa, #ffe9cf);
  box-shadow: inset 0 0 0 6px rgba(239, 107, 24, 0.05), 0 8px 18px rgba(239, 107, 24, 0.2);
}

.brand-arc {
  width: 20px;
  height: 10px;
  border: 2px solid var(--orange);
  border-left-color: transparent;
  border-radius: 999px;
  transform: rotate(-10deg);
}

.brand-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #151210;
}

.main-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(62, 45, 32, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.main-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(23, 19, 17, 0.74);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
  background: rgba(239, 107, 24, 0.1);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: #171311;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: white;
  transition: transform 0.28s var(--ease), opacity 0.28s ease;
}

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

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: 22px;
  min-height: 100vh;
  padding: 148px 0 78px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 100vw;
  height: 220px;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(252, 245, 236, 0) 0%, rgba(252, 245, 236, 0.88) 56%, var(--bg) 100%);
  z-index: -1;
}

.hero-copy {
  max-width: 550px;
  position: relative;
  z-index: 5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 11px 16px;
  border: 1px solid rgba(239, 107, 24, 0.25);
  border-radius: 999px;
  color: #d2630c;
  background: rgba(255, 249, 241, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(239, 107, 24, 0.12);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 500px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 1.09rem;
  line-height: 1.8;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease;
}

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

.button-dark {
  color: #fff;
  background: linear-gradient(135deg, #11100f, #2a231d 64%, #ef6b18 200%);
  box-shadow: 0 16px 42px rgba(31, 23, 18, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.button-light {
  color: #27211d;
  border-color: rgba(85, 61, 39, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  color: var(--muted);
}

.trust-row p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  margin-right: -10px;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(62, 44, 26, 0.12);
}

.avatars span:nth-child(1) { background: linear-gradient(135deg, #fa8a27, #d25400); }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #171311, #4a4038); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #ffb15e, #e46a17); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #7d6957, #2f2520); }

.hero-visual {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(239, 107, 24, 0.14);
  box-shadow: inset 0 0 80px rgba(255, 187, 112, 0.08);
}

.ring-one {
  width: 420px;
  height: 420px;
  top: 84px;
  right: 120px;
  animation: spinSlow 22s linear infinite;
}

.ring-two {
  width: 520px;
  height: 520px;
  top: 36px;
  right: 70px;
  opacity: 0.7;
  animation: spinSlowReverse 28s linear infinite;
}

.vertical-light {
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 168, 94, 0.7), transparent);
  opacity: 0.65;
  animation: pulseLine 4.5s linear infinite;
}

.light-one { top: 110px; right: 225px; height: 320px; }
.light-two { top: 72px; right: 336px; height: 260px; animation-delay: 1.1s; }
.light-three { top: 150px; right: 110px; height: 250px; animation-delay: 2s; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 262px;
  padding: 18px;
  border: 1px solid rgba(87, 62, 40, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 16px 34px rgba(76, 49, 25, 0.08);
  z-index: 10;
  transition: transform 0.22s ease;
}

.floating-card strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.floating-card small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.mini-icon,
.service-icon {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--orange);
  background: rgba(255, 245, 235, 0.98);
  box-shadow: inset 0 0 0 1px rgba(239, 107, 24, 0.12);
}

.mini-icon svg,
.service-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-card-cloud { top: 232px; left: 40px; }
.floating-card-ai { top: 118px; right: 24px; }
.floating-card-stack { top: 376px; left: 62px; }
.floating-card-web { top: 430px; right: 18px; }

.rocket-stage {
  position: relative;
  width: min(620px, 100%);
  height: 730px;
  z-index: 6;
  transition: transform 0.18s ease;
}

.rocket-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 46px;
  width: 240px;
  height: 160px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,210,116,0.22), rgba(255,210,116,0));
  filter: blur(18px);
  z-index: 1;
  pointer-events: none;
}

.rocket-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  animation: rocketFloat 3.2s ease-in-out infinite;
  transform-origin: 50% 50%;
}

#thrusterCanvas {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: 400px;
  height: 440px;
  z-index: 3;
  pointer-events: none;
}

.thrust-stack {
  position: absolute;
  left: 50%;
  bottom: 46px;
  width: 250px;
  height: 360px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: screen;
}

.thrust-halo,
.thrust-outer,
.thrust-mid,
.thrust-core {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  border-radius: 50% 50% 55% 55% / 14% 14% 82% 82%;
  transform-origin: top center;
}

.thrust-halo {
  width: 210px;
  height: 280px;
  background: radial-gradient(circle at 50% 18%, rgba(255,255,255,0.5), rgba(255,180,70,0.35) 34%, rgba(255,134,38,0.12) 58%, rgba(255,134,38,0) 74%);
  filter: blur(18px);
  animation: haloPulse 1.8s ease-in-out infinite;
}

.thrust-outer {
  width: 168px;
  height: 296px;
  background: linear-gradient(180deg, rgba(255,246,219,0.98) 0%, rgba(255,214,120,0.94) 18%, rgba(255,167,57,0.76) 46%, rgba(255,121,18,0.38) 72%, rgba(255,121,18,0) 100%);
  filter: blur(3px);
  animation: thrustFlicker 0.36s ease-in-out infinite alternate;
}

.thrust-mid {
  width: 106px;
  height: 254px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,236,172,0.98) 28%, rgba(255,162,52,0.72) 68%, rgba(255,110,20,0) 100%);
  animation: thrustInner 0.28s ease-in-out infinite alternate;
}

.thrust-core {
  width: 56px;
  height: 196px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,245,205,1) 44%, rgba(255,195,77,0.84) 72%, rgba(255,125,25,0) 100%);
  filter: blur(1px);
  animation: thrustCorePulse 0.24s ease-in-out infinite alternate;
}

.thrust-spark {
  position: absolute;
  bottom: 28px;
  width: 6px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,175,60,0.6), rgba(255,110,12,0));
  filter: blur(1px);
}

.spark-one {
  left: 74px;
  transform: rotate(14deg);
  animation: sparkTrail 0.9s linear infinite;
}

.spark-two {
  left: 117px;
  animation: sparkTrail 0.75s linear infinite 0.2s;
}

.spark-three {
  right: 72px;
  transform: rotate(-12deg);
  animation: sparkTrail 0.82s linear infinite 0.1s;
}

.launch-smoke {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(244, 223, 194, 0.86) 60%, rgba(244, 223, 194, 0) 72%);
  filter: blur(5px);
  z-index: 1;
  animation: smokeBreath 4s ease-in-out infinite;
}

.smoke-center {
  width: 300px;
  height: 180px;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  animation-delay: 0.3s;
}

.smoke-left {
  width: 210px;
  height: 144px;
  left: 70px;
  bottom: 28px;
}

.smoke-right {
  width: 220px;
  height: 144px;
  right: 64px;
  bottom: 28px;
  animation-delay: 1s;
}

.smoke-back-left {
  width: 150px;
  height: 110px;
  left: 122px;
  bottom: 80px;
  opacity: 0.78;
  animation-delay: 0.7s;
}

.smoke-back-right {
  width: 150px;
  height: 110px;
  right: 118px;
  bottom: 80px;
  opacity: 0.8;
  animation-delay: 1.4s;
}

.hero-ground {
  position: absolute;
  inset: auto 0 0 0;
  height: 280px;
  z-index: 2;
  overflow: hidden;
}

.ground-haze {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  height: 180px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 235, 208, 0.88), transparent 28%),
    radial-gradient(circle at 82% 55%, rgba(255, 228, 193, 0.76), transparent 30%),
    linear-gradient(180deg, rgba(243, 221, 195, 0), rgba(232, 197, 151, 0.22));
  filter: blur(2px);
}

.cityline {
  position: absolute;
  bottom: 74px;
  width: 15px;
  border-radius: 10px 10px 2px 2px;
  background: linear-gradient(180deg, rgba(214, 160, 98, 0.35), rgba(140, 95, 52, 0.28));
  box-shadow: 0 0 30px rgba(255, 175, 80, 0.18);
}

.cityline::before,
.cityline::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: inherit;
}

.cityline::before {
  width: 10px;
  height: 70px;
  left: -16px;
  bottom: 0;
}

.cityline::after {
  width: 12px;
  height: 98px;
  right: -20px;
  bottom: 0;
}

.cityline-left {
  height: 110px;
  left: 165px;
}

.cityline-center {
  height: 135px;
  left: 50%;
  transform: translateX(-50%);
}

.cityline-right {
  height: 96px;
  right: 145px;
}

.cloud {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 38% 35%, rgba(255, 255, 255, 0.96), rgba(248, 228, 203, 0.9) 55%, rgba(248, 228, 203, 0.15) 74%);
  filter: blur(4px);
}

.cloud-one { width: 260px; height: 110px; left: 20px; bottom: 10px; }
.cloud-two { width: 320px; height: 140px; left: 180px; bottom: -14px; }
.cloud-three { width: 320px; height: 136px; right: 10px; bottom: -10px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
  color: rgba(58, 46, 37, 0.72);
}

.scroll-cue i {
  width: 22px;
  height: 34px;
  border-radius: 20px;
  border: 1px solid rgba(56, 42, 30, 0.2);
  position: relative;
}

.scroll-cue i::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  animation: scrollDot 2.1s ease-in-out infinite;
}

.section-panel,
.services,
.contact-full,
.site-footer {
  position: relative;
}

.about {
  padding: 22px;
  border: 1px solid rgba(74, 54, 37, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 247, 0.82);
  box-shadow: var(--shadow-soft);
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: stretch;
}

.section-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 20px;
  background: rgba(255, 242, 225, 0.95);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.86rem;
}

.section-title {
  margin: 0 0 10px;
  color: #7c6a5c;
  font-size: 0.96rem;
  font-weight: 700;
}

.about h2,
.services h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.about-copy-block p:not(.section-title),
.contact-copy p:not(.section-title) {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-visual {
  position: relative;
  min-height: 390px;
  padding: 20px;
  border: 1px solid rgba(77, 55, 36, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.72), rgba(255, 255, 255, 0.44));
  overflow: hidden;
}

.about-image {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

.about-scene {
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 241, 214, 0.74), transparent 18%),
    linear-gradient(180deg, rgba(255, 246, 231, 0.95), rgba(222, 187, 142, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.32),
    inset 0 0 100px rgba(255,255,255,0.18);
}

.scene-ceiling {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(180deg, rgba(145, 108, 72, 0.28), rgba(145, 108, 72, 0));
}

.scene-ceiling::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 68%;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 3px solid rgba(255, 230, 186, 0.86);
  box-shadow: 0 0 24px rgba(255, 202, 120, 0.32);
}

.scene-window {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  height: 220px;
  border-radius: 30px 30px 170px 170px / 26px 26px 110px 110px;
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 248, 236, 0.38), rgba(255, 248, 236, 0) 30%),
    linear-gradient(180deg, rgba(255, 247, 236, 0.88), rgba(243, 225, 198, 0.86));
  border: 4px solid rgba(255, 249, 239, 0.58);
  box-shadow: inset 0 -20px 60px rgba(255,255,255,0.12);
}

.scene-sun {
  position: absolute;
  right: 94px;
  top: 112px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(255,224,173,0.9) 45%, rgba(255,224,173,0) 72%);
  filter: blur(1px);
}

.scene-horizon {
  position: absolute;
  left: 70px;
  right: 80px;
  top: 208px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(194,153,112,0.45), rgba(194,153,112,0.18));
  filter: blur(1px);
}

.scene-tower {
  position: absolute;
  bottom: 144px;
  width: 14px;
  border-radius: 10px 10px 2px 2px;
  background: linear-gradient(180deg, rgba(193,140,86,0.92), rgba(142,101,61,0.7));
}

.scene-tower::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: -18px;
  height: 28px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(180deg, rgba(221,176,121,0.9), rgba(157,106,62,0.9));
}

.tower-a { height: 92px; right: 128px; }
.tower-b { height: 116px; right: 88px; width: 16px; }
.tower-c { height: 76px; right: 54px; width: 12px; }

.scene-plant {
  position: absolute;
  bottom: 66px;
  width: 64px;
  height: 88px;
}

.scene-plant::before,
.scene-plant::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 12px;
  height: 58px;
  background: linear-gradient(180deg, rgba(100,83,61,0.28), rgba(74,55,40,0.55));
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
}

.scene-plant::after {
  display: none;
}

.scene-plant span {
  display: none;
}

.scene-plant::marker {
  content: "";
}

.scene-plant::before {
  box-shadow:
    -18px -18px 0 10px rgba(94,120,74,0.58),
    -28px -8px 0 10px rgba(109,142,88,0.52),
    18px -20px 0 10px rgba(96,123,77,0.58),
    28px -10px 0 10px rgba(113,143,91,0.52),
    0 -28px 0 11px rgba(124,156,97,0.52);
}

.plant-left { left: 34px; }
.plant-right { right: 34px; }

.scene-sofa {
  position: absolute;
  left: 142px;
  right: 110px;
  bottom: 44px;
  height: 62px;
  border-radius: 30px 30px 24px 24px;
  background: linear-gradient(180deg, rgba(245, 228, 203, 0.96), rgba(214, 176, 130, 0.96));
  box-shadow: inset 0 -10px 18px rgba(166, 125, 83, 0.16);
}

.scene-sofa::before,
.scene-sofa::after {
  content: "";
  position: absolute;
  top: -12px;
  width: 70px;
  height: 28px;
  border-radius: 18px;
  background: rgba(255, 243, 223, 0.92);
}

.scene-sofa::before { left: 16px; }
.scene-sofa::after { right: 16px; }

.scene-table {
  position: absolute;
  right: 78px;
  bottom: 44px;
  width: 58px;
  height: 22px;
  border-radius: 50%;
  background: rgba(191, 144, 94, 0.54);
  box-shadow: 0 12px 0 -5px rgba(118, 81, 48, 0.64);
}

.about-metrics {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  z-index: 4;
  mix-blend-mode: screen;
}

.about-metrics div {
  padding: 16px 18px;
  border: 1px solid rgba(90, 64, 40, 0.08);
  border-radius: 18px;
  background: rgba(255, 236, 211, 0.76);
  backdrop-filter: blur(10px);
}

.about-metrics strong {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.06em;
}

.about-metrics span {
  display: block;
  margin-top: 4px;
  color: rgba(38, 29, 22, 0.72);
  font-size: 0.88rem;
  line-height: 1.4;
}

.services {
  margin-top: 28px;
  padding: 22px 0 10px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 28px;
}

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

.service-card,
.contact-card {
  border: 1px solid rgba(72, 53, 36, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.82);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 28px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-card a {
  margin-top: auto;
  font-weight: 800;
  color: #36302b;
}

.contact-full {
  margin-top: 24px;
  padding-bottom: 58px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 28px;
  overflow: hidden;
}

.contact-form {
  margin-top: 8px;
}

.form-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(48, 39, 31, 0.82);
}

input,
textarea {
  width: 100%;
  padding: 16px 16px;
  border: 1px solid rgba(84, 61, 39, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(239, 107, 24, 0.3);
  box-shadow: 0 0 0 4px rgba(239, 107, 24, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 42px;
  color: rgba(40, 32, 25, 0.86);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.tilt-card,
.magnetic {
  will-change: transform;
}

@keyframes rocketFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-12px) scale(1.006); }
}

@keyframes smokeBreath {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.9; }
  50% { transform: scale(1.08) translateY(-8px); opacity: 1; }
}

@keyframes pulseLine {
  0% { transform: translateY(-24px); opacity: 0; }
  30% { opacity: 0.65; }
  100% { transform: translateY(22px); opacity: 0; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinSlowReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  25% { opacity: 1; }
  70% { opacity: 1; transform: translate(-50%, 12px); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

@keyframes thrustFlicker {
  0% { transform: translateX(-50%) scaleY(1) scaleX(1); }
  100% { transform: translateX(-50%) scaleY(1.08) scaleX(0.96); }
}

@keyframes thrustInner {
  0% { transform: translateX(-50%) scaleY(1); opacity: 0.96; }
  100% { transform: translateX(-50%) scaleY(1.12) scaleX(0.94); opacity: 1; }
}

@keyframes thrustCorePulse {
  0% { transform: translateX(-50%) scaleY(0.98); }
  100% { transform: translateX(-50%) scaleY(1.12) scaleX(0.9); }
}

@keyframes haloPulse {
  0%, 100% { transform: translateX(-50%) scale(0.98); opacity: 0.7; }
  50% { transform: translateX(-50%) scale(1.05); opacity: 1; }
}

@keyframes sparkTrail {
  0% { opacity: 0; transform: translateY(-12px) scaleY(0.7) rotate(0deg); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translateY(48px) scaleY(1.3) rotate(0deg); }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 140px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .scroll-cue {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 14px;
  }

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

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 26px;
    background: rgba(255, 251, 246, 0.96);
    box-shadow: 0 18px 50px rgba(68, 46, 28, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    text-align: center;
  }

  .header-cta {
    display: none;
  }

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

  .floating-card {
    width: 230px;
    padding: 16px;
  }

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

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

  .site-header {
    top: 12px;
  }

  .header-inner {
    min-height: 68px;
    padding-inline: 16px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .rocket-stage {
    width: 100%;
    height: 520px;
  }

  .ring-one {
    width: 280px;
    height: 280px;
    top: 70px;
    right: 50%;
    transform: translateX(50%);
  }

  .ring-two {
    width: 360px;
    height: 360px;
    top: 34px;
    right: 50%;
    transform: translateX(50%);
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-bottom: 0;
  }

  .hero-ground {
    height: 180px;
  }

  #thrusterCanvas {
    width: 260px;
    height: 320px;
  }

  .thrust-stack {
    width: 180px;
    height: 240px;
    bottom: 52px;
  }

  .thrust-halo { width: 170px; height: 210px; }
  .thrust-outer { width: 136px; height: 214px; }
  .thrust-mid { width: 84px; height: 184px; }
  .thrust-core { width: 40px; height: 150px; }

  .services-grid,
  .two-up,
  .about-metrics {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
    gap: 18px;
  }

  .about-visual {
    min-height: 460px;
  }

  .about-metrics {
    left: 22px;
    right: 22px;
  }
}
