/* Intek Space — site design system (all pages)
   Palette: deep navy blue + gold accent (brand lock)
   Atmosphere: IMI-like multi-radial void + frosted glass panels (2026-07-29) */
:root {
  --ink: #070b14;
  --ink-mid: #0e1c36;
  --ink-panel: rgba(16, 40, 72, 0.55);
  --ink-panel-solid: #14305a;
  --parchment: #eaf0fa;
  --mist: #9aadc8;
  --hive: #d4b056;
  --hive-bright: #e8c86a;
  --mark: #4aa8ff;
  --leaf: #5d9b7a;
  --border: rgba(212, 176, 86, 0.38);
  --border-soft: rgba(100, 150, 220, 0.18);
  --glass: blur(18px) saturate(1.25);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --max: 56rem;
  --header-h: 3.35rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(ellipse 120% 70% at 20% -15%, rgba(139, 92, 246, 0.12), transparent 52%),
    radial-gradient(ellipse 90% 55% at 95% 5%, rgba(212, 176, 86, 0.08), transparent 48%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(56, 120, 200, 0.06), transparent 50%),
    var(--ink);
  color: var(--parchment);
  min-height: 100vh;
}

.font-display { font-family: var(--font-display); }
.text-parchment { color: var(--parchment); }
.text-mist { color: var(--mist); }
.text-hive { color: var(--hive); }
.text-mark { color: var(--mark); }

.panel {
  background: var(--ink-panel);
  border: 1px solid var(--border-soft);
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
}
.band { background: rgba(7, 11, 20, 0.35); }
.band-soft { background: rgba(14, 28, 54, 0.4); }

.hero-glow, .hero-wash { position: relative; }
.hero-glow::before, .hero-wash::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 176, 86, 0.1), transparent 60%);
}

.btn-gold, .btn-gold-soft, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 2.75rem;
}
.btn-gold {
  color: #070b14;
  background: linear-gradient(180deg, var(--hive-bright), var(--hive));
  border: 1px solid rgba(212, 176, 86, 0.5);
  box-shadow: 0 2px 16px rgba(212, 176, 86, 0.28);
}
.btn-gold:hover { background: var(--hive-bright); }
.btn-gold-soft {
  color: var(--hive-bright);
  background: rgba(212, 176, 86, 0.12);
  border: 1px solid rgba(212, 176, 86, 0.35);
}
.btn-gold-soft:hover { background: rgba(212, 176, 86, 0.2); color: var(--parchment); }
.btn-ghost {
  color: var(--mist);
  background: transparent;
  border: 1px solid var(--border-soft);
}
.btn-ghost:hover { color: var(--parchment); border-color: rgba(212, 176, 86, 0.35); }

