/* ════════════════════════════════════════════════════
   Two Brothers Freight Solutions — Static Site
   Professional dark theme · #0072ff accent
   ════════════════════════════════════════════════════ */

:root {
  --blue: #0072ff;
  --blue-600: #005ecc;
  --blue-400: #3b93ff;
  --blue-bright: #00b4ff;
  --blue-glow: rgba(0, 114, 255, 0.35);

  --bg: #000000;
  --bg-2: #060608;
  --bg-3: #030304;
  --surface: rgba(255, 255, 255, 0.018);
  --surface-2: rgba(255, 255, 255, 0.03);

  --line: rgba(255, 255, 255, 0.07);
  --line-soft: rgba(255, 255, 255, 0.045);

  --text: #f4f5f7;
  --t-300: #c9ccd3;
  --t-400: #9aa0ac;
  --t-500: #6b7280;
  --t-600: #4b5160;
  --t-700: #353b47;

  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--blue); color: #fff; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.04; }

.maxw { max-width: var(--maxw); margin: 0 auto; }
.accent { color: var(--blue); }

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #050506; }
::-webkit-scrollbar-thumb { background: #1c1f26; border-radius: 6px; border: 2px solid #050506; }
::-webkit-scrollbar-thumb:hover { background: #2a2e38; }

/* dividers */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--blue-glow), transparent);
  opacity: 0.5;
}
.hr-thin { width: 100%; height: 1px; background: var(--line-soft); }

/* eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--blue); opacity: 0.6;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* icon helper */
.ico { display: inline-flex; align-items: center; justify-content: center; }
.ico svg { width: 1em; height: 1em; display: block; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }

/* ════════════════════ HERO ════════════════════ */
.hero {
  position: relative; width: 100%; min-height: 100vh; min-height: 100svh;
  background: #000; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 96px 24px;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.16; filter: grayscale(0.2) contrast(1.05);
  transform: scale(1.04);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 10;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(0,114,255,0.10), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 45%, #000 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 11; opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 45%, #000, transparent 85%);
}
.hero__topline { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent); opacity: 0.7; z-index: 20; }
.hero__botline { position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--blue); opacity: 0.18; z-index: 20; }
.hero__inner { position: relative; z-index: 20; padding: 0 8px; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 18px; border: 1px solid rgba(0,114,255,0.25);
  background: linear-gradient(180deg, rgba(0,114,255,0.10), rgba(0,114,255,0.02));
  border-radius: 999px; margin-bottom: 42px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); animation: pulse 2.4s infinite; }
