/* ============================================================
   BizonPerformance — Coming Soon
   ============================================================ */
:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --line: #1e1e1e;
  --text: #ffffff;
  --muted: #a3a3a3;
  --muted-2: #6b6b6b;
  --accent: #e11d2e;
  --accent-2: #b8121f;
  --eco: #7cc46b;
  --blue: #4aa3ff;
  --chrome-1: #f6f6f6;
  --chrome-2: #bcbcbc;
  --chrome-3: #7f7f7f;
  --pad: clamp(16px, 3vw, 40px);
  --sans: "Inter", "Segoe UI", Arial, sans-serif;
  --display: "Archivo Black", "Impact", "Arial Black", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body {
  height: 100%;
  height: 100dvh;
}
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; }

/* ============================================================
   Stage — full-viewport scene
   ============================================================ */
.stage {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 50% 45%, rgba(20,20,20,.9), var(--bg) 70%),
    var(--bg);
}

/* ============================================================
   Side backgrounds
   ============================================================ */
.side {
  position: absolute; top: 0; bottom: 0;
  width: 28%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.side-l { left: 0; }
.side-r { right: 0; }
.side img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.2) contrast(1.1) brightness(.85);
}
.side-l::after,
.side-r::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(5,5,5,.35) 60%, rgba(5,5,5,.95) 100%);
}
.side-r::after {
  background: linear-gradient(-90deg, transparent 0%, rgba(5,5,5,.35) 60%, rgba(5,5,5,.95) 100%);
}
.side-watermark {
  position: absolute;
  left: 5%; top: 55%;
  z-index: 2;
  transform: rotate(-90deg) translateX(0);
  transform-origin: left top;
  display: flex; flex-direction: column;
  font-family: var(--display);
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  line-height: 1.15;
  white-space: nowrap;
}
.side-tags {
  list-style: none; margin: 0; padding: 0;
  position: absolute;
  right: 6%; top: 20%;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(15px, 1.6vw, 22px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d5d5d5;
  text-align: right;
}
.side-tags li {
  padding: 8px 0;
  position: relative;
}
.side-tags li + li::before {
  content: "";
  position: absolute; right: 0; top: 0;
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25));
}

/* ============================================================
   Header topbar
   ============================================================ */
.topbar {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5,5,5,.9), rgba(5,5,5,.4));
  backdrop-filter: blur(6px);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 32px);
  padding: 14px clamp(20px, 3vw, 44px);
  min-height: 62px;
}

/* Social icons in header */
.topbar-social {
  display: inline-flex; align-items: center; gap: 4px;
}
.topbar-social a {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 4px;
  color: #d0d0d0;
  transition: color .2s ease, background .2s ease, transform .15s ease;
}
.topbar-social a:hover {
  color: #fff;
  background: rgba(225,29,46,.15);
  transform: translateY(-1px);
}
.topbar-social svg { width: 16px; height: 16px; }

/* Language switcher — polished pill */
.lang { position: relative; z-index: 20; }
.lang-current {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.lang-current:hover {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(225,29,46,.14), rgba(225,29,46,.04));
  box-shadow: 0 4px 12px -4px rgba(225,29,46,.4);
}
.lang-current .flag {
  width: 20px; height: 14px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18) inset;
  flex-shrink: 0;
}
.lang-current .lang-caret { transition: transform .2s ease; opacity: .7; }
.lang-current[aria-expanded="true"] { border-color: var(--accent); background: linear-gradient(180deg, rgba(225,29,46,.16), rgba(225,29,46,.06)); }
.lang-current[aria-expanded="true"] .lang-caret { transform: rotate(180deg); opacity: 1; }

