/* ============================================================
   BEEZENDS TECHNOLOGIES — corporate one-page site
   Black / gold premium identity · zero external dependencies
   ============================================================ */

:root {
  /* Layered neutral blacks (client-approved: #0E0E10 / #141417 alternation) */
  --bg: #0e0e10;
  --bg-2: #121215;
  --panel: #141417;
  --panel-2: #17171b;
  --card: #17171b;
  /* Gold calibrated from official logo (assets/img/beezends-logo.jpg):
     highlight #F6DC7D · mid #E0A72E · deep #A9761A */
  --gold: #e0a72e;
  --gold-bright: #f6dc7d;
  --gold-pale: #f7ecc4;
  --gold-deep: #a9761a;
  --ink: #f2efe6;
  --ink-soft: #d8d4c8;
  --muted: #c2bbaa;
  --faint: #b0aca2;
  --hairline: rgba(224, 167, 46, 0.26);
  --hairline-soft: rgba(224, 167, 46, 0.13);
  --danger: #e88f79;
  --success: #b3cf92;
  --font-display: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system,
    "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --header-h: 76px;
  --radius: 18px;
  --radius-lg: 28px;
  --gold-grad: linear-gradient(135deg, #f9e48e 0%, #e0a72e 48%, #a9761a 100%);
  --hex-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cg fill='none' stroke='%23e0a72e' stroke-opacity='.07' stroke-width='1'%3E%3Cpath d='M28 8 52 22v28L28 64 4 50V22z'/%3E%3Cpath d='M28 72 52 86v28L28 128 4 114V86z'/%3E%3Cpath d='M0-24 24-10v28L0 32l-24-14v-28z'/%3E%3Cpath d='M56-24 80-10v28L56 32 32 18v-28z'/%3E%3Cpath d='M0 40 24 54v28L0 96l-24-14V54z'/%3E%3Cpath d='M56 40 80 54v28L56 96 32 82V54z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: rgba(224, 167, 46, 0.35); color: #fff8e6; }

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

section { scroll-margin-top: calc(var(--header-h) + 12px); }
#get-the-app { scroll-margin-top: calc(var(--header-h) + 24px); }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-text-strong { color: var(--gold-bright); font-weight: 600; }
.gold-rule {
  width: 64px; height: 2px;
  margin: 26px 0 28px;
  background: var(--gold-grad);
  position: relative;
}
.gold-rule::after {
  content: ""; position: absolute; right: -12px; top: -2px;
  width: 6px; height: 6px; transform: rotate(45deg);
  background: var(--gold);
}
.gold-rule-center { margin-inline: auto; }
.section-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.06rem;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-lead { margin-top: 6px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn-icon { width: 17px; height: 17px; transition: transform 0.25s ease; }
.btn:hover .btn-icon { transform: translateX(4px); }
.btn-gold {
  background: var(--gold-grad);
  color: #191204;
  box-shadow: 0 10px 30px -12px rgba(224, 167, 46, 0.55);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px -12px rgba(224, 167, 46, 0.7);
}
.btn-gold:active { transform: translateY(0); }
.btn-ghost {
  border: 1px solid var(--hairline);
  color: var(--ink);
  background: rgba(224, 167, 46, 0.04);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(224, 167, 46, 0.1);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: rgba(14, 14, 16, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(14, 14, 16, 0.92);
  border-bottom-color: var(--hairline-soft);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-logo {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--hairline), 0 0 18px -6px rgba(224, 167, 46, 0.55);
}
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
}
.brand-sub {
  font-size: 8.5px;
  letter-spacing: 0.52em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}
.main-nav ul { display: flex; align-items: center; gap: 34px; }
.nav-link {
  position: relative;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--gold-bright); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
}
.nav-toggle-bar {
  width: 20px; height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 96px;
  background:
    var(--hex-pattern),
    radial-gradient(1100px 620px at 82% 18%, rgba(224, 167, 46, 0.13), transparent 62%),
    radial-gradient(800px 500px at 8% 88%, rgba(224, 167, 46, 0.06), transparent 60%),
    linear-gradient(180deg, #0f0f12 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.hero-glow-1 {
  width: 480px; height: 480px; right: -120px; top: -80px;
  background: radial-gradient(circle, rgba(224, 167, 46, 0.16), transparent 70%);
}
.hero-glow-2 {
  width: 380px; height: 380px; left: -140px; bottom: -120px;
  background: radial-gradient(circle, rgba(224, 167, 46, 0.08), transparent 70%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.hero .gold-rule { margin: 30px 0 24px; }
.hero-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.hero-lead {
  max-width: 560px;
  color: var(--ink-soft);
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* phone mockup — pure CSS/SVG */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-ring {
  position: absolute; inset: 50% auto auto 50%;
  width: 520px; height: 520px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--hairline-soft);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring::before {
  content: ""; position: absolute; inset: 42px;
  border: 1px dashed rgba(224, 167, 46, 0.14);
  border-radius: 50%;
}
.hero-ring::after {
  content: ""; position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  top: 8%; left: 78%;
  box-shadow: 0 0 18px 4px rgba(224, 167, 46, 0.45);
}
.phone {
  position: relative; z-index: 2;
  width: min(300px, 78vw);
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, #282316 0%, #121215 55%, #201c11 100%);
  border: 1px solid rgba(224, 167, 46, 0.35);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.85),
    0 0 60px -18px rgba(224, 167, 46, 0.35),
    inset 0 0 0 1px rgba(0, 0, 0, 0.7);
  animation: phone-float 7s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 24px;
  background: #050506;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  border-radius: 34px;
  background:
    radial-gradient(220px 200px at 50% 0%, rgba(224, 167, 46, 0.14), transparent 70%),
    linear-gradient(180deg, #131316 0%, #0e0e10 100%);
  border: 1px solid rgba(224, 167, 46, 0.14);
  padding: 52px 18px 26px;
  overflow: hidden;
}
.phone-brand {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  color: var(--gold-bright);
}
.phone-bee { width: 22px; height: 22px; }
.phone-logo {
  width: 26px; height: 26px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(224, 167, 46, 0.3);
}
.phone-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.phone-tile {
  aspect-ratio: 1 / 1.12;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(224, 167, 46, 0.1), rgba(224, 167, 46, 0.02));
  border: 1px solid rgba(224, 167, 46, 0.16);
}
.phone-tile svg { width: 24px; height: 24px; color: var(--gold-bright); }
.phone-tile span {
  font-size: 8.5px; letter-spacing: 0.04em; color: var(--muted); text-align: center;
}
.phone-tile-bee { background: var(--gold-grad); border-color: transparent; }
.tile-bee { width: 34px !important; height: 34px !important; filter: brightness(0.22); }

/* ---------- generic sections ---------- */
.section { padding: 104px 0; position: relative; }
main > .section + .section:not(.section-panel) {
  border-top: 1px solid var(--hairline-soft);
}
.section-panel {
  background:
    var(--hex-pattern),
    linear-gradient(180deg, var(--bg-2) 0%, var(--panel) 100%);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 64px;
  align-items: center;
}
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 600px; }
.mission-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  background:
    radial-gradient(340px 240px at 85% -10%, rgba(224, 167, 46, 0.16), transparent 70%),
    linear-gradient(165deg, #1c1b15 0%, #131316 100%);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.mission-card::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid var(--hairline-soft);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.mission-bee { width: 54px; height: 54px; margin-bottom: 22px; }
.mission-label {
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.mission-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--gold-pale);
}

/* ---------- ecosystem ---------- */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.eco-card {
  position: relative;
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  background: linear-gradient(170deg, rgba(224, 167, 46, 0.055) 0%, rgba(23, 23, 27, 0.6) 45%), var(--card);
  border: 1px solid var(--hairline-soft);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.eco-card::after {
  content: ""; position: absolute; left: 26px; right: 26px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 167, 46, 0.55), transparent);
  opacity: 0; transition: opacity 0.35s ease;
}
.eco-card:hover {
  transform: translateY(-7px);
  border-color: var(--hairline);
  box-shadow: 0 26px 50px -24px rgba(0, 0, 0, 0.9), 0 0 40px -22px rgba(224, 167, 46, 0.5);
}
.eco-card:hover::after { opacity: 1; }
.eco-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(224, 167, 46, 0.16), rgba(224, 167, 46, 0.04));
  border: 1px solid var(--hairline);
  margin-bottom: 22px;
  transition: transform 0.35s ease;
}
.eco-card:hover .eco-icon { transform: scale(1.08) rotate(-3deg); }
.eco-icon svg { width: 26px; height: 26px; color: var(--gold-bright); }
.eco-name {
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.eco-tag {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eco-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

/* ---------- beemonie ---------- */
.beemonie { overflow: hidden; }
.beemonie-glow {
  position: absolute; right: -180px; top: 15%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 167, 46, 0.12), transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}
.beemonie-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: center;
  position: relative;
}
.beemonie-tagline {
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  font-size: 0.92rem; color: var(--gold-bright);
  margin-bottom: 18px;
}
.beemonie-copy > p { color: var(--ink-soft); margin-bottom: 16px; max-width: 600px; }
.feature-list { margin-top: 34px; display: grid; gap: 16px; }
.feature-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--hairline-soft);
  background: rgba(224, 167, 46, 0.03);
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}
.feature-list li:hover {
  border-color: var(--hairline);
  background: rgba(224, 167, 46, 0.07);
  transform: translateX(6px);
}
.feature-icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(224, 167, 46, 0.18), rgba(224, 167, 46, 0.05));
  border: 1px solid var(--hairline);
}
.feature-icon svg { width: 21px; height: 21px; color: var(--gold-bright); }
.feature-body { font-size: 0.95rem; color: var(--muted); }
.feature-body strong { color: var(--ink); font-weight: 600; }