.badge span:last-child { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: #cfe2ff; }

.hero h1 {
  font-size: clamp(50px, 11vw, 104px); font-weight: 800;
  letter-spacing: -0.045em; line-height: 0.95; margin-bottom: 22px;
  background: linear-gradient(180deg, #ffffff 35%, #b9c2d2 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 22px; }
.hero__sub .l { height: 1px; width: clamp(36px, 8vw, 84px); background: linear-gradient(90deg, transparent, var(--blue)); opacity: 0.7; }
.hero__sub .l:last-child { background: linear-gradient(90deg, var(--blue), transparent); }
.hero__sub p { color: var(--blue-400); font-size: clamp(11px, 2.4vw, 13px); font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; }
.hero__tag { color: var(--t-500); font-size: clamp(11px, 2.4vw, 14px); letter-spacing: 0.16em; text-transform: uppercase; }

.hero__cta { margin-top: 52px; display: inline-flex; flex-direction: column; align-items: center; gap: 14px; background: none; border: none; cursor: pointer; }
.hero__cta .enter {
  position: relative; padding: 14px 46px; background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.2s;
  box-shadow: 0 8px 30px -8px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.hero__cta:hover .enter { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 14px 40px -8px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.25); }
.hero__cta .chev { color: var(--blue); opacity: 0.6; animation: floaty 2s var(--ease) infinite; }
.hero__corner { position: absolute; bottom: 26px; z-index: 20; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--t-700); text-transform: uppercase; }
.hero__corner.l { left: 34px; } .hero__corner.r { right: 34px; }

/* ════════════════════ Floating nav + menu ════════════════════ */
.navbtn {
  position: fixed; bottom: 26px; right: 26px; width: 54px; height: 54px;
  border-radius: 16px; background: var(--blue); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 1000;
  box-shadow: 0 12px 34px -6px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.3s var(--ease), background 0.2s;
}
.navbtn:hover { background: var(--blue-600); transform: translateY(-3px) rotate(8deg); }
.navbtn svg { width: 22px; height: 22px; }

.menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  z-index: 1030; opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu {
  position: fixed; top: 0; left: 0; height: 100%; width: 300px;
  background: linear-gradient(180deg, #0a0b0d, #060708); z-index: 1040;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(-340px); transition: transform 0.45s var(--ease);
  overflow-y: auto; box-shadow: 30px 0 80px -20px rgba(0,0,0,0.8);
}
.menu.open { transform: translateX(0); }
.menu__head { padding: 24px 26px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.menu__head .k { font-size: 11px; font-weight: 800; letter-spacing: 0.24em; color: var(--blue); text-transform: uppercase; margin-bottom: 3px; }
.menu__head .s { font-size: 11px; color: var(--t-600); letter-spacing: 0.04em; }
.menu__close { background: none; border: none; color: var(--t-500); font-size: 28px; line-height: 1; cursor: pointer; transition: color 0.2s, transform 0.3s var(--ease); }
.menu__close:hover { color: #fff; transform: rotate(90deg); }
.menu nav { padding: 14px 26px 26px; }
.menu nav a {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 15px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 14px; color: var(--t-400); transition: color 0.25s, padding 0.3s var(--ease); text-align: left;
}
.menu nav a span { color: var(--t-700); transition: transform 0.3s var(--ease), color 0.25s; }
.menu nav a:hover { color: #fff; padding-left: 10px; }
.menu nav a:hover span { color: var(--blue); transform: translateX(3px); }

/* ════════════════════ Sections ════════════════════ */
.section { position: relative; width: 100%; overflow: hidden; }
.section.bg1 { background: var(--bg); }
.section.bg2 { background: var(--bg-2); }

.sec-head { padding: 72px 32px; border-bottom: 1px solid var(--line); }
.sec-head__row { display: flex; flex-direction: column; gap: 22px; }
.sec-head h2 { font-size: clamp(32px, 5.2vw, 52px); font-weight: 800; }
.sec-head__desc { font-size: 15px; color: var(--t-400); max-width: 30rem; line-height: 1.75; }

.section .eyebrow { margin-bottom: 16px; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--line); }
.stats > div { position: relative; padding: 34px 32px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); transition: background 0.3s; }
.stats > div:hover { background: var(--surface); }
.stats .v { font-size: clamp(28px, 4vw, 36px); font-weight: 800; letter-spacing: -0.04em; background: linear-gradient(180deg, #fff, #aeb6c4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats .l { font-size: 11px; color: var(--t-500); margin-top: 6px; letter-spacing: 0.16em; text-transform: uppercase; }

/* Who we are */
.who { display: grid; grid-template-columns: 1fr; }
.who__main { padding: 84px 32px; border-right: 1px solid var(--line); }
.who__main h2 { font-size: clamp(40px, 7vw, 74px); font-weight: 800; margin-bottom: 34px; }
.who__rule { width: 44px; height: 2px; background: var(--blue); margin-bottom: 38px; box-shadow: 0 0 14px var(--blue-glow); }
.who__main p { line-height: 1.78; margin-bottom: 20px; max-width: 38rem; }
.who__main p.lead { font-size: 16.5px; color: var(--t-300); }
.who__main p.body { font-size: 14.5px; color: var(--t-500); }
.who__main strong { color: #fff; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 40px; }
.chip { padding: 6px 14px; font-size: 10.5px; font-weight: 600; border: 1px solid var(--line); color: var(--t-500); border-radius: 999px; text-transform: uppercase; letter-spacing: 0.14em; transition: all 0.25s var(--ease); }
.chip:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,114,255,0.06); transform: translateY(-2px); }
.who__ctas { display: flex; gap: 12px; margin-top: 42px; flex-wrap: wrap; }
.who__side { display: none; flex-direction: column; padding: 84px 32px; }
.who__side nav a { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 12.5px; color: var(--t-500); transition: all 0.25s var(--ease); }
.who__side nav a span { color: var(--t-700); transition: transform 0.3s var(--ease), color 0.2s; }
.who__side nav a:hover { color: #fff; padding-left: 8px; }
.who__side nav a:hover span { color: var(--blue); transform: translateX(3px); }
.who__side .teamimg { margin-top: auto; padding-top: 44px; }
.who__side .teamimg .box { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); position: relative; }
.who__side .teamimg .box::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 60px rgba(0,0,0,0.5); }
.who__side .teamimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.who__side .teamimg:hover img { transform: scale(1.05); }
.who__side .teamimg p { font-size: 10px; color: var(--t-600); margin-top: 10px; letter-spacing: 0.16em; text-transform: uppercase; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; font-size: 12px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; border-radius: 999px; transition: all 0.28s var(--ease); cursor: pointer; border: 1px solid transparent;
}
.btn svg { width: 11px; height: 11px; transition: transform 0.28s var(--ease); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 26px -10px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 14px 34px -10px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { border-color: var(--line); color: var(--t-400); background: var(--surface); }
.btn--ghost:hover { border-color: rgba(255,255,255,0.28); color: #fff; transform: translateY(-2px); }
.link-arrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--blue); transition: gap 0.25s var(--ease); }
.link-arrow svg { width: 11px; height: 11px; transition: transform 0.28s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* Image grid */
.imggrid { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
.imggrid > div { border-right: 1px solid var(--line); overflow: hidden; transition: background 0.3s; }
.imggrid > div:hover { background: var(--surface); }
.imggrid .ph { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.imggrid .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%); }
.imggrid .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.imggrid > div:hover .ph img { transform: scale(1.06); }
.imggrid .cap { padding: 32px; border-top: 1px solid var(--line); }
.imggrid .cap .t { display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--blue); margin-bottom: 13px; }
.imggrid .cap .d { font-size: 14px; color: var(--t-500); line-height: 1.75; }

/* feature row */
.featrow { display: grid; grid-template-columns: repeat(2, 1fr); }
.featrow > div { padding: 28px 32px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); display: flex; align-items: center; gap: 16px; transition: background 0.3s; }
.featrow > div:hover { background: var(--surface); }
.featrow .ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); background: rgba(0,114,255,0.08); border: 1px solid rgba(0,114,255,0.18); }
.featrow .ic svg { width: 18px; height: 18px; }
.featrow .t { font-size: 12.5px; font-weight: 700; }
.featrow .s { font-size: 11.5px; color: var(--t-500); margin-top: 2px; }

/* Split */
.split { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
.split__img { position: relative; overflow: hidden; aspect-ratio: 4/3; border-right: 1px solid var(--line); }
.split__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.split:hover .split__img img { transform: scale(1.04); }
.split__img .grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 55%); }
.split__img .lbl { position: absolute; bottom: 34px; left: 34px; }
.split__img .lbl .k { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.split__img .lbl .v { font-size: 26px; font-weight: 800; }
.split__body { padding: 52px 44px; }
.split__body .item { position: relative; border-bottom: 1px solid var(--line); padding: 0 0 30px 22px; margin-bottom: 30px; }
.split__body .item::before { content: ""; position: absolute; left: 0; top: 4px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue-glow); }
.split__body .item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.split__body .item .t { font-size: 14.5px; font-weight: 700; margin-bottom: 9px; }
.split__body .item .b { font-size: 14px; color: var(--t-500); line-height: 1.75; }