a.gloss {
  color: rgba(212, 176, 86, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(212, 176, 86, 0.35);
}
a.gloss:hover { color: var(--parchment); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(7, 11, 20, 0.72);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.site-brand__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 176, 86, 0.6);
  background: linear-gradient(145deg, rgba(74, 168, 220, 0.25), rgba(212, 176, 86, 0.2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--hive-bright);
  flex-shrink: 0;
}
.site-brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--parchment);
}
.site-brand__tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(154, 173, 200, 0.7);
  line-height: 1.2;
}
.site-nav {
  display: none;
  align-items: center;
  gap: 0.35rem 1rem;
  font-size: 0.8rem;
  color: rgba(154, 173, 200, 0.92);
}
.site-nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
  padding: 0.35rem 0;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
}
.site-nav a:hover { color: var(--parchment); }
.site-nav a.is-active { color: var(--hive); font-weight: 500; }
.site-nav a.site-nav__cta {
  color: #070b14;
  background: linear-gradient(180deg, var(--hive-bright), var(--hive));
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8rem;
  min-height: 2.5rem;
  box-shadow: 0 2px 14px rgba(212, 176, 86, 0.3);
}
.site-nav a.site-nav__cta:hover { background: var(--hive-bright); color: #070b14; }
.site-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--mist);
  cursor: pointer;
}
.site-menu-btn:hover { color: var(--parchment); border-color: rgba(212,176,86,0.4); }
.site-menu-btn[aria-expanded="true"] { color: var(--hive); }
.site-drawer {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1rem;
  border-top: 1px solid var(--border-soft);
}
.site-drawer.is-open { display: flex; }
.site-drawer a {
  color: var(--mist);
  text-decoration: none;
  padding: 0.65rem 0.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-soft);
}
.site-drawer a.is-active { color: var(--hive); }
.site-drawer a:hover { color: var(--parchment); }
@media (min-width: 768px) {
  .site-nav { display: flex; }
  .site-menu-btn { display: none; }
  .site-drawer { display: none !important; }
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  margin-top: auto;
  padding: 1.35rem 0 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.9));
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.75rem;
  color: rgba(154, 173, 200, 0.55);
}
.site-footer__row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .site-footer__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}
.site-footer__links a {
  color: rgba(154, 173, 200, 0.72);
  text-decoration: none;
}
.site-footer__links a:hover { color: var(--parchment); }
.site-footer__links a.is-active { color: rgba(212, 176, 86, 0.95); }
.site-footer__privacy {
  line-height: 1.55;
  max-width: 42rem;
  color: rgba(154, 173, 200, 0.45);
}
.site-footer__privacy a {
  color: rgba(212, 176, 86, 0.85);
  text-decoration: none;
}
.site-footer__privacy a:hover { text-decoration: underline; }
.site-footer__network {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-soft);
}
.site-footer__network-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(212, 176, 86, 0.8);
}

.om-order {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: rgba(154, 173, 200, 0.9);
  line-height: 1.45;
}
.om-order__row { display: flex; align-items: flex-start; gap: 0.55rem; }
.om-order__mark {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  margin-top: 0.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 176, 86, 0.55);
}
.om-order__mark--goal {
  background: var(--hive);
  border-color: var(--hive-bright);
  box-shadow: 0 0 8px rgba(212, 176, 86, 0.45);
}
.om-order__mark--goals { background: transparent; }
.om-order__mark--obj {
  background: transparent;
  width: 0.4rem;
  height: 0.4rem;
  margin-top: 0.4rem;
  opacity: 0.75;
}
.om-order a { color: rgba(212, 176, 86, 0.9); text-decoration: none; }
.om-order a:hover { text-decoration: underline; }

.om-pole {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(212, 176, 86, 0.35);
  color: rgba(232, 200, 106, 0.95);
  text-decoration: none;
  background: rgba(212, 176, 86, 0.06);
}
.om-pole--community { border-radius: 0.35rem; }
.om-pole--farmer { border-radius: 9999px; }
.om-pole--both { border-radius: 0.35rem 9999px 9999px 0.35rem; }
.om-pole:hover {
  border-color: rgba(212, 176, 86, 0.65);
  background: rgba(212, 176, 86, 0.12);
  color: var(--parchment);
}

.om-arc {
  height: 1px;
  max-width: 12rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, rgba(212, 176, 86, 0.55), rgba(74, 168, 255, 0.35), transparent);
  border-radius: 9999px;
}

.om-refuse {
  border: 1px solid rgba(212, 176, 86, 0.45);
  border-radius: 1rem;
  background: rgba(20, 14, 8, 0.35);
}
.om-refuse--block { border-radius: 1rem; }

.om-twins { display: grid; gap: 1rem; }
@media (min-width: 640px) {
  .om-twins { grid-template-columns: 1fr 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.field .lbl {
  font-size: 0.75rem;
  color: rgba(154, 173, 200, 0.85);
}
.field input,
.field select,
.field textarea {
  background: rgba(7, 11, 20, 0.65);
  border: 1px solid var(--border-soft);
  border-radius: 0.65rem;
  padding: 0.55rem 0.75rem;
  color: var(--parchment);
  font-size: 0.875rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(212, 176, 86, 0.45);
}