.beemonie-visual { display: flex; flex-direction: column; align-items: center; }
.shield-stage {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 1;
  display: grid; place-items: center;
}
.shield-rings {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--hairline-soft);
}
.shield-rings::before, .shield-rings::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1px dashed rgba(224, 167, 46, 0.18);
}
.shield-rings::before { inset: 34px; }
.shield-rings::after { inset: 72px; border-style: solid; border-color: var(--hairline-soft); }
.shield-art {
  width: 58%;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 34px rgba(224, 167, 46, 0.28));
  animation: shield-breathe 6s ease-in-out infinite;
}
@keyframes shield-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.015); }
}

.regulatory-note {
  margin-top: 54px;
  padding: 20px 26px;
  border-left: 2px solid var(--hairline);
  background: rgba(224, 167, 46, 0.035);
  border-radius: 0 12px 12px 0;
  font-size: 0.84rem; /* 13.4px — keep >=13px for compliance readability */
  line-height: 1.7;
  color: #b3b0a6;
  max-width: 860px;
}
.regulatory-note strong {
  display: block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ---------- built around the user ---------- */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 56px;
}
.chip {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid var(--hairline-soft);
  background: rgba(224, 167, 46, 0.035);
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.chip:hover {
  border-color: var(--gold);
  background: rgba(224, 167, 46, 0.1);
  color: var(--gold-pale);
  transform: translateY(-3px);
}
.chip svg { width: 19px; height: 19px; flex: none; color: var(--gold); }

.proposition {
  text-align: center;
  padding: 44px 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(480px 200px at 50% 0%, rgba(224, 167, 46, 0.14), transparent 75%),
    linear-gradient(165deg, #191812 0%, #121215 100%);
  border: 1px solid var(--hairline);
  max-width: 760px;
  margin: 0 auto;
}
.proposition-label {
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 12px;
}
.proposition-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.1em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- business ---------- */
.business-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}
.business-copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.02rem; }