.dispwhy { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
.dispwhy__txt { padding: 52px 44px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.dispwhy__txt h3 { font-size: clamp(26px, 3.5vw, 32px); font-weight: 800; line-height: 1.18; }
.dispwhy__txt p { font-size: 14.5px; color: var(--t-500); line-height: 1.78; max-width: 30rem; }
.dispwhy__img { overflow: hidden; border-left: 1px solid var(--line); aspect-ratio: 16/9; }
.dispwhy__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.dispwhy:hover .dispwhy__img img { transform: scale(1.04); }

/* Accounting */
.acct { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
.acct__desc { padding: 58px 44px; border-right: 1px solid var(--line); }
.acct__desc p { line-height: 1.78; margin-bottom: 22px; }
.acct__desc p:first-child { font-size: 16.5px; color: var(--t-300); }
.acct__desc p:not(:first-child) { font-size: 14.5px; color: var(--t-500); }
.acct__svc { display: grid; grid-template-columns: repeat(2, 1fr); }
.acct__svc > div { position: relative; padding: 30px 32px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); transition: background 0.3s; }
.acct__svc > div::before { content: ""; position: absolute; left: 0; top: 0; width: 2px; height: 0; background: var(--blue); transition: height 0.35s var(--ease); }
.acct__svc > div:hover { background: var(--surface); }
.acct__svc > div:hover::before { height: 100%; }
.acct__svc .t { font-size: 12.5px; font-weight: 700; margin-bottom: 5px; }
.acct__svc .s { font-size: 11.5px; color: var(--t-500); line-height: 1.65; }
.metrics3 { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.metrics3 > div { padding: 36px 24px; border-right: 1px solid var(--line); text-align: center; transition: background 0.3s; }
.metrics3 > div:hover { background: var(--surface); }
.metrics3 .v { font-size: clamp(30px, 4vw, 40px); font-weight: 800; color: var(--blue); letter-spacing: -0.03em; }
.metrics3 .l { font-size: 11px; color: var(--t-500); margin-top: 6px; letter-spacing: 0.16em; text-transform: uppercase; }

/* Management */
.mgmt { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
.mgmt__desc { padding: 52px 44px; border-right: 1px solid var(--line); }
.mgmt__desc p { line-height: 1.78; margin-bottom: 22px; }
.mgmt__desc p:first-child { font-size: 16.5px; color: var(--t-300); }
.mgmt__desc p.sub { font-size: 14.5px; color: var(--t-500); }
.bar { margin-top: 10px; }
.bar .row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.bar .row .k { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--t-400); }
.bar .row .v { font-size: 12px; font-weight: 800; color: var(--blue); }
.bar .track { width: 100%; height: 5px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; margin-bottom: 16px; }
.bar .fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--blue-400)); box-shadow: 0 0 12px var(--blue-glow); transition: width 1.3s var(--ease); }
.cards2 { display: grid; grid-template-columns: 1fr; }
.cards2 > div { padding: 34px 32px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); transition: background 0.3s; }
.cards2 > div:hover { background: var(--surface); }
.cards2 .rule { width: 26px; height: 2px; background: var(--blue); margin-bottom: 18px; opacity: 0.6; transition: width 0.35s var(--ease), opacity 0.3s; }
.cards2 > div:hover .rule { width: 44px; opacity: 1; box-shadow: 0 0 12px var(--blue-glow); }
.cards2 .t { font-size: 14.5px; font-weight: 700; margin-bottom: 9px; }
.cards2 .d { font-size: 12.5px; color: var(--t-500); line-height: 1.75; }

