/* Van Hook Systems — company landing */
:root {
  --bg: #0f0e0c;
  --bg-elevated: #161411;
  --surface: #1e1a16;
  --surface-2: #2a241c;
  --border: #3a342c;
  --text: #f3efe6;
  --muted: #a39e93;
  --gold: #d4a84b;
  --gold-soft: #e8c56a;
  --olive: #8b9a7d;
  --ink: #1a150c;
  --danger: #d97060;
  --radius: 16px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --wrap: 1120px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(1000px 520px at 10% -10%, rgba(139, 154, 125, 0.12), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(212, 168, 75, 0.09), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
}
a:hover {
  color: var(--gold-soft);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(15, 14, 12, 0.85);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.logo:hover {
  color: var(--gold-soft);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold), #b8923f);
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
}

.nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
}
.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.nav a:hover {
  color: var(--text);
}

.header-inner > .btn-sm {
  margin-left: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}
.btn-sm {
  padding: 8px 12px;
  font-size: 13px;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold) 0%, #b8923f 100%);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  filter: brightness(1.06);
  color: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--gold-soft);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: rgba(212, 168, 75, 0.45);
  color: var(--gold);
}

/* Hero */
.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--olive);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin: 0 0 24px;
}

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

.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 600;
}

.veteran-badge span {
  color: var(--gold);
  font-size: 12px;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
  position: relative;
  min-height: 300px;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-panel::before {
  width: 280px;
  height: 280px;
  right: 8%;
  top: 8px;
  border: 1px solid rgba(212, 168, 75, 0.2);
  box-shadow: 0 0 80px rgba(212, 168, 75, 0.08), inset 0 0 60px rgba(139, 154, 125, 0.06);
  animation: pulse-orbit 5s ease-in-out infinite;
}

.hero-panel::after {
  width: 410px;
  height: 170px;
  right: -55px;
  top: 64px;
  border: 1px solid rgba(139, 154, 125, 0.16);
  transform: rotate(-28deg);
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 5px rgba(232, 197, 106, 0.12), 0 0 18px rgba(232, 197, 106, 0.75);
}

.orbit-one {
  right: 10%;
  top: 18%;
  animation: drift-one 7s ease-in-out infinite;
}

.orbit-two {
  right: 78%;
  top: 68%;
  background: var(--olive);
  box-shadow: 0 0 0 5px rgba(139, 154, 125, 0.12), 0 0 18px rgba(139, 154, 125, 0.7);
  animation: drift-two 6s ease-in-out infinite;
}

.orbit-three {
  right: 30%;
  top: 88%;
  animation: drift-three 8s ease-in-out infinite;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(212, 168, 75, 0.3);
  border-radius: 10px;
  background: rgba(30, 26, 22, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.chip-top {
  top: 14px;
  right: -8px;
  animation: float-chip 5s ease-in-out infinite;
}

.chip-bottom {
  bottom: 18px;
  left: -22px;
  border-color: rgba(139, 154, 125, 0.38);
  animation: float-chip 5s 1.5s ease-in-out infinite;
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fbf8a;
  box-shadow: 0 0 10px rgba(111, 191, 138, 0.8);
}

.chip-icon {
  color: var(--gold-soft);
  font-size: 16px;
  line-height: 0.7;
}

.panel-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  background: rgba(30, 26, 22, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

@keyframes pulse-orbit {
  0%, 100% { transform: scale(0.98); opacity: 0.72; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes float-chip {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes drift-one {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-22px, 28px, 0); }
}

@keyframes drift-two {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(35px, -18px, 0); }
}

@keyframes drift-three {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-28px, -24px, 0); }
}

.panel-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.panel-list em {
  margin-left: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot.live {
  background: #6fbf8a;
  box-shadow: 0 0 0 3px rgba(111, 191, 138, 0.2);
}
.dot.beta {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.2);
}
.dot.soon {
  background: var(--muted);
}

/* Sections */
.section {
  padding: 64px 0;
}
.section-alt {
  background: rgba(22, 20, 17, 0.65);
  border-block: 1px solid var(--border);
}

.section-head {
  margin-bottom: 28px;
  max-width: 36rem;
}
.section-head h2,
.section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 10px;
}
.section-head p,
.lede-sm {
  color: var(--muted);
  margin: 0;
}

/* Scroll reveals */
.reveal {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-48px, 0, 0);
}

.reveal-right {
  transform: translate3d(48px, 0, 0);
}

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

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.product-card:hover {
  border-color: rgba(212, 168, 75, 0.35);
}
.product-card.featured {
  background: linear-gradient(165deg, rgba(212, 168, 75, 0.08), transparent 45%), var(--surface);
  border-color: rgba(212, 168, 75, 0.35);
}

.product-top h3 {
  margin: 8px 0 4px;
  font-size: 1.25rem;
}
.tagline {
  margin: 0;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 600;
}

.product-card > p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.badge.live {
  color: #9dd9b0;
  border-color: rgba(111, 191, 138, 0.4);
  background: rgba(111, 191, 138, 0.1);
}
.badge.beta {
  color: var(--gold-soft);
  border-color: rgba(212, 168, 75, 0.4);
  background: rgba(212, 168, 75, 0.1);
}
.badge.soon {
  color: var(--muted);
}

.bullets {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 13.5px;
}
.bullets li {
  margin-bottom: 6px;
  color: var(--muted);
}
.bullets li::marker {
  color: var(--gold);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

/* Approach */
.approach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.approach-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.approach-cards .mini-card:nth-child(2) {
  transition-delay: 0.08s;
}

.approach-cards .mini-card:nth-child(3) {
  transition-delay: 0.16s;
}

.approach-cards .mini-card:nth-child(4) {
  transition-delay: 0.24s;
}

.approach-cards .mini-card:nth-child(5) {
  transition-delay: 0.32s;
}

.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.mini-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--gold-soft);
}
.mini-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.veteran-card {
  border-color: rgba(212, 168, 75, 0.3);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-email {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 18px 0 8px;
}
.contact-email a {
  color: var(--gold-soft);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(212, 168, 75, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.12);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: rgba(212, 168, 75, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.12);
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
}

.demo-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.time-options {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.time-options legend {
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.time-option {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 9px !important;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  cursor: pointer;
}

.time-option input {
  width: auto;
  accent-color: var(--gold);
}

.demo-note {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 168, 75, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.form-hint {
  margin: 0;
  font-size: 12px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 36px;
  margin-top: 24px;
}

.footer-inner {
  display: grid;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  color: var(--muted);
  font-size: 14px;
}
.copy {
  margin: 0;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .approach-grid,
  .contact-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .hero-panel {
    justify-content: stretch;
    min-height: 300px;
  }
  .panel-card {
    max-width: none;
  }
  .approach-cards {
    grid-template-columns: 1fr;
  }
}

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

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 520px) {
  .header-inner > .btn-sm {
    display: none;
  }
}