/* ---------- why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}
.why-card {
  grid-column: span 2;
  border-radius: var(--radius);
  padding: 34px 28px;
  background: linear-gradient(170deg, rgba(224, 167, 46, 0.05), rgba(23, 23, 27, 0.55)), var(--card);
  border: 1px solid var(--hairline-soft);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.why-card:nth-child(4) { grid-column: 2 / span 2; }
.why-card:nth-child(5) { grid-column: span 2; }
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--hairline);
  box-shadow: 0 24px 46px -24px rgba(0, 0, 0, 0.9), 0 0 36px -20px rgba(224, 167, 46, 0.45);
}
.why-icon { width: 30px; height: 30px; color: var(--gold-bright); margin-bottom: 20px; }
.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 12px;
}
.why-card p { font-size: 0.95rem; color: var(--muted); }

/* ---------- partnerships ---------- */
.partnerships-band {
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 74px clamp(28px, 6vw, 90px);
  background:
    var(--hex-pattern),
    radial-gradient(720px 300px at 50% -60px, rgba(224, 167, 46, 0.16), transparent 70%),
    linear-gradient(170deg, #171612 0%, #111114 100%);
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.partnerships-copy {
  max-width: 780px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
}

/* ---------- contact ---------- */
.contact {
  background:
    radial-gradient(900px 480px at 12% 10%, rgba(224, 167, 46, 0.07), transparent 62%),
    var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}
.contact-info > p { color: var(--ink-soft); max-width: 480px; }
.contact-list { margin-top: 36px; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-ic {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background: rgba(224, 167, 46, 0.06);
}
.contact-ic svg { width: 20px; height: 20px; color: var(--gold-bright); }
.contact-label {
  display: block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-link { color: var(--gold-bright); border-bottom: 1px solid transparent; transition: border-color 0.25s; }
.contact-link:hover { border-bottom-color: var(--gold); }
.pending-info { color: var(--faint); font-style: italic; }

.contact-form-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  background:
    radial-gradient(420px 220px at 90% -40px, rgba(224, 167, 46, 0.1), transparent 70%),
    linear-gradient(170deg, #161510 0%, #121215 100%);
  padding: clamp(28px, 4vw, 46px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.form-field input, .form-field textarea {
  width: 100%;
  background: rgba(12, 12, 14, 0.7);
  border: 1px solid var(--hairline-soft);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 167, 46, 0.14);
}
.form-field.has-error input, .form-field.has-error textarea { border-color: var(--danger); }
.field-error {
  display: none;
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 7px;
}
.form-field.has-error .field-error { display: block; }

#contactSubmit { margin-top: 8px; position: relative; }
.btn-spinner {
  display: none;
  width: 17px; height: 17px;
  border: 2px solid rgba(25, 18, 4, 0.35);
  border-top-color: #191204;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.contact-form.is-submitting #contactSubmit { opacity: 0.75; pointer-events: none; }
.contact-form.is-submitting .btn-spinner { display: inline-block; }

.form-status[hidden] { display: none; }
.form-status {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 18px;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
}
.form-status svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.form-status-success {
  color: var(--success);
  background: rgba(168, 198, 134, 0.08);
  border: 1px solid rgba(168, 198, 134, 0.25);
}
.form-status-error {
  display: block;
  color: var(--danger);
  background: rgba(226, 131, 109, 0.07);
  border: 1px solid rgba(226, 131, 109, 0.28);
}
.form-status-error a { color: var(--gold-bright); text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer {
  background:
    var(--hex-pattern),
    linear-gradient(180deg, #0e0e10 0%, #0a0a0c 100%);
  border-top: 1px solid var(--hairline-soft);
  padding: 78px 0 34px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  gap: 64px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--hairline-soft);
}
.footer-tagline {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}
.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-col a:hover { color: var(--gold-bright); padding-left: 4px; }
.footer-app-title { margin-top: 30px; }
.footer-app-note { font-size: 0.82rem; color: var(--faint); line-height: 1.65; max-width: 240px; }

/*
  Social media icon row — structurally present but hidden until the client
  provides the official profile URLs (no dead links allowed on production).
*/
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row-hidden { display: none; }
.social-link {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: rgba(224, 167, 46, 0.05);
  color: var(--gold-bright);
  transition: background-color 0.25s, border-color 0.25s, transform 0.25s;
}
.social-link:hover { background: rgba(224, 167, 46, 0.14); border-color: var(--gold); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

/*
  Store badges are structurally present but hidden until the public
  Google Play / App Store listings are live (client directive).
*/
.store-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.store-badges-hidden { display: none; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background: rgba(224, 167, 46, 0.05);
  color: var(--ink-soft);
  max-width: 210px;
  transition: border-color 0.25s, background-color 0.25s;
}
.store-badge:hover { border-color: var(--gold); background: rgba(224, 167, 46, 0.1); }
.store-badge svg { width: 24px; height: 24px; color: var(--gold-bright); }
.store-badge span { display: flex; flex-direction: column; line-height: 1.25; font-weight: 600; font-size: 0.92rem; }
.store-badge small { font-size: 0.66rem; font-weight: 400; color: var(--muted); letter-spacing: 0.06em; }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 30px;
  font-size: 0.82rem;
  color: var(--faint);
}
.footer-legal-inline { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal-inline a { color: var(--faint); transition: color 0.25s; }
.footer-legal-inline a:hover { color: var(--gold-bright); }

/* ---------- legal pages ---------- */
.legal-body { background: #f6f3ec; color: #262218; }
.legal-header {
  background:
    linear-gradient(180deg, #0f0f12 0%, #0e0e10 100%);
  border-bottom: 2px solid var(--gold);
  padding: 20px 0;
}
.legal-header .header-flex {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.legal-back {
  font-size: 0.88rem; font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 9px 20px;
  transition: background-color 0.25s, border-color 0.25s;
}
.legal-back:hover { background: rgba(224, 167, 46, 0.12); border-color: var(--gold); }
.legal-hero {
  background:
    radial-gradient(700px 260px at 50% -80px, rgba(224, 167, 46, 0.2), transparent 70%),
    linear-gradient(180deg, #121215, #0e0e10);
  color: var(--ink);
  text-align: center;
  padding: 64px 0 58px;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: 0.02em;
}
.legal-hero .eyebrow { margin-bottom: 14px; }
.legal-hero .doc-meta { margin-top: 14px; color: var(--muted); font-size: 0.88rem; }
.legal-main { padding: 56px 0 90px; }
.legal-article {
  max-width: 800px;
  margin: 0 auto;
  background: #fffdf8;
  border: 1px solid #e4dcc8;
  border-radius: 16px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 24px 60px -40px rgba(38, 30, 10, 0.35);
}
.draft-banner {
  display: flex; align-items: center; gap: 12px;
  background: #fdf3d7;
  border: 1px solid #e4c56a;
  border-left: 5px solid #c9a227;
  color: #6d5410;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 40px;
}
.legal-article h2 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.28rem;
  color: #1d1810;
  margin: 34px 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ece4d0;
}
.legal-article h2:first-of-type { margin-top: 0; }
.legal-article .pending-body {
  color: #a49a82;
  font-style: italic;
  font-size: 0.92rem;
}
.legal-article .doc-dates {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  background: #faf6ea;
  border: 1px solid #e8dfc8;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 36px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6d5f3d;
}
.legal-article p,
.legal-article li {
  color: #3a3325;
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal-article p { margin: 0 0 14px; }
.legal-article ul,
.legal-article ol {
  margin: 0 0 16px;
  padding-left: 26px;
}
.legal-article li { margin-bottom: 7px; }
.legal-article h3 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
  color: #2a2314;
  margin: 24px 0 8px;
}
.legal-article a { color: #9a7414; text-decoration: underline; text-underline-offset: 3px; }
.legal-article a:hover { color: #c9a227; }
.legal-table-wrap { overflow-x: auto; margin: 18px 0 24px; }
.legal-article table {
  border-collapse: collapse;
  width: 100%;
  min-width: 460px;
  font-size: 0.88rem;
}
.legal-article th,
.legal-article td {
  border: 1px solid #e0d7c0;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.legal-article th {
  background: #f6efdd;
  font-weight: 700;
  color: #2a2314;
}
.legal-article .contact-block {
  background: #faf6ea;
  border: 1px solid #e8dfc8;
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 34px;
}
.legal-article .contact-block p { margin-bottom: 6px; }
.legal-article .contact-block p:last-child { margin-bottom: 0; }
.legal-footer {
  background: #0e0e10;
  color: var(--faint);
  text-align: center;
  font-size: 0.82rem;
  padding: 26px 0;
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal.is-visible { opacity: 1; transform: none; }
/* fallback when JS is disabled */
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 1020px) {
  .eco-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .why-card, .why-card:nth-child(4), .why-card:nth-child(5) { grid-column: auto; }
  .hero-inner { gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
  .business-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-card { max-width: 560px; }
}

/* ============================================================
   RESPONSIVE — mobile
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 66px; }
  .container { width: min(1180px, 100% - 40px); }
  .section { padding: 76px 0; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(12, 12, 14, 0.98);
    border-bottom: 1px solid var(--hairline-soft);
    padding: 10px 24px 28px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }
  .main-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav .nav-link {
    display: block;
    padding: 14px 4px;
    font-size: 1.02rem;
    border-bottom: 1px solid rgba(224, 167, 46, 0.08);
  }
  .nav-link::after { display: none; }
  .nav-cta-item { margin-top: 16px; }
  .nav-cta-item .btn { width: 100%; }

  .hero { padding: calc(var(--header-h) + 48px) 0 68px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: 2; }
  .hero-ring { width: 380px; height: 380px; }
  .hero-actions .btn { flex: 1 1 auto; }

  .eco-grid { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-cols { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .beemonie-grid { grid-template-columns: 1fr; gap: 48px; }
  .beemonie-visual { order: -1; }
  .shield-stage { width: min(260px, 70vw); }
  .regulatory-note { margin-top: 40px; }
  .partnerships-band { padding: 54px 24px; }
  .section-head { margin-bottom: 40px; }
}

@media (max-width: 380px) {
  .brand-sub { display: none; }
  .phone { width: 88vw; }
}
