:root {
  --bg: #0b0b0d;
  --bg-soft: #131317;
  --panel: rgba(20, 20, 24, 0.76);
  --panel-2: rgba(26, 26, 32, 0.88);
  --text: #f7f2ea;
  --muted: #bcb2a5;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #cb6c2b;
  --accent-2: #d89b48;
  --accent-soft: rgba(203, 108, 43, 0.16);
  --charcoal: #31343a;
  --sage: #849b7c;
  --navy: #253446;
  --sand: #cdb792;
  --shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(203, 108, 43, 0.14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(216, 155, 72, 0.08), transparent 28%),
    linear-gradient(180deg, #111114 0%, var(--bg) 32%, #09090b 100%);
  color: var(--text);
}

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

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

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

.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.22;
  z-index: 0;
}

.orb-1 {
  width: 240px;
  height: 240px;
  top: 4rem;
  left: -4rem;
  background: var(--accent);
}

.orb-2 {
  width: 260px;
  height: 260px;
  bottom: 5rem;
  right: -5rem;
  background: #8b5bff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(11, 11, 13, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: grid;
  gap: 4px;
}

.brand-main {
  font-size: 0.92rem;
  letter-spacing: 0.17em;
  font-weight: 900;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero,
.section {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 88px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  min-height: calc(100vh - 110px);
}

.eyebrow,
.card-kicker,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 0.77rem;
  font-weight: 800;
}

.hero h1,
.section h2 {
  margin: 0 0 16px;
  line-height: 1.02;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.hero-text,
.section-copy,
.section-heading p,
.story-wrap p,
.glass-card p,
.connect-card p,
.product-card p,
.feature-list,
.quote-card {
  color: var(--muted);
}

.hero-text,
.section-copy {
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1c1309;
  border-color: transparent;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.hero-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-note span {
  color: var(--text);
}

.hero-card,
.glass-card,
.feature-card,
.product-card,
.connect-card,
.quote-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card {
  border-radius: 28px;
  padding: 26px;
}

.card-topline,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: rgba(203, 108, 43, 0.09);
  color: #f0c7a2;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.pulse-panel {
  margin: 20px 0 18px;
  min-height: 240px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  display: grid;
  place-items: center;
  padding: 24px;
}

.pulse-line {
  width: 100%;
  height: 110px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 220'%3E%3Cpath d='M0 110h280l70-65 70 140 85-170 75 170 70-75h550' fill='none' stroke='%23cb6c2b' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ctext x='598' y='112' font-size='36' font-family='Arial, sans-serif' fill='%23f7f2ea'%3E7%3C/text%3E%3C/svg%3E");
  filter: drop-shadow(0 0 18px rgba(203, 108, 43, 0.55));
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-card-grid h3,
.feature-card h3,
.product-card h3,
.glass-card h2,
.glass-card h3 {
  margin: 6px 0 0;
}

.section {
  padding: 40px 0 76px;
}

.intro-grid,
.shift-grid,
.services-grid,
.connect-grid,
.product-row,
.split-grid {
  display: grid;
  gap: 22px;
}

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

.glass-card,
.product-card,
.feature-card,
.connect-card {
  border-radius: 24px;
  padding: 28px;
}

.card-kicker,
.mini-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.glass-card a {
  color: #f0c7a2;
  font-weight: 700;
}

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

.shift-grid,
.split-grid,
.connect-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
  line-height: 1.55;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.swatch {
  height: 124px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: end;
  padding: 14px;
  font-weight: 800;
}

.swatch span {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
}

.charcoal { background: var(--charcoal); }
.sage { background: var(--sage); color: #11170f; }
.navy { background: var(--navy); }
.sand { background: var(--sand); color: #231d12; }

.product-row,
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.quote-card {
  border-radius: 28px;
  padding: 32px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.45;
  background: linear-gradient(180deg, rgba(203,108,43,0.14), rgba(203,108,43,0.05));
}

.story-wrap {
  max-width: 760px;
}

.connect-item + .connect-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 0 0 42px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    right: 16px;
    top: 68px;
    width: min(240px, calc(100vw - 32px));
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(14, 14, 18, 0.97);
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

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

  .hero-grid,
  .intro-grid,
  .shift-grid,
  .split-grid,
  .services-grid,
  .connect-grid,
  .product-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1160px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-main {
    font-size: 0.78rem;
  }

  .brand-sub {
    font-size: 0.76rem;
  }

  .hero-card,
  .glass-card,
  .feature-card,
  .product-card,
  .connect-card,
  .quote-card {
    padding: 22px;
  }

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

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

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}




.decode-grid { align-items: start; }
.decode-copy {
  padding-top: 12px;
}

.signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.signal-chips span,
.decode-card-topline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: rgba(203, 108, 43, 0.09);
  color: #f0c7a2;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.decode-card {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at top left, rgba(216, 155, 72, 0.15), transparent 34%),
    radial-gradient(circle at bottom right, rgba(82, 65, 197, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(20,20,24,0.95), rgba(10,10,14,0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 24px;
  overflow: hidden;
}

.decode-card::before {
  content: '';
  position: absolute;
  inset: auto -10% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(203, 108, 43, 0.18);
  filter: blur(56px);
  pointer-events: none;
}

.decode-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(216, 155, 72, 0.2), rgba(106, 90, 255, 0.14));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}

.signal-panel-glow,
.signal-panel-grid,
.signal-panel-wave {
  position: absolute;
  pointer-events: none;
}

.signal-panel-glow {
  inset: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(216, 155, 72, 0.16), transparent 22%),
    radial-gradient(circle at 82% 76%, rgba(97, 79, 255, 0.14), transparent 24%);
  opacity: 0.95;
}

.signal-panel-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.52), transparent 85%);
  opacity: 0.26;
}