/* Brokerage */
.brk-intro { padding: 58px 44px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr; gap: 44px; }
.brk-intro p:first-child { font-size: 16.5px; color: var(--t-300); line-height: 1.78; }
.brk-intro p:last-child { font-size: 14.5px; color: var(--t-500); line-height: 1.78; }
.brk-grid { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
.brk-grid > div { padding: 36px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 0.3s; }
.brk-grid > div:hover { background: var(--surface); }
.brk-grid .ic { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; color: var(--blue); background: rgba(0,114,255,0.08); border: 1px solid rgba(0,114,255,0.18); margin-bottom: 18px; transition: transform 0.35s var(--ease); }
.brk-grid .ic svg { width: 18px; height: 18px; }
.brk-grid > div:hover .ic { transform: translateY(-3px) scale(1.05); }
.brk-grid .t { font-size: 14.5px; font-weight: 700; margin-bottom: 9px; }
.brk-grid .d { font-size: 12.5px; color: var(--t-500); line-height: 1.75; }

/* Team */
.founders { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
.founders > div { padding: 50px 44px; border-right: 1px solid var(--line); transition: background 0.3s; }
.founders > div:hover { background: var(--surface); }
.founders .row { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 24px; }
.founders .av { width: 66px; height: 66px; border-radius: 14px; background: linear-gradient(160deg, rgba(0,114,255,0.18), rgba(0,114,255,0.04)); border: 1px solid rgba(0,114,255,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }
.founders .av span { color: var(--blue-400); font-size: 15px; font-weight: 800; letter-spacing: 0.08em; }
.founders .name { font-size: 19px; font-weight: 800; }
.founders .role { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-top: 5px; }
.founders .bio { font-size: 14.5px; color: var(--t-500); line-height: 1.78; }
.founders .foot { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.founders .foot span { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t-600); }
.founders .foot .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--t-600); }

.team { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
.team > div { padding: 42px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 0.3s; }
.team > div:hover { background: var(--surface); }
.team .row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.team .av { width: 44px; height: 44px; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.team > div:hover .av { border-color: rgba(0,114,255,0.4); background: rgba(0,114,255,0.06); }
.team .av span { font-size: 10.5px; font-weight: 800; letter-spacing: 0.04em; color: var(--t-400); transition: color 0.3s; }
.team > div:hover .av span { color: var(--blue); }
.team .name { font-size: 14.5px; font-weight: 800; }
.team .role { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--t-500); margin-top: 3px; }
.team .bio { font-size: 12.5px; color: var(--t-500); line-height: 1.75; }
.hiring { display: flex; flex-direction: column; justify-content: space-between; }
.hiring .plus { width: 44px; height: 44px; border-radius: 11px; border: 1px dashed rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 20px; color: var(--t-500); transition: all 0.3s; }
.hiring:hover .plus { border-color: var(--blue); color: var(--blue); transform: rotate(90deg); }
.values { display: grid; grid-template-columns: repeat(2, 1fr); }
.values > div { padding: 28px 32px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); transition: background 0.3s; }
.values > div:hover { background: var(--surface); }
.values .v { font-size: 15px; font-weight: 800; }
.values .s { font-size: 11px; color: var(--t-500); margin-top: 5px; }

/* Newsletter / contact */
.nl { padding: 88px 32px; border-bottom: 1px solid var(--line); }
.nl__grid { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
.nl h2 { font-size: clamp(32px, 5.2vw, 52px); font-weight: 800; margin-bottom: 26px; }
.nl p { font-size: 14.5px; color: var(--t-500); line-height: 1.78; max-width: 30rem; }
.field {
  width: 100%; padding: 16px 19px; background: var(--surface-2);
  border: 1px solid var(--line); color: #fff; font-size: 14.5px;
  border-radius: 10px; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; font-family: inherit;
}
.field::placeholder { color: var(--t-600); }
.field:focus { outline: none; border-color: var(--blue); background: rgba(0,114,255,0.04); box-shadow: 0 0 0 4px rgba(0,114,255,0.12); }
textarea.field { resize: vertical; min-height: 120px; }
.agree { display: flex; align-items: flex-start; gap: 12px; }
.agree input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }
.agree label { font-size: 11.5px; color: var(--t-500); line-height: 1.6; }
.agree a { color: var(--blue); }
.agree a:hover { text-decoration: underline; }
.form-stack > * + * { margin-top: 16px; }
.btn-block { width: 100%; justify-content: center; padding: 16px; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
.contact__form { padding: 84px 44px; border-right: 1px solid var(--line); }
.contact__form h2 { font-size: clamp(32px, 5.2vw, 52px); font-weight: 800; margin-bottom: 40px; }
.contact__info { padding: 84px 44px; display: flex; flex-direction: column; justify-content: space-between; }
.contact__info .blk { margin-bottom: 38px; }
.contact__info .k { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--t-600); margin-bottom: 10px; }
.contact__info .blk a, .contact__info .blk p { font-size: 15px; color: var(--t-400); }
.contact__info .blk a { color: #fff; transition: color 0.2s; }
.contact__info .blk a:hover { color: var(--blue); }
.contact__resp { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); }
.contact__resp .k { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--t-600); margin-bottom: 14px; }
.contact__resp .row { display: flex; align-items: center; gap: 10px; }
.contact__resp .row .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px rgba(34,197,94,0.6); animation: pulse 2.2s infinite; }
.contact__resp .row p { font-size: 12.5px; color: var(--t-500); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Footer */
footer { width: 100%; background: var(--bg-3); border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
.foot-grid > div { padding: 52px 44px; border-right: 1px solid var(--line); }
.foot-brand .k { font-size: 12px; font-weight: 800; letter-spacing: 0.2em; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; }
.foot-brand .n { font-size: 19px; font-weight: 800; margin-bottom: 18px; line-height: 1.2; }
.foot-brand .d { font-size: 12.5px; color: var(--t-500); line-height: 1.78; max-width: 25rem; }
.foot-brand .addr { font-size: 10px; color: var(--t-600); margin-top: 26px; letter-spacing: 0.14em; text-transform: uppercase; }
.foot-col .h { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--t-600); text-transform: uppercase; margin-bottom: 22px; }
.foot-col a { display: inline-flex; align-items: center; font-size: 12.5px; color: var(--t-500); margin-bottom: 13px; transition: color 0.2s, transform 0.25s var(--ease); }
.foot-col a:hover { color: var(--blue); transform: translateX(3px); }
.foot-bottom { padding: 24px 44px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.foot-bottom p { font-size: 10.5px; color: var(--t-600); }
.foot-bottom p:last-child { letter-spacing: 0.14em; text-transform: uppercase; }

/* ════════════════════ Generic / forms / legal ════════════════════ */
.page { min-height: 100vh; padding: 104px 24px 80px; position: relative; }
.page::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 50% at 50% 0%, rgba(0,114,255,0.08), transparent 70%);
}
.page--center { display: flex; flex-direction: column; align-items: center; }
.page > * { position: relative; }
.page h1.title { font-size: clamp(32px, 5.5vw, 50px); font-weight: 800; letter-spacing: -0.03em; color: var(--blue); text-align: center; }
.page .subtitle { margin-top: 18px; text-align: center; color: var(--t-400); max-width: 44rem; line-height: 1.7; }
.back-home { position: fixed; top: 22px; left: 22px; z-index: 50; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--t-400); background: var(--surface-2); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; backdrop-filter: blur(8px); transition: all 0.25s var(--ease); }
.back-home:hover { color: #fff; border-color: rgba(255,255,255,0.25); transform: translateX(-2px); }

/* Big form */
.bigform { max-width: 58rem; margin: 0 auto; width: 100%; }
.formgrid { margin-top: 52px; display: grid; grid-template-columns: 1fr; gap: 22px; background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); border: 1px solid var(--line); border-radius: 18px; padding: 36px; }
.formgrid .col2 { grid-column: 1 / -1; }
.formgrid label { display: block; font-size: 13px; font-weight: 500; color: var(--t-400); margin-bottom: 9px; letter-spacing: 0.01em; }
.inp, .sel, .ta {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  background: var(--surface-2); color: #fff; border: 1px solid var(--line);
  font-family: inherit; font-size: 14.5px; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.inp::placeholder, .ta::placeholder { color: var(--t-600); }
.inp:focus, .sel:focus, .ta:focus { outline: none; border-color: var(--blue); background: rgba(0,114,255,0.04); box-shadow: 0 0 0 4px rgba(0,114,255,0.12); }
.sel { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.sel option { background: #14161a; }
.ta { resize: vertical; min-height: 130px; }
.file-inp { width: 100%; color: var(--t-400); background: var(--surface-2); border: 1px dashed var(--line); border-radius: 10px; padding: 13px 16px; font-family: inherit; font-size: 14px; cursor: pointer; transition: border-color 0.25s; }
.file-inp:hover { border-color: var(--blue); }
.file-inp::file-selector-button { background: rgba(0,114,255,0.12); color: var(--blue-400); border: 1px solid rgba(0,114,255,0.3); border-radius: 7px; padding: 7px 14px; margin-right: 14px; font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.file-inp::file-selector-button:hover { background: rgba(0,114,255,0.2); }
.btn-pill { padding: 15px 40px; border-radius: 999px; background: var(--blue); color: #fff; font-weight: 700; font-size: 14px; letter-spacing: 0.02em; border: none; cursor: pointer; transition: all 0.28s var(--ease); box-shadow: 0 10px 30px -10px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn-pill:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 16px 38px -10px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn-pill:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.static-contact { margin-top: 36px; text-align: center; color: var(--t-500); font-size: 14px; }
.static-contact a { color: var(--blue); }
.static-contact a:hover { text-decoration: underline; }

/* Legal */
.legal { max-width: 60rem; margin: 0 auto; white-space: pre-wrap; font-size: 14px; line-height: 1.8; letter-spacing: 0.005em; color: var(--t-300); }
.legal-shell { min-height: 100vh; padding: 96px 24px 64px; }

/* Toast */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(50px);
  z-index: 9999; padding: 15px 22px; border-radius: 12px; color: #fff;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.7); opacity: 0; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  display: flex; align-items: center; gap: 18px; max-width: 90vw; font-size: 14px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.12);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { background: linear-gradient(180deg, #16a34a, #11833c); }
.toast.error { background: linear-gradient(180deg, #dc2626, #b91c1c); }
.toast button { background: none; border: none; color: #fff; font-size: 20px; line-height: 1; cursor: pointer; opacity: 0.8; }
.toast button:hover { opacity: 1; }

/* DriverScan */
.ds-note { margin: 22px auto 0; max-width: 48rem; padding: 14px 24px; border-radius: 14px; background: linear-gradient(180deg, rgba(234,179,8,0.12), rgba(234,179,8,0.04)); border: 1px solid rgba(234,179,8,0.35); color: #fcd34d; font-size: 14px; line-height: 1.6; }
.ds-intro { max-width: 56rem; margin: 64px auto 0; text-align: center; font-size: 17px; color: var(--t-300); line-height: 1.85; }
.ds-intro p { margin-bottom: 24px; }
.ds-intro .big { font-size: clamp(22px, 4vw, 26px); font-weight: 800; color: var(--blue); line-height: 1.35; }
.ds-intro .big .w { color: #fff; }
.ds-intro .accentline { color: var(--blue); font-weight: 600; font-size: 19px; }
.ds-shots { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 56rem; margin: 64px auto 0; }
.ds-shots img { border-radius: 14px; box-shadow: 0 30px 70px -20px rgba(0,0,0,0.7); width: 100%; border: 1px solid var(--line); transition: transform 0.4s var(--ease); }
.ds-shots img:hover { transform: translateY(-4px); }
.ds-feat { max-width: 64rem; margin: 80px auto 0; text-align: center; width: 100%; }
.ds-feat h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 800; color: var(--blue); margin-bottom: 30px; text-transform: uppercase; letter-spacing: -0.01em; }
.ds-feat ul { list-style: none; display: grid; grid-template-columns: 1fr; gap: 16px; }
.ds-feat li { display: flex; align-items: center; gap: 12px; text-align: left; background: var(--surface-2); padding: 18px 20px; border-radius: 12px; border: 1px solid var(--line); color: var(--t-300); font-size: 14.5px; transition: all 0.28s var(--ease); }
.ds-feat li:hover { border-color: rgba(0,114,255,0.4); transform: translateY(-3px); background: rgba(0,114,255,0.04); }
.ds-feat li::before { content: ""; flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue-glow); }
.ds-subs { max-width: 48rem; margin: 96px auto 0; text-align: center; width: 100%; }
.ds-subs h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 800; color: var(--blue); text-transform: uppercase; margin-bottom: 26px; }
.ds-subs p { color: var(--t-400); font-size: 16px; margin-bottom: 16px; line-height: 1.7; }
.ds-subs ul.bullets { color: var(--t-300); text-align: left; max-width: 42rem; margin: 0 auto 24px; padding-left: 4px; list-style: none; }
.ds-subs ul.bullets li { position: relative; padding-left: 24px; margin-bottom: 10px; line-height: 1.6; }
.ds-subs ul.bullets li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.ds-plans { display: flex; flex-direction: column; gap: 24px; align-items: stretch; margin-top: 32px; }
.ds-plan { background: linear-gradient(180deg, rgba(0,114,255,0.05), transparent); padding: 28px; border-radius: 16px; border: 1px solid rgba(0,114,255,0.35); width: 100%; max-width: 22rem; margin: 0 auto; text-align: left; transition: transform 0.3s var(--ease), border-color 0.3s; }
.ds-plan:hover { transform: translateY(-4px); border-color: var(--blue); }
.ds-plan h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.ds-plan .price { font-size: 22px; font-weight: 800; color: var(--blue); }
.ds-plan ul { list-style: none; padding: 0; color: var(--t-400); font-size: 13.5px; margin-top: 10px; }
.ds-plan ul li { padding: 4px 0; border-bottom: 1px solid var(--line-soft); }
.ds-cta { margin: 96px auto 0; max-width: 48rem; text-align: center; }
.ds-cta h2 { font-size: clamp(24px, 4vw, 30px); font-weight: 800; color: var(--blue); margin-bottom: 16px; }
.ds-cta p { color: var(--t-400); font-size: 16px; line-height: 1.7; }
.ds-download { display: inline-block; margin-top: 26px; background: var(--blue); color: #fff; font-weight: 700; padding: 14px 34px; border-radius: 999px; transition: all 0.28s var(--ease); box-shadow: 0 12px 32px -10px var(--blue-glow); }
.ds-download:hover { background: var(--blue-600); transform: translateY(-2px); }

/* Support card */
.support-card { width: 100%; max-width: 42rem; margin: 48px auto 0; background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent); padding: 34px; border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8); }
.support-card .grp { margin-bottom: 22px; }
.support-card label { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 500; color: var(--t-400); }
.support-msg { margin-top: 18px; text-align: center; font-weight: 500; font-size: 14px; }

/* Panda chat */
.panda { height: 100vh; height: 100svh; display: flex; flex-direction: column; overflow: hidden;
  background: radial-gradient(120% 80% at 20% 0%, #0a1a30 0%, #080c14 48%, #050810 100%); }
.panda__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(0,0,0,0.25); backdrop-filter: blur(8px); }
.panda__head .l { display: flex; align-items: center; gap: 13px; }
.panda__head .ava { position: relative; width: 42px; height: 42px; }
.panda__head .ava img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(6,182,212,0.45), 0 0 22px rgba(6,182,212,0.25); }
.panda__head .ava .on { position: absolute; bottom: 0; right: 0; width: 11px; height: 11px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 2px #080c14; }
.panda__head h1 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.panda__head h1 span { color: #22d3ee; }
.panda__head .sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; letter-spacing: 0.04em; }
.panda__online { display: flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 999px; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); }
.panda__online .dot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; box-shadow: 0 0 8px #34d399; animation: pulse 2.2s infinite; }
.panda__online span { color: #34d399; font-size: 11px; font-weight: 600; }
.panda__clear { background: none; border: 1px solid transparent; color: rgba(255,255,255,0.3); font-size: 12px; padding: 7px 13px; border-radius: 9px; cursor: pointer; margin-right: 8px; transition: all 0.2s; }
.panda__clear:hover { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
.panda__msgs { flex: 1; overflow-y: auto; padding: 24px 18px; display: flex; flex-direction: column; gap: 18px; }
.panda__empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 26px; text-align: center; }
.panda__empty .pic { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 4px rgba(6,182,212,0.3), 0 24px 60px -10px rgba(6,182,212,0.4); }
.panda__empty .pic img { width: 100%; height: 100%; object-fit: cover; }
.panda__empty .t1 { color: rgba(255,255,255,0.78); font-size: 17px; font-weight: 600; }
.panda__empty .t2 { color: rgba(255,255,255,0.4); font-size: 14px; max-width: 21rem; margin: 9px auto 0; line-height: 1.65; }
.panda__empty .t2 span { color: rgba(34,211,238,0.85); font-weight: 600; }
.panda__hints { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; }
.panda__hints span { padding: 8px 14px; border-radius: 999px; font-size: 12px; color: rgba(34,211,238,0.75); border: 1px solid rgba(6,182,212,0.22); background: rgba(6,182,212,0.06); }
.bubble-row { display: flex; align-items: flex-end; gap: 12px; animation: fadeUp 0.4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.bubble-row.user { justify-content: flex-end; }
.bubble-row .pa { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(6,182,212,0.4); flex-shrink: 0; }
.bubble { max-width: 74%; padding: 11px 16px; font-size: 14px; line-height: 1.6; white-space: pre-wrap; word-break: break-word; }
.bubble.user { background: linear-gradient(135deg, #06b6d4, #2563eb); color: #fff; border-radius: 18px 18px 5px 18px; box-shadow: 0 8px 24px -10px rgba(37,99,235,0.6); }
.bubble.panda { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); color: #eef1f5; border-radius: 18px 18px 18px 5px; backdrop-filter: blur(6px); }
.bubble-row .u { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #06b6d4, #2563eb); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.typing { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 13px 16px; border-radius: 18px 18px 18px 5px; }
.typing .d { width: 7px; height: 7px; border-radius: 50%; background: #22d3ee; animation: typing 1.2s infinite; }
.typing .d:nth-child(2) { animation-delay: 0.18s; } .typing .d:nth-child(3) { animation-delay: 0.36s; }
.panda__bar { padding: 14px 16px; border-top: 1px solid rgba(255,255,255,0.06); background: rgba(0,0,0,0.3); backdrop-filter: blur(8px); }
.panda__inputwrap { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 9px 9px 9px 18px; transition: all 0.2s; }
.panda__inputwrap:focus-within { border-color: rgba(6,182,212,0.5); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 4px rgba(6,182,212,0.1); }
.panda__inputwrap input { flex: 1; background: none; border: none; color: #fff; font-size: 14px; font-family: inherit; }
.panda__inputwrap input:focus { outline: none; }
.panda__inputwrap input::placeholder { color: rgba(255,255,255,0.28); }
.panda__send { width: 36px; height: 36px; border-radius: 12px; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; background: rgba(255,255,255,0.06); transition: all 0.2s; }
.panda__send.active { background: linear-gradient(135deg, #06b6d4, #3b82f6); box-shadow: 0 6px 18px -6px rgba(59,130,246,0.7); }
.panda__send svg { width: 16px; height: 16px; }
.panda__hint { text-align: center; color: rgba(255,255,255,0.2); font-size: 10.5px; margin-top: 9px; letter-spacing: 0.02em; }

/* Status pages */
.status { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 28px; padding: 120px 24px; position: relative; }
.status::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 50% at 50% 30%, rgba(0,114,255,0.1), transparent 70%); }
.status > * { position: relative; }
.status h1 { font-size: clamp(38px, 7vw, 54px); font-weight: 800; letter-spacing: -0.03em; }
.status h1.ok { color: #00ffae; } .status h1.cancel { color: #f43f5e; }
.status p { color: var(--t-300); font-size: 17px; max-width: 38rem; line-height: 1.7; }
.status p.sm { color: var(--t-400); font-size: 15px; }
.status .pill { display: inline-block; padding: 14px 34px; border-radius: 999px; font-weight: 700; transition: all 0.28s var(--ease); }
.status .pill.green { background: #00ffae; color: #00120c; box-shadow: 0 12px 34px -10px rgba(0,255,174,0.5); } .status .pill.green:hover { background: #00e69d; transform: translateY(-2px); }
.status .pill.red { background: #e11d48; color: #fff; box-shadow: 0 12px 34px -10px rgba(225,29,72,0.5); } .status .pill.red:hover { background: #f43f5e; transform: translateY(-2px); }
.status .underline { font-size: 14px; color: var(--t-400); transition: color 0.2s; }
.status .underline:hover { color: #fff; }

/* Change password card */
.cp-card { width: 100%; max-width: 27rem; margin: 28px auto 0; display: flex; flex-direction: column; gap: 18px; background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent); border: 1px solid var(--line); border-radius: 18px; padding: 32px; }

/* ════════════════════ Responsive ════════════════════ */
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .formgrid { grid-template-columns: 1fr 1fr; }
  .ds-feat ul { grid-template-columns: 1fr 1fr; }
  .ds-plans { flex-direction: row; justify-content: center; }
  .imggrid { grid-template-columns: repeat(3, 1fr); }
  .cards2 { grid-template-columns: 1fr 1fr; }
  .brk-grid { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: 1fr 1fr; }
  .founders { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  .sec-head__row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .sec-head { padding: 72px 64px; }
  .ds-shots { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: repeat(4, 1fr); }
  .foot-brand { grid-column: span 2; }
  .foot-bottom { flex-direction: row; justify-content: space-between; }
  .brk-intro { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .who { grid-template-columns: 1fr 300px; }
  .who__side { display: flex; }
  .split { grid-template-columns: 1fr 1fr; }
  .split__img { aspect-ratio: auto; }
  .dispwhy { grid-template-columns: 1fr 1fr; }
  .dispwhy__img { aspect-ratio: auto; }
  .acct { grid-template-columns: 1fr 1fr; }
  .mgmt { grid-template-columns: 1fr 2fr; }
  .team { grid-template-columns: repeat(3, 1fr); }
  .brk-grid { grid-template-columns: repeat(3, 1fr); }
  .nl__grid { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