.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 170px;
  list-style: none; margin: 0; padding: 6px;
  background: rgba(10,10,10,.96);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,.7);
  backdrop-filter: blur(10px);
  z-index: 21;
  animation: langMenuIn .18s ease-out;
}
@keyframes langMenuIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.lang-menu[hidden] { display: none; }
.lang-menu li {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px;
  color: #cfcfcf;
  cursor: pointer;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  transition: background .15s ease, color .15s ease;
}
.lang-menu li:hover { background: rgba(225,29,46,.14); color: #fff; }
.lang-menu li[aria-selected="true"] { background: rgba(225,29,46,.2); color: #fff; }
.lang-menu li[aria-selected="true"]::after {
  content: "";
  width: 6px; height: 6px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(225,29,46,.7);
}
.lang-menu .flag {
  width: 22px; height: 15px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset;
  flex-shrink: 0;
}
.brand { display: inline-flex; align-items: center; }
.brand-mark { width: 54px; height: 54px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(225,29,46,.35)); }
.topnav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 6px;
}
.topnav li { display: inline-flex; align-items: center; }
.topnav li + li::before {
  content: "";
  display: inline-block;
  width: 2px; height: 12px;
  background: var(--accent);
  margin: 0 24px 0 18px;
}
.topnav a {
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #cfcfcf;
  padding: 6px 2px;
  position: relative;
}
.topnav a:hover { color: #fff; }
.topnav a.is-active { color: #fff; }
.topnav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent);
}
.topbar-tag {
  display: flex; align-items: center; gap: 14px;
  padding-left: 28px;
  position: relative;
}
.topbar-tag .line {
  width: 42px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.topbar-tag p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8c8c8;
  line-height: 1.35;
}
.burger {
  display: none;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.burger span {
  display: block; width: 18px; height: 2px; background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px clamp(16px, 4vw, 44px) 20px;
  background: linear-gradient(180deg, #0a0a0a, #050505);
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  padding: 14px 4px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a:hover { color: #fff; }
.mobile-nav[hidden] { display: none; }
:not(.mobile-nav)[hidden] {}
.topbar .mobile-nav:not([hidden]) { display: flex; }

/* ============================================================
   Main scene
   ============================================================ */
.main {
  flex: 1;
  position: relative;
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(14px, 2vh, 32px) clamp(16px, 3vw, 40px);
  text-align: center;
  min-height: 0;
}
.tagline {
  position: absolute;
  left: clamp(20px, 3vw, 44px); top: clamp(10px, 1.5vh, 20px);
  transform: none;
  margin: 0;
  max-width: 220px;
  font-family: var(--display);
  font-size: clamp(10px, 1vh, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cfcfcf;
  line-height: 1.35;
  text-align: left;
  z-index: 4;
}

/* Crest — bull logo center */
.crest {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: clamp(6px, 1vh, 16px);
}
.crest-logo {
  width: clamp(140px, 22vmin, 320px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(225,29,46,.28));
}

/* Title — chrome */
.title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 10vmin, 8rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 clamp(8px, 1.2vh, 16px);
  line-height: 0.9;
  background:
    linear-gradient(180deg,
      var(--chrome-1) 0%,
      var(--chrome-2) 45%,
      var(--chrome-3) 55%,
      var(--chrome-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 3px 0 rgba(0,0,0,.35))
    drop-shadow(0 12px 24px rgba(0,0,0,.5));
}

/* Subtitle with red ticks */
.subtitle {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: clamp(10px, 1.4vmin, 14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #cfcfcf;
  margin: 0 0 clamp(18px, 3.5vh, 46px);
  font-weight: 700;
}
.subtitle .tick {
  display: inline-block;
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
  position: relative;
}
.subtitle .tick:last-child {
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Services row */
.services {
  list-style: none; margin: 0 0 clamp(16px, 2.5vh, 34px); padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 180px));
  gap: clamp(10px, 2vw, 28px);
}
.serv {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(6px, 1vh, 12px);
}
.serv-ico {
  width: clamp(52px, 8vmin, 72px);
  height: clamp(52px, 8vmin, 72px);
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  color: #e0e0e0;
  display: grid; place-items: center;
  position: relative;
}
.serv-ico::after {
  content: "";
  position: absolute; left: 8px; right: 8px; bottom: -3px;
  height: 6px;
  background: radial-gradient(ellipse at center, rgba(225,29,46,.35), transparent 70%);
  filter: blur(3px);
}
.serv-ico svg { width: 55%; height: 55%; }
.serv-ico-eco { color: var(--eco); border-color: rgba(124,196,107,.4); background: rgba(124,196,107,.06); }
.serv-ico-eco::after { background: radial-gradient(ellipse at center, rgba(124,196,107,.35), transparent 70%); }
.serv-ico-blue { color: var(--blue); border-color: rgba(74,163,255,.4); background: rgba(74,163,255,.06); }
.serv-ico-blue::after { background: radial-gradient(ellipse at center, rgba(74,163,255,.35), transparent 70%); }

/* Photo icon variant — realistic PNG fills entire card */
.serv-ico-photo {
  padding: 0;
  overflow: hidden;
  background: #050505;
  border-color: rgba(255,255,255,.16);
}
.serv-ico-photo picture,
.serv-ico-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}
.serv h3 {
  margin: 2px 0 0;
  font-family: var(--display);
  font-size: clamp(12px, 1.6vmin, 15px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.serv p {
  margin: 0;
  font-size: clamp(10px, 1.2vmin, 11.5px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}

/* Lead paragraph */
.lead {
  max-width: 720px;
  margin: 0;
  font-size: clamp(11.5px, 1.5vmin, 14px);
  color: #b8b8b8;
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: clamp(10px, 1.5vh, 22px);
}
.lead b { color: #fff; font-weight: 700; }

/* ============================================================
   Footer
   ============================================================ */
.foot {
  position: relative;
  z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: clamp(12px, 1.8vh, 22px) clamp(20px, 3vw, 44px);
  border-top: 1px solid var(--line);
  background: linear-gradient(0deg, rgba(5,5,5,.9), rgba(5,5,5,.5));
  backdrop-filter: blur(6px);
}
.foot-l {
  display: flex; align-items: center; gap: 40px;
}
.foot-block {
  position: relative; padding-left: 32px;
}
.foot-block::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px;
  color: var(--accent);
  mask: no-repeat center/contain;
  -webkit-mask: no-repeat center/contain;
  background: var(--accent);
}
.foot-block-phone::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.9v3a2 2 0 01-2.2 2 19.8 19.8 0 01-8.6-3.1 19.5 19.5 0 01-6-6A19.8 19.8 0 012 4.2 2 2 0 014 2h3a2 2 0 012 1.7c.1.9.3 1.8.6 2.6a2 2 0 01-.5 2.1L7.9 9.7a16 16 0 006 6l1.3-1.3a2 2 0 012.1-.4c.8.3 1.7.5 2.6.6a2 2 0 011.7 2z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.9v3a2 2 0 01-2.2 2 19.8 19.8 0 01-8.6-3.1 19.5 19.5 0 01-6-6A19.8 19.8 0 012 4.2 2 2 0 014 2h3a2 2 0 012 1.7c.1.9.3 1.8.6 2.6a2 2 0 01-.5 2.1L7.9 9.7a16 16 0 006 6l1.3-1.3a2 2 0 012.1-.4c.8.3 1.7.5 2.6.6a2 2 0 011.7 2z'/></svg>");
}
.foot-block-email::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='4' width='20' height='16' rx='2'/><path d='M2 7l10 6 10-6'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='4' width='20' height='16' rx='2'/><path d='M2 7l10 6 10-6'/></svg>");
}
/* WhatsApp uses inline SVG (2-color brand mark) instead of mask ::before */
.foot-block-whatsapp {
  padding-left: 32px;
  color: inherit;
  cursor: pointer;
  transition: transform .15s ease;
}
.foot-block-whatsapp::before { display: none; }
.foot-block-whatsapp:hover { transform: translateY(-1px); }
.foot-block-whatsapp:hover .foot-val { color: #25D366; }
.foot-brand-svg {
  position: absolute; left: 0; top: 2px;
  width: 24px; height: 24px;
  display: inline-block;
  filter: drop-shadow(0 2px 6px rgba(37,211,102,.35));
}
.foot-lbl {
  margin: 0 0 2px;
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--muted-2);
  font-weight: 700;
}
.foot-val {
  margin: 0;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #fff;
}
.foot-val a:hover { color: var(--accent); }
.foot-r {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #cfcfcf;
  white-space: nowrap;
}
.foot-r .x {
  display: inline-block;
  width: 12px; height: 12px;
  position: relative;
}
.foot-r .x::before,
.foot-r .x::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 1.5px;
  background: var(--accent);
}
.foot-r .x::before { transform: translate(-50%,-50%) rotate(45deg); }
.foot-r .x::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
  .side { width: 22%; }
  .side-tags { font-size: clamp(13px, 1.4vw, 18px); }
  .services { grid-template-columns: repeat(4, minmax(120px, 160px)); }
}

@media (max-width: 900px) {
  .side { width: 15%; }
  .side img { filter: grayscale(.35) brightness(.55); }
  .side-l::after {
    background: linear-gradient(90deg, transparent 0%, rgba(5,5,5,.7) 40%, rgba(5,5,5,.98) 100%);
  }
  .side-r::after {
    background: linear-gradient(-90deg, transparent 0%, rgba(5,5,5,.7) 40%, rgba(5,5,5,.98) 100%);
  }
  .side-watermark { font-size: 9px; letter-spacing: 0.32em; }
  .side-tags { top: 40%; font-size: 11px; letter-spacing: 0.1em; }

  .topbar-inner { justify-content: flex-end; padding: 10px 18px; }
  .topbar-tag { padding-left: 0; }

  .tagline { max-width: 160px; font-size: 9.5px; letter-spacing: 0.18em; }

  .services { grid-template-columns: repeat(2, 1fr); max-width: 420px; gap: 16px 14px; }
}

@media (max-width: 640px) {
  .side { width: 10%; opacity: .35; }
  .side-watermark, .side-tags { display: none; }
  .tagline { display: none; }

  .stage {
    background:
      radial-gradient(800px 500px at 50% 30%, rgba(20,20,20,.7), var(--bg) 70%),
      var(--bg);
  }

  .topbar-inner { padding: 8px 14px; min-height: 42px; }
  .topbar-tag { padding-left: 0; }
  .topbar-tag .line { width: 24px; }
  .topbar-tag p { font-size: 9.5px; letter-spacing: 0.18em; }

  .main { padding: 6px 14px; }
  .crest { margin-bottom: 8px; }
  .crest-logo { width: clamp(110px, 22vmin, 170px); }

  .title { font-size: clamp(1.9rem, 11vmin, 3.4rem); }
  .subtitle { font-size: 9.5px; letter-spacing: 0.18em; gap: 6px; }
  .subtitle .tick { width: 14px; }

  .services { grid-template-columns: repeat(2, 1fr); max-width: 300px; gap: 10px 10px; }
  .serv-ico { width: clamp(42px, 11vmin, 54px); height: clamp(42px, 11vmin, 54px); }
  .serv h3 { font-size: 11.5px; letter-spacing: 0.14em; }
  .serv p { font-size: 9.5px; letter-spacing: 0.08em; line-height: 1.35; }

  .lead { font-size: 10.5px; padding-top: 8px; line-height: 1.5; }

  .foot {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 14px 12px;
  }
  .foot-l {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .foot-block { padding-left: 26px; }
  .foot-block::before { top: 2px; width: 16px; height: 16px; }
  .foot-lbl { font-size: 9px; }
  .foot-val { font-size: 11.5px; }
  .foot-r {
    font-size: 9px;
    letter-spacing: 0.18em;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .foot-r .x { width: 10px; height: 10px; }
}

/* Landscape/portrait very short viewport — allow scroll safety net */
@media (max-height: 620px) and (max-width: 900px) {
  body { overflow-y: auto; }
  .stage { height: auto; min-height: 100dvh; overflow: visible; }
}