.signal-panel-wave {
  top: 18px;
  right: 18px;
  display: flex;
  align-items: end;
  gap: 6px;
  height: 28px;
  z-index: 1;
}

.signal-panel-wave span {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(216, 155, 72, 0.3));
  box-shadow: 0 0 12px rgba(216, 155, 72, 0.22);
  animation: signalBars 1.8s ease-in-out infinite;
}

.signal-panel-wave span:nth-child(1) { height: 10px; animation-delay: 0s; }
.signal-panel-wave span:nth-child(2) { height: 22px; animation-delay: 0.15s; }
.signal-panel-wave span:nth-child(3) { height: 14px; animation-delay: 0.3s; }
.signal-panel-wave span:nth-child(4) { height: 26px; animation-delay: 0.45s; }
.signal-panel-wave span:nth-child(5) { height: 12px; animation-delay: 0.6s; }

.pulse-form { display: grid; gap: 12px; position: relative; z-index: 1; }
.pulse-form label { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.pulse-form input, .pulse-form select, .pulse-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.pulse-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.8) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.8) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.pulse-form select option {
  background: #121218;
  color: #ffffff;
}
.pulse-form input:focus, .pulse-form select:focus, .pulse-form textarea:focus {
  outline: none;
  border-color: rgba(216, 155, 72, 0.72);
  box-shadow: 0 0 0 3px rgba(216, 155, 72, 0.08), 0 0 24px rgba(216, 155, 72, 0.08);
}
.pulse-form textarea { resize: vertical; min-height: 100px; }
.decode-submit {
  margin-top: 6px;
  box-shadow: 0 12px 30px rgba(216, 155, 72, 0.22);
}
.decode-submit:hover {
  box-shadow: 0 18px 38px rgba(216, 155, 72, 0.28);
}
.pulse-result {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  opacity: 0.78;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}
.pulse-result.active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(216, 155, 72, 0.34);
  box-shadow: 0 0 20px rgba(216, 155, 72, 0.08);
}
.pulse-result h3 { margin: 0 0 10px; font-size: clamp(1.25rem, 2vw, 1.55rem); }

@keyframes signalBars {
  0%, 100% { transform: scaleY(0.7); opacity: 0.65; }
  50% { transform: scaleY(1.18); opacity: 1; }
}

.pulse-result p:last-child { margin: 0; line-height: 1.7; }
@media (max-width: 900px) { .decode-grid { grid-template-columns: 1fr; } }


.connect-item a,
.footer-links a {
  color: var(--text);
  text-decoration: none;
}

.connect-item a:hover,
.footer-links a:hover {
  color: var(--accent-2);
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0 28px;
}

.footer-inner p {
  margin: 4px 0;
  color: var(--muted);
}

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

.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
}
