/* ===================================================================
   SkyStructure — Home page styles
   =================================================================== */

:root {
  --navy-900: #15120d;
  --navy-800: #1e1a13;
  --navy-700: #2a241a;
  --navy-600: #362e21;
  --blue-500: #d99a45;
  --blue-600: #c1842f;
  --ink: #221d16;
  --slate-600: #6b6256;
  --slate-400: #9a9183;
  --line: rgba(255, 255, 255, 0.10);
  --paper: #f2ece1;
  --white: #ffffff;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 6px;
  --shadow-card: 0 30px 60px -25px rgba(28, 20, 10, 0.5);
  --container: 1200px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; overscroll-behavior-x: none; background: #15120d; scrollbar-width: none; -ms-overflow-style: none; }
/* fully hide the scrollbar (scrolling still works) */
::-webkit-scrollbar { width: 0; height: 0; display: none; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn--primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(47, 107, 255, 0.7);
}
.btn--primary:hover { background: var(--blue-600); transform: translateY(-1px); }
.btn--lg { padding: 14px 34px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 27, 53, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(0, 0, 0, 0.8);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.logo__mark { color: var(--white); display: inline-flex; }
.logo__img { height: 30px; width: auto; display: block; }
.logo__text {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 1.16rem;
  text-transform: uppercase;
  color: var(--white);
}
.logo__text strong { color: var(--blue-500); font-weight: 800; letter-spacing: 0.12em; }

.nav__list { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 6px 0;
  position: relative;
  transition: color .2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue-500);
  transition: width .25s ease;
}
.nav__link:hover { color: var(--white); }
.nav__link.is-active { color: var(--white); }
.nav__link.is-active::after, .nav__link:hover::after { width: 100%; }

/* Services dropdown */
.nav__item--has-menu { position: relative; }
.nav__toggle-menu {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  line-height: 1;
}
.nav__chev { transition: transform .25s ease; }
.nav__item--has-menu.is-open .nav__chev { transform: rotate(180deg); }
.nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 188px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 20;
}
.nav__item--has-menu.is-open .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__menu-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: rgba(255,255,255,.82);
  transition: background .18s ease, color .18s ease;
}
.nav__menu-link:hover { background: rgba(255,255,255,.07); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 46px);
  background: var(--navy-900);
  color: var(--white);
}
/* clip the background image to the hero without clipping the overlapping panels */
.hero__media, .hero__overlay { clip-path: inset(0); }
.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21,18,13,.18) 0%, rgba(21,18,13,.34) 55%, rgba(21,18,13,.82) 100%),
    url("../assets/hero-web.jpg") center 40%/cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(21,18,13,.9) 0%, rgba(21,18,13,.58) 32%, rgba(21,18,13,.2) 62%, rgba(21,18,13,.05) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.hero__badge-dot { color: var(--blue-500); }
.hero__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.022em;
  margin: 0 0 18px;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
}
.hero__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.hero__avatars { display: flex; }
.hero__avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--navy-900);
  margin-left: -10px;
  position: relative;
  transition: transform .25s ease;
}
.hero__avatars img:first-child { margin-left: 0; }
.hero__avatars img:hover { transform: translateY(-4px) scale(1.14); z-index: 2; }
.hero__social-text { font-size: 0.9rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* ---------- Overlapping panels ---------- */
.panels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 0;
  align-items: center;
  transform: translateY(60px);
  margin-top: -60px;
}
.panel {
  background: linear-gradient(170deg, var(--navy-700), var(--navy-800));
  color: var(--white);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.panel--about { background: linear-gradient(170deg, var(--navy-700), var(--navy-800)); border-radius: var(--radius) 0 0 var(--radius); }
.panel--promo { background: linear-gradient(170deg, var(--navy-700), var(--navy-800)); border-radius: 0 var(--radius) var(--radius) 0; min-height: 557px; }
.process { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 24px; flex: 1; align-content: space-between; }
.process li { display: flex; gap: 14px; align-items: flex-start; }
.process__n {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 700; font-size: 0.9rem;
  color: var(--blue-500);
  background: rgba(217,154,69,.12);
  border: 1px solid rgba(217,154,69,.32);
}
.process li div { font-size: 0.92rem; line-height: 1.45; color: rgba(255,255,255,.72); }
.process li b { display: block; color: var(--white); font-weight: 600; font-size: 1rem; margin-bottom: 3px; }
.panel__cta { align-self: center; gap: 8px; margin-top: 26px; }
.promo__tiers {
  list-style: none;
  margin: 4px 0 28px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.promo__tiers li {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255,255,255,.72);
  padding-left: 16px;
  border-left: 2px solid var(--blue-500);
}
.promo__tiers li span {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}
.panel--expertise {
  background: linear-gradient(180deg, #3c3326, var(--navy-600));
  padding-block: 44px;
  min-height: 540px;
  border-radius: var(--radius);
  box-shadow: 0 44px 84px -30px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.08);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.panel--expertise::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
}

/* "pop & grow" hover */
.panels .panel {
  position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.panels .panel.is-visible:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 46px 80px -32px rgba(4, 12, 30, 0.78);
  z-index: 6;
}

.panel__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 20px;
}
.panel__text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 28px;
}
.panel__figure { margin: 0; overflow: hidden; border-radius: var(--radius); height: 250px; flex: none; border: 1px solid rgba(255,255,255,.08); }
.panel__figure img { width: 100%; height: 100%; object-fit: cover; }

/* Expertise grid */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
  flex: 1;
  align-content: space-between;
}
.expertise { transition: transform .3s ease; }
.expertise:hover { transform: translateY(-5px); }
.expertise:hover .expertise__icon { transform: scale(1.15); }
.expertise__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(217,154,69,.12);
  border: 1px solid rgba(217,154,69,.3);
  color: var(--blue-500);
  margin-bottom: 16px;
  transition: transform .3s ease, background .3s ease;
}
.expertise:hover .expertise__icon { background: rgba(217,154,69,.2); }
.expertise__title { font-size: 1.05rem; font-weight: 600; margin: 0 0 8px; }
.expertise__text { font-size: 0.86rem; line-height: 1.6; color: rgba(255, 255, 255, 0.64); margin: 0; }

/* Projects */
.project {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  flex: 1;
  min-height: 195px;
}
.project:last-child { margin-bottom: 0; }
.project img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.project:hover img { transform: scale(1.06); }
.project__label {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(10,27,53,.92));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 22px 16px 12px;
}

/* ---------- Company Overview ---------- */
.overview {
  background: var(--paper);
  padding: 72px 0 70px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0 0 18px;
  color: var(--ink);
}
.section-title strong { font-weight: 700; }
.overview__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-600);
  margin: 0 0 14px;
}
.overview__heading {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin: 0 0 44px;
  color: var(--ink);
}
/* ---- Bento grid ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 176px;
  gap: 16px;
}
.bento__card {
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.bento__feature {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(165deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  justify-content: space-between;
  border: 1px solid rgba(222,180,120,.22);
  box-shadow: 0 34px 64px -34px rgba(0,0,0,.55);
}
.bento__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 14px;
}
.bento__text {
  color: rgba(255,255,255,.74);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 42ch;
}
.bento__link {
  margin-top: 22px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-500);
  font-weight: 600;
  font-size: 0.95rem;
}
.bento__link svg { transition: transform .25s ease; }
.bento__link:hover svg { transform: translateX(4px); }
.bento__stat {
  background: var(--white);
  border: 1px solid #e7e0d3;
  justify-content: center;
  box-shadow: 0 20px 42px -32px rgba(40,30,15,.45);
}
.bento__stat .stat__value,
.bento__stat .bento__big {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.bento__stat-label {
  margin-top: 8px;
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 500;
}
.bento__photo {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e7e0d3;
  margin: 0;
}
.bento__photo img { width: 100%; height: 100%; object-fit: cover; }
.bento__stat:hover, .bento__photo:hover, .bento__feature:hover { transform: translateY(-4px); }
@media (max-width: 760px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .bento__feature { grid-column: span 2; grid-row: span 2; }
  .bento__photo { grid-column: span 2; grid-row: span 1; height: 200px; }
}

/* ---------- Glass utility ---------- */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.6);
}

/* ---------- Showcase (cards on white) ---------- */
.showcase {
  background: var(--white);
  padding: 0;
}
/* coded dashboard mockup */
.dash {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: clamp(240px, 24vw, 360px) 1fr;
  overflow: hidden;
  background: linear-gradient(165deg, #1c1813, #14110c);
  min-height: 720px;
}
.dash__side {
  background: #faf7f1;
  border-right: 1px solid rgba(40,30,15,.08);
  padding: 44px clamp(22px, 2.2vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}
.dash__brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.dash__brand span { color: var(--blue-500); }
.dash__kpis { display: flex; gap: 14px; }
.dash__kpis div { flex: 1; }
.dash__kpis b { display: block; font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.dash__kpis span { font-size: .68rem; color: var(--slate-600); }
.dash__donut {
  width: 112px; height: 112px; border-radius: 50%; margin: 2px auto;
  background: conic-gradient(var(--blue-500) calc(var(--p,70) * 1%), #e9e1d2 0);
  display: grid; place-items: center;
}
.dash__donut-c { width: 80px; height: 80px; border-radius: 50%; background: #faf7f1; display: grid; place-items: center; }
.dash__donut-c b { font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.dash__nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.dash__nav li { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--slate-600); font-weight: 500; }
.dash__nav li span { width: 24px; height: 24px; border-radius: 7px; background: rgba(217,154,69,.14); color: var(--blue-600); display: grid; place-items: center; font-size: .66rem; font-weight: 700; }
.dash__main { padding: 40px clamp(28px, 5vw, 96px); display: flex; flex-direction: column; justify-content: center; gap: 18px; color: #f3ecdf; }
/* sidebar storage mini-panel */
.dash__mini { margin-top: auto; }
.dash__mini > span { font-size: .72rem; color: var(--slate-600); font-weight: 600; }
.dash__progress { height: 8px; border-radius: 999px; background: #e9e1d2; margin: 8px 0 6px; overflow: hidden; }
.dash__progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--blue-500), #f0c074); border-radius: 999px; }
.dash__mini small { font-size: .68rem; color: var(--slate-400); }
/* second row panels */
.dash__row2 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; margin-top: 4px; }
.dash__panel { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 18px; }
.dash__panel-h { font-size: .82rem; font-weight: 700; color: #f3ecdf; margin-bottom: 14px; }
.dash__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.dash__list li { display: grid; grid-template-columns: 80px 1fr 52px; align-items: center; gap: 12px; font-size: .8rem; color: rgba(255,255,255,.62); }
.dash__list b { color: #f3ecdf; font-weight: 700; text-align: right; font-size: .8rem; }
.dash__lbar { height: 7px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.dash__lbar i { display: block; height: 100%; background: linear-gradient(90deg, var(--blue-500), #f0c074); border-radius: 999px; }
.dash__feed { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.dash__feed li { display: flex; align-items: center; gap: 10px; font-size: .8rem; color: rgba(255,255,255,.62); }
.dash__feed i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); flex: none; box-shadow: 0 0 8px rgba(217,154,69,.7); }
@media (max-width: 760px) { .dash__row2 { grid-template-columns: 1fr; } }

/* glass clickable boxes + swapping view */
.picker__tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-36px);
}
.ptab {
  text-align: left;
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(40,30,15,.1);
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ptab:hover { transform: translateY(-2px); border-color: rgba(217,154,69,.5); }
.ptab.is-active { border-color: var(--blue-500); background: linear-gradient(160deg, rgba(217,154,69,.16), rgba(255,255,255,.7)); box-shadow: 0 16px 30px -18px rgba(193,132,47,.5); }
.ptab__n { font-size: 1.7rem; font-weight: 800; line-height: 1; color: rgba(40,30,15,.22); transition: color .25s ease; }
.ptab.is-active .ptab__n { color: var(--blue-600); }
.ptab__t { font-weight: 700; font-size: 1.02rem; margin-top: 6px; color: var(--ink); }
.ptab__d { font-size: .78rem; color: var(--slate-600); }
.picker__views { position: relative; }
.pview { display: none; }
.pview.is-active { display: block; animation: pviewIn .35s ease; }
@keyframes pviewIn { from { opacity: 0; transform: translateY(8px); } }
.pview__h { font-family: var(--sans); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.95rem); letter-spacing: -.02em; margin: 0 0 12px; color: #fff; }
.pview__p { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.6; margin: 0 0 18px; max-width: 60ch; }
.pview__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pview__list li { position: relative; padding-left: 26px; color: rgba(255,255,255,.85); font-size: .92rem; }
.pview__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue-500); font-weight: 800; }
@media (max-width: 600px) { .picker__tabs { grid-template-columns: 1fr; } }

/* Design tab — text left, design-in-progress artboard right */
.pv-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
/* side text sits centered to the area above the notch */
.pv-text { transform: translateY(-50px); }
.artboard {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  filter: drop-shadow(0 44px 70px rgba(0,0,0,.55));
}
.artboard::before {
  content: "";
  position: absolute;
  inset: -8% -6% 6%;
  z-index: -1;
  background: radial-gradient(60% 55% at 70% 35%, rgba(217,154,69,.4), transparent 70%);
  filter: blur(40px);
}
.ab-rating { display: flex; align-items: center; gap: 7px; margin-top: 12px; color: #8a7f6c; font-size: .62rem; font-weight: 700; }
.ab-stars { color: #e0a04d; font-size: .8rem; letter-spacing: 1px; }
.ab-img-tag {
  position: absolute;
  left: 10px; top: 10px;
  z-index: 1;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(20,17,12,.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #f3ecdf;
  font-size: .56rem;
  font-weight: 700;
}
.artchip--review {
  top: -22px; left: -30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  max-width: 176px;
  animation-delay: 1.4s;
}
.artchip--review small { color: rgba(255,255,255,.72); font-size: .66rem; font-style: italic; line-height: 1.3; }
.artboard__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 16px;
  border-radius: 16px 16px 0 0;
  background: #2a241b;
  border: 1px solid rgba(255,255,255,.08);
  border-bottom: 0;
}
.artboard__chrome i {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.artboard__chrome i:first-child { background: #e8915b; }
.artboard__url {
  margin-left: 12px;
  flex: 1;
  max-width: 220px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  letter-spacing: .04em;
}
.artboard__page {
  border-radius: 0 0 16px 16px;
  background: #f6f1e7;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 0;
  padding: 22px 26px 26px;
}
.artboard__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5dcc9;
  margin-bottom: 22px;
}
.ab-logo { color: var(--blue-600); font-weight: 800; font-size: .8rem; letter-spacing: -.01em; }
.ab-menu { color: #8a7f6c; font-size: .72rem; font-weight: 600; }
.ab-pill {
  margin-left: auto;
  font-style: normal;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--blue-500);
  color: #2a1c08;
  font-size: .68rem;
  font-weight: 700;
}
.artboard__hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: center;
}
.ab-eyebrow {
  display: inline-block;
  color: var(--blue-600);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ab-head {
  margin: 0 0 8px;
  color: #221d16;
  font-size: 1.18rem;
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 800;
}
.ab-sub { margin: 0 0 14px; color: #6b6256; font-size: .74rem; line-height: 1.4; }
.ab-btn {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 9px;
  background: linear-gradient(150deg, #f0c074, var(--blue-500));
  color: #2a1c08;
  font-size: .72rem;
  font-weight: 800;
  box-shadow: 0 10px 18px -8px rgba(193,132,47,.6);
}
.artboard__img {
  height: 130px;
  border-radius: 12px;
  background:
    radial-gradient(80% 90% at 70% 20%, rgba(240,192,116,.5), transparent 60%),
    linear-gradient(160deg, #3a3022, #1c1813);
  position: relative;
  overflow: hidden;
}
.artboard__img::after {
  content: "";
  position: absolute;
  inset: auto -6% -28% -6%;
  height: 75%;
  background: linear-gradient(150deg, #d99a45, #6b4d20);
  clip-path: polygon(0 100%, 22% 32%, 38% 62%, 56% 12%, 72% 52%, 88% 28%, 100% 100%);
  opacity: .85;
}
.artboard__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.ab-card {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 10px;
  border-radius: 10px;
  background: #fffdf8;
  border: 1px solid #e5dcc9;
  box-shadow: 0 8px 16px -12px rgba(40,30,15,.4);
  color: #2c2418;
  font-size: .64rem;
  font-weight: 700;
}
.ab-card i {
  display: grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 6px;
  background: rgba(217,154,69,.16);
  color: var(--blue-600);
  font-size: .7rem;
  font-style: normal;
  flex: none;
}
/* floating designer chips */
.artchip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 13px;
  background: rgba(34,29,21,.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(222,180,120,.35);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.8);
  animation: chipFloat 5s ease-in-out infinite;
}
.artchip--palette { top: 56px; right: -20px; }
.artchip--palette i {
  width: 20px; height: 20px; border-radius: 7px;
  background: var(--c);
  border: 1px solid rgba(255,255,255,.18);
}
.artchip--type {
  bottom: -16px; left: -18px;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  animation-delay: 2.5s;
}
.artchip--type small {
  font-weight: 500;
  font-size: .64rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
@keyframes chipFloat { 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .artchip { animation: none; } }

/* Build tab — code editor */
.codewin {
  position: relative;
  border-radius: 14px;
  background: #16130e;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 44px 70px -36px rgba(0,0,0,.7);
}
.codewin::before {
  content: "";
  position: absolute;
  inset: -8% -6% 8%;
  z-index: -1;
  background: radial-gradient(58% 55% at 64% 38%, rgba(217,154,69,.36), transparent 70%);
  filter: blur(40px);
}
.codewin__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  background: #221d17;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: 14px 14px 0 0;
}
.codewin__bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.codewin__bar i:first-child { background: #e8915b; }
.codewin__tab {
  padding: 6px 13px;
  border-radius: 8px 8px 0 0;
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.codewin__tab:nth-of-type(1) { margin-left: 10px; }
.codewin__tab.is-active { background: #16130e; color: #f3ecdf; }
.codewin__code {
  padding: 20px 20px 24px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: clamp(.7rem, 1vw, .82rem);
  line-height: 1.95;
  color: #d9cdb8;
  overflow-x: hidden;
}
.cl { display: flex; gap: 16px; white-space: pre; }
.cln { color: rgba(255,255,255,.24); width: 18px; text-align: right; flex: none; }
.ct { color: #6fb0d6; }
.ca { color: #d99a45; }
.cs { color: #9ed18a; }
.cp { color: #c9b78c; }
.cv { color: #f0c074; }
/* Build chips */
.artchip--speed { top: -20px; right: -24px; gap: 11px; animation-delay: .7s; }
.speed-num { color: #f0c074; font-weight: 800; font-size: 1.6rem; line-height: 1; }
.artchip--speed small { color: rgba(255,255,255,.6); font-size: .6rem; line-height: 1.35; }
.artchip--deploy { bottom: -16px; left: -26px; color: #fff; font-weight: 700; font-size: .74rem; animation-delay: 2.1s; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #5fd08a; box-shadow: 0 0 9px #5fd08a; flex: none; }

/* Launch tab — live phone + popping notifications */
.phonewrap { position: relative; display: grid; place-items: center; min-height: 420px; }
.phone {
  position: relative;
  width: 212px;
  height: 426px;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(160deg, #2a241b, #12100b);
  border: 1px solid rgba(222,180,120,.28);
  box-shadow: 0 50px 80px -36px rgba(0,0,0,.8);
}
.phone::before {
  content: "";
  position: absolute;
  inset: -12% -16%;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 42%, rgba(217,154,69,.42), transparent 70%);
  filter: blur(46px);
}
.phone__notch {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 74px; height: 18px;
  border-radius: 999px;
  background: #0c0a07;
  z-index: 3;
}
.phone__screen {
  height: 100%;
  border-radius: 29px;
  overflow: hidden;
  background: #f6f1e7;
  display: flex;
  flex-direction: column;
}
.phone__top { display: flex; align-items: center; gap: 6px; padding: 26px 16px 10px; font-size: .58rem; font-weight: 700; color: #8a7f6c; }
.phone__hero { padding: 6px 16px 12px; }
.phone__hero h6 { margin: 0 0 9px; font-size: 1.02rem; font-weight: 800; line-height: 1.08; letter-spacing: -.02em; color: #221d16; }
.phone__btn { display: inline-flex; padding: 7px 14px; border-radius: 8px; background: linear-gradient(150deg, #f0c074, var(--blue-500)); color: #2a1c08; font-size: .64rem; font-weight: 800; }
.phone__pic { position: relative; margin: 0 16px; height: 118px; border-radius: 12px; overflow: hidden; background: linear-gradient(160deg, #3a3022, #1c1813); }
.phone__pic::after { content: ""; position: absolute; inset: auto -6% -22% -6%; height: 62%; background: linear-gradient(150deg, #d99a45, #6b4d20); clip-path: polygon(0 100%, 26% 38%, 46% 66%, 66% 26%, 84% 56%, 100% 100%); opacity: .85; }
.phone__rate { position: absolute; top: 8px; left: 8px; z-index: 1; padding: 3px 8px; border-radius: 999px; background: rgba(20,17,12,.62); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); color: #f0c074; font-size: .52rem; letter-spacing: 1.5px; }
.phone__eye { display: inline-block; color: var(--blue-600); font-size: .5rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px; }
.phone__rows { padding: 12px 16px; display: grid; gap: 8px; }
.phone__row { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; background: #fff; border: 1px solid #e5dcc9; font-size: .56rem; font-weight: 700; color: #2c2418; }
.phone__row i { width: 14px; height: 14px; border-radius: 5px; background: linear-gradient(150deg, #f0c074, var(--blue-500)); flex: none; }
.phone__tabs { margin-top: auto; display: flex; justify-content: space-around; padding: 12px 0; border-top: 1px solid #e5dcc9; }
.phone__tabs b { width: 18px; height: 5px; border-radius: 999px; background: #d9d0bf; }
.phone__tabs b.on { width: 22px; background: var(--blue-500); }
.noti {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px;
  max-width: 192px;
  border-radius: 14px;
  color: #fff;
  background: rgba(34,29,21,.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(222,180,120,.35);
  box-shadow: 0 22px 42px -18px rgba(0,0,0,.85);
  animation: chipFloat 5s ease-in-out infinite;
}
.noti i {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 9px;
  font-size: .9rem;
  font-style: normal;
  color: #f0c074;
  background: linear-gradient(150deg, rgba(217,154,69,.4), rgba(217,154,69,.1));
  border: 1px solid rgba(217,154,69,.4);
}
.noti b { display: block; font-size: .74rem; font-weight: 800; }
.noti small { font-size: .64rem; color: rgba(255,255,255,.62); }
.noti--review { top: 40px; left: -42px; animation-delay: .5s; }
.noti--lead { bottom: 52px; right: -44px; animation-delay: 2.3s; }
@media (max-width: 760px) {
  .noti--review { left: -8px; }
  .noti--lead { right: -8px; }
}
.dash__bar { display: flex; align-items: center; justify-content: space-between; }
.dash__h { font-weight: 700; font-size: .95rem; }
.dash__dots { display: flex; gap: 6px; }
.dash__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.16); }
.dash__dots i.is-amber { background: var(--blue-500); }
.dash__peaks { position: relative; height: 200px; border-radius: 12px; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); border: 1px solid rgba(255,255,255,.07); }
.dash__peaks svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pk--back { fill: rgba(217,154,69,.28); }
.pk--front { fill: rgba(70,50,28,.55); }
.pk-line { fill: none; stroke: #f0c074; stroke-width: 2; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 6px rgba(240,192,116,.7)); }
.dash__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dash__card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.dash__card span { font-size: .68rem; color: rgba(255,255,255,.55); }
.dash__card b { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; }
.dash__card b small { font-size: .66rem; font-weight: 600; color: rgba(255,255,255,.5); }
.dash__card--amber { background: linear-gradient(160deg, rgba(217,154,69,.3), rgba(217,154,69,.08)); border-color: rgba(217,154,69,.4); }
.dash__barchart { display: flex; align-items: flex-end; gap: 5px; height: 32px; }
.dash__barchart i { flex: 1; background: var(--blue-500); border-radius: 3px 3px 0 0; opacity: .85; }
.dash__spark { width: 100%; height: 32px; }
.dash__spark polyline { fill: none; stroke: #f0c074; stroke-width: 2; vector-effect: non-scaling-stroke; }
.dash__chip { align-self: flex-start; font-size: .66rem; font-weight: 700; color: #2a1c08; background: var(--blue-500); padding: 3px 9px; border-radius: 999px; }
@media (max-width: 720px) {
  .dash { grid-template-columns: 1fr; }
  .dash__side { padding: 44px clamp(22px, 2.2vw, 40px); }
  .picker__tabs { transform: none; }
  .dash__main { padding: 36px 24px 70px; }
  .pv-grid { grid-template-columns: 1fr; gap: 28px; }
  .pv-text { transform: none; }
  .artchip--palette { right: 6px; }
  .artchip--type { left: 6px; }
  .dash__cards { grid-template-columns: 1fr 1fr; }
}
.showcase__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.showcase__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-600);
  margin: 0 0 14px;
}
.showcase__lead {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0;
  max-width: 24ch;
}
.pill {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.pill:hover { transform: translateY(-2px); background: var(--blue-500); box-shadow: 0 14px 28px -14px rgba(217,154,69,.65); }
.pill svg { transition: transform .2s ease; }
.pill:hover svg { transform: translateX(3px); }

.showcase__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.scard {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e7e0d3;
  border-radius: 18px;
  padding: 34px 30px 32px;
  color: var(--ink);
  box-shadow: 0 24px 48px -32px rgba(40,30,15,.38);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
/* angular amber corner — echoes the section's notch */
.scard::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 66px; height: 66px;
  background: linear-gradient(135deg, transparent 50%, var(--blue-500) 50%);
  transition: width .3s ease, height .3s ease;
}
.scard:hover {
  transform: translateY(-8px);
  border-color: rgba(217,154,69,.55);
  box-shadow: 0 42px 72px -34px rgba(40,30,15,.45);
}
.scard:hover::after { width: 88px; height: 88px; }
.scard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  color: #2a1c08;
  background: linear-gradient(150deg, #f0c074, var(--blue-500));
  box-shadow: 0 12px 24px -10px rgba(193,132,47,.6);
}
.scard__rule {
  display: block;
  width: 38px;
  height: 2px;
  background: var(--blue-500);
  margin: 22px 0 16px;
  border-radius: 2px;
}
.scard__title { font-family: var(--sans); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em; margin: 0 0 10px; color: var(--ink); }
.scard__text { color: var(--slate-600); font-size: 0.95rem; line-height: 1.6; margin: 0; position: relative; }

/* ---- Service list (editorial numbered rows) ---- */
.svc-list { border-top: 1px solid #e8e2d6; }
.svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 34px 10px;
  border-bottom: 1px solid #e8e2d6;
  color: var(--ink);
  transition: padding .35s cubic-bezier(.2,.8,.2,1), background .35s ease;
}
.svc-row:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: linear-gradient(90deg, rgba(217,154,69,.08), rgba(217,154,69,0) 60%);
}
.svc-row__num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(193,132,47,.55);
  transition: color .35s ease, -webkit-text-stroke-color .35s ease;
}
.svc-row:hover .svc-row__num { color: var(--blue-500); -webkit-text-stroke-color: transparent; }
.svc-row__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--ink);
}
.svc-row__text { color: var(--slate-600); font-size: 0.98rem; line-height: 1.55; margin: 0; max-width: 60ch; }
.svc-row__arrow {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid #e0d6c4;
  color: var(--blue-600);
  transition: transform .35s ease, background .35s ease, border-color .35s ease, color .35s ease;
}
.svc-row:hover .svc-row__arrow {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #1c1610;
  transform: translateX(6px);
}
@media (max-width: 600px) {
  .svc-row { grid-template-columns: auto 1fr; gap: 20px; padding: 26px 6px; }
  .svc-row__arrow { display: none; }
}

/* ---------- Frontier (dark editorial) ---------- */
.frontier {
  position: relative;
  z-index: 1;
  margin-top: -100px;           /* left half rises up into the section above */
  background: var(--paper);     /* blue-ish, same as Build the Framework */
  color: var(--ink);
  padding: 104px 0 76px;
  /* flat & high across the left, ONE clean slant, then flat-low across the right */
  clip-path: polygon(0 0, 40% 0, 52% 100px, 100% 100px, 100% 100%, 0 100%);
  filter: drop-shadow(0 -5px 14px rgba(217, 154, 69, 0.4));
}
.frontier__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: none;
  padding-left: clamp(20px, 2.6vw, 44px);
  padding-right: clamp(24px, 6vw, 90px);
}
.frontier__media {
  margin: 0;
  overflow: hidden;
}
.frontier__media img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08);
}
.frontier__content { align-self: center; }
.frontier__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(12, 23, 38, 0.6);
  margin: 0 0 26px;
}
.frontier__title {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 34px;
}
.frontier__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.frontier__tags li {
  padding: 9px 22px;
  border: 1px solid rgba(12, 23, 38, 0.28);
  border-radius: 999px;
  font-size: 0.92rem;
  color: rgba(12, 23, 38, 0.85);
}
.frontier__text {
  color: rgba(12, 23, 38, 0.62);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 44ch;
  margin: 0 0 40px;
}
.frontier__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border-radius: 10px;
  background: #2a2f38;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background .2s ease, transform .2s ease;
}
.btn-dark:hover { background: #3a414c; transform: translateY(-2px); }
.watch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.watch__icon { display: inline-flex; transition: transform .2s ease; }
.watch:hover .watch__icon { transform: scale(1.08); }

/* ---------- Contact (Inquiry / Support) ---------- */
.contact {
  position: relative;
  isolation: isolate;
  background: #15120d;
  color: rgba(255, 255, 255, 0.78);
  padding: 48px 0 24px;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(21,18,13,.78) 0%, rgba(21,18,13,.66) 50%, rgba(21,18,13,.9) 100%),
    url("../assets/hero-web.jpg") center 60%/cover no-repeat;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.66rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin: 0 0 8px;
}
.contact__title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 8px;
}
.contact__sub { margin: 0 0 20px; max-width: 44ch; font-size: 0.88rem; color: rgba(255,255,255,.65); }

/* Inquiry form */
.inquiry {
  background: rgba(12,23,38,.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px 28px 26px;
}
.inquiry__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: 0.76rem; font-weight: 500; color: rgba(255,255,255,.7); }
.field input,
.field textarea {
  font: inherit;
  font-size: 0.9rem;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 9px;
  padding: 9px 12px;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  background: rgba(31,86,230,.1);
}
.field textarea { resize: vertical; min-height: 64px; }
.consent {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255,255,255,.62);
  cursor: pointer;
  user-select: none;
}

/* ---- Custom consent checkbox (shared by both inquiry forms) ---- */
.consent input[type="checkbox"],
.cconsent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.consent input[type="checkbox"]::after,
.cconsent input[type="checkbox"]::after {
  content: "";
  width: 11px;
  height: 11px;
  transform: scale(0);
  transition: transform .15s cubic-bezier(.2,.8,.3,1.4);
  box-shadow: inset 1em 1em #fff;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.consent input[type="checkbox"]:hover,
.cconsent input[type="checkbox"]:hover { border-color: rgba(255,255,255,.5); }
.consent input[type="checkbox"]:focus-visible,
.cconsent input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.16);
}
.consent input[type="checkbox"]:checked::after,
.cconsent input[type="checkbox"]:checked::after { transform: scale(1); }
.consent input[type="checkbox"]:checked {
  background: var(--blue-600);
  border-color: var(--blue-600);
}
.cconsent input[type="checkbox"]:checked {
  background: #d99a45;
  border-color: #d99a45;
}
/* Error state when the box isn't ticked on submit */
.consent.consent--error,
.cconsent.consent--error { color: #ff8585; }
.consent.consent--error input[type="checkbox"],
.cconsent.consent--error input[type="checkbox"] {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255,107,107,.18);
}
.inquiry__submit { grid-column: 1 / -1; justify-self: end; padding: 10px 26px; font-size: 0.9rem; }

/* Support */
.support__phones { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.support__phones li { display: flex; align-items: center; gap: 12px; }
.support__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(217,154,69,.18);
  border: 1px solid rgba(217,154,69,.34);
  flex-shrink: 0;
}
.support__icon svg { width: 18px; height: 18px; }
.support__phones a {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  transition: color .2s ease;
}
.support__phones a:hover { color: #9cc0ff; }
.support__hours {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
}
.support__hours h3 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.55); margin: 0 0 8px; }
.support__hours p { margin: 0 0 5px; font-size: 0.86rem; color: rgba(255,255,255,.82); }
.support__note { color: rgba(255,255,255,.45) !important; font-size: 0.78rem !important; }

.contact__copy {
  text-align: center;
  margin: 44px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
}

/* ---------- Services hero ---------- */
.svc-hero {
  position: relative;
  isolation: isolate;
  background: #14110c;
  color: var(--white);
  padding: calc(var(--header-h) + 84px) 0 0;
  overflow: hidden;
  text-align: center;
}
.svc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 42% at 50% 86%, rgba(170,115,50,.28) 0%, transparent 70%),
    radial-gradient(80% 55% at 50% 6%, rgba(165,140,105,.10) 0%, transparent 60%),
    linear-gradient(180deg, #1b160f 0%, #14110c 55%, #100c08 100%);
}
.svc-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.svc-badge__dot { color: #ff8a3c; }
.svc-hero__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.svc-hero__title-alt {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
  background: linear-gradient(100deg, #f6e8cd 0%, #dcb781 50%, #bd9358 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svc-hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(255,255,255,.6);
  max-width: 42ch;
  margin: 0 0 28px;
}
.svc-hero__cta {
  border-radius: 999px;
  padding: 13px 30px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.svc-hero__cta:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

/* ---- Floating dashboard trio over a teal light-tunnel ---- */
.dashtrio {
  position: relative;
  margin: 52px auto 0;
  max-width: 1000px;
  height: 360px;
  perspective: 1600px;
}
/* soft warm glow under the cards */
.dashtrio::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: 76%;
  height: 170px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(234,174,90,.46), transparent 73%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}
/* warp background, edges faded into the dark hero */
.dashtrio__warp {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 150%;
  max-width: 1320px;
  aspect-ratio: 1344 / 768;
  background: url(../assets/warp-bg.jpg) center / cover no-repeat;
  filter: sepia(.7) saturate(2.3) hue-rotate(-12deg) brightness(1.04);
  z-index: 0;
  pointer-events: none;
  opacity: .92;
  -webkit-mask: radial-gradient(ellipse 58% 62% at 50% 50%, #000 22%, transparent 74%);
          mask: radial-gradient(ellipse 58% 62% at 50% 50%, #000 22%, transparent 74%);
  animation: warpIn 1.2s ease backwards;
}
@keyframes warpIn { from { opacity: 0; transform: translate(-50%,-50%) scale(1.12); } }

/* glass panels — carousel slots */
.dpanel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  border-radius: 18px;
  padding: 18px 18px 20px;
  background: linear-gradient(158deg, rgba(54,44,30,.58), rgba(20,16,10,.36));
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(222,180,120,.2);
  box-shadow: 0 34px 64px -26px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.12);
  color: #f3ecdf;
  transform-origin: center;
  transition: transform .85s cubic-bezier(.55,.1,.2,1), opacity .85s ease, filter .85s ease;
  will-change: transform, opacity;
}
/* center: front and focused */
.dpanel[data-slot="center"] {
  transform: translate(-50%, -50%) translateZ(70px);
  z-index: 4;
  opacity: 1;
  filter: none;
}
/* left wing — recedes toward the dark */
.dpanel[data-slot="left"] {
  transform: translate(-50%, -50%) translateX(-262px) translateZ(-40px) rotateY(24deg) scale(.84);
  z-index: 2;
  opacity: .7;
  filter: brightness(.82);
}
/* right wing */
.dpanel[data-slot="right"] {
  transform: translate(-50%, -50%) translateX(262px) translateZ(-40px) rotateY(-24deg) scale(.84);
  z-index: 2;
  opacity: .7;
  filter: brightness(.82);
}
/* side panels are clickable to bring them forward */
.dpanel[data-slot="left"],
.dpanel[data-slot="right"] { cursor: pointer; }
/* back — invisible, waiting to rotate in */
.dpanel[data-slot="back"] {
  transform: translate(-50%, -50%) translateZ(-160px) scale(.62);
  z-index: 1;
  opacity: 0;
  filter: brightness(.6);
  pointer-events: none;
}

/* carousel dot indicators */
.dashdots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 0;
}
.dashdot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(222,190,140,.32);
  cursor: pointer;
  transition: width .35s cubic-bezier(.55,.1,.2,1), background .35s ease;
}
.dashdot:hover { background: rgba(222,190,140,.55); }
.dashdot.is-active {
  width: 24px;
  background: linear-gradient(90deg, #d99a45, #f0c074);
  box-shadow: 0 0 10px rgba(217,154,69,.6);
}

/* ---- Budget-tier pricing cards ---- */
.dprice { text-align: left; }
.dprice--featured {
  border-color: rgba(212,165,95,.5);
  box-shadow: 0 34px 64px -26px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.14), 0 0 0 1px rgba(212,165,95,.24);
}
.dprice__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.dprice__tier { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.dprice__tag {
  font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(240,228,205,.75);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.dprice__tag--hot {
  color: #2a1c08; font-weight: 700;
  background: linear-gradient(90deg, #d99a45, #f0c074);
  border-color: transparent;
  box-shadow: 0 0 14px rgba(217,154,69,.5);
}
.dprice__who {
  margin: 0 0 16px; font-size: .82rem; line-height: 1.45;
  color: rgba(236,227,210,.72);
}
.dprice__list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 9px; }
.dprice__list li {
  position: relative; padding-left: 24px;
  font-size: .8rem; line-height: 1.35; color: rgba(241,233,219,.9);
}
.dprice__list li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(217,154,69,.2);
  border: 1px solid rgba(217,154,69,.5);
}
.dprice__list li::after {
  content: ""; position: absolute; left: 5px; top: 5px;
  width: 6px; height: 3px;
  border-left: 1.6px solid #ecbd72; border-bottom: 1.6px solid #ecbd72;
  transform: rotate(-45deg);
}

.dpanel__row { display: flex; justify-content: space-between; align-items: center; }
.dpanel__label { font-size: .72rem; letter-spacing: .04em; color: rgba(220,255,245,.6); }
.dpanel__pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .68rem; color: rgba(220,255,245,.72);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 3px 8px; border-radius: 999px;
}
.dpanel__big {
  font-size: 1.7rem; font-weight: 700; letter-spacing: -.02em;
  margin: 14px 0 8px; color: #fff; font-variant-numeric: tabular-nums;
}
.dpanel__spark { width: 100%; height: 56px; display: block; }
.dpanel__spark polyline {
  fill: none; stroke: #54ead0; stroke-width: 2.2;
  vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(70,235,200,.6));
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: draw 1.6s ease forwards .5s;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.dpanel__cap { text-align: center; font-size: .74rem; color: rgba(220,255,245,.6); }
.dpanel__balance {
  text-align: center; font-size: 2rem; font-weight: 700; letter-spacing: -.02em;
  color: #fff; margin: 6px 0 18px; font-variant-numeric: tabular-nums;
}
.dpanel__coins { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.dcoin { display: flex; align-items: center; gap: 9px; }
.dcoin--r { text-align: right; }
.dcoin__ic {
  font-size: 1.05rem; width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
}
.dcoin b { display: block; font-size: .74rem; font-weight: 600; color: rgba(255,255,255,.94); }
.dcoin span { font-size: .7rem; color: rgba(220,255,245,.55); }
.dpanel__bars {
  width: 100%; height: 42px; display: block; margin-bottom: 12px; border-radius: 4px;
  background:
    repeating-linear-gradient(90deg, rgba(120,236,212,.6) 0 2px, transparent 2px 7px);
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 6%, #000 44%, transparent 50%, transparent 52%, #000 58%, #000 96%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 6%, #000 44%, transparent 50%, transparent 52%, #000 58%, #000 96%, transparent 100%);
  opacity: .85;
}
.dpanel__split { display: flex; justify-content: space-between; font-size: .68rem; color: rgba(220,255,245,.55); margin-bottom: 16px; }
.dpanel__split b { color: #fff; font-weight: 600; }
.dpanel__deposit {
  width: 100%; padding: 11px; border-radius: 11px;
  border: 1px solid rgba(205,155,85,.4);
  background: linear-gradient(180deg, rgba(217,154,69,.3), rgba(170,115,40,.2));
  color: #f3ecdf; font-weight: 600; font-size: .82rem; cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.dpanel__deposit:hover {
  background: linear-gradient(180deg, rgba(232,176,98,.44), rgba(185,128,48,.32));
  border-color: rgba(222,175,105,.6);
  transform: translateY(-1px);
}

.dswap { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.dswap:last-of-type { border-bottom: 0; }
.dswap__k { font-size: .72rem; color: rgba(220,255,245,.6); }
.dswap__v { font-size: 1.02rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .dpanel, .dashtrio__warp { animation: none; }
  .dpanel { transition: none; }
  .dpanel__spark polyline { animation: none; stroke-dashoffset: 0; }
}

.svc-hero__note {
  margin: 0;
  padding: 30px 0 36px;
  font-size: 0.82rem;
  letter-spacing: .01em;
  color: rgba(255,255,255,.42);
}
.svc-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}
.svc-avatars { display: flex; }
.svc-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #05060a;
  margin-left: -10px;
}
.svc-avatars img:first-child { margin-left: 0; }
.svc-social__text { font-size: 0.9rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* Fake app window mockup */
.mock {
  width: min(960px, 100%);
  margin: 56px auto 0;
  text-align: left;
  background: #1a160f;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.8);
  overflow: hidden;
  font-size: 0.78rem;
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mock__search {
  flex: 0 0 130px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
}
.mock__chip {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.mock__chip--accent { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.mock__dots { color: rgba(255,255,255,.4); margin-left: auto; }
.mock__user {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #ff8a3c, #d99a45);
  flex-shrink: 0;
}
.mock__body { display: grid; grid-template-columns: 200px 1fr; }
.mock__side {
  padding: 18px 16px;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock__side-title { color: #fff; font-weight: 600; font-size: 0.9rem; }
.mock__side-sub { color: rgba(255,255,255,.4); }
.mock__team { display: flex; gap: 6px; margin: 8px 0 14px; }
.mock__team span {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.14);
}
.mock__team-add {
  background: rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.mock__label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 0.62rem;
  color: rgba(255,255,255,.35);
  margin-top: 10px;
}
.mock__status, .mock__nav { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 7px; }
.mock__status li, .mock__nav li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.68);
}
.mock__status b { margin-left: auto; color: rgba(255,255,255,.45); font-weight: 500; }
.mock__nav li { padding: 6px 8px; border-radius: 7px; }
.mock__nav li.is-active { background: rgba(217,154,69,.16); color: #fff; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--red { background: #ff5c5c; }
.dot--blue { background: #4c8bff; }
.dot--green { background: #38d39f; }
.dot--gray { background: #6b7686; }
.mock__main { padding: 18px 18px 22px; }
.mock__h { margin: 0 0 14px; color: #fff; font-size: 1rem; }
.mock__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock__col { display: flex; flex-direction: column; gap: 10px; }
.mock__col-h { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.6); font-weight: 500; }
.mock__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mock__card strong { color: #fff; font-weight: 600; font-size: 0.8rem; }
.mock__card p { margin: 0; color: rgba(255,255,255,.45); line-height: 1.4; }
.mock__logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, #d99a45, #e0653c);
  color: #fff; font-weight: 700; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}
.mock__prog { display: block; height: 6px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.mock__prog i { display: block; height: 100%; background: linear-gradient(90deg, #d99a45, #e8c170); }

/* ---------- Low (Starter) tier deep-dive ---------- */
.lowtier { background: #0c0d10; color: #fff; padding: 92px 0; }
.lowtier__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.lowtier__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #e7b66e;
  margin: 0 0 16px;
}
.lowtier__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 18px;
}
.lowtier__text {
  color: rgba(255,255,255,.58);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 56ch;
  margin: 0 0 30px;
}
/* What's-included checklist */
.lowtier__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; max-width: 520px; }
.lowtier__list li {
  position: relative;
  padding-left: 42px;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.5;
}
.lowtier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f3cd8e 0%, #d99a45 100%);
  box-shadow: 0 4px 14px -3px rgba(217,154,69,.6), inset 0 1px 0 rgba(255,255,255,.35);
}
.lowtier__list li::after {
  content: "";
  position: absolute;
  left: 13px; top: 12px;           /* circle is 26px wide → center at 13 */
  width: 9px; height: 5px;
  border-left: 2.5px solid #2a1c08;
  border-bottom: 2.5px solid #2a1c08;
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* "Starter at a glance" filled card */
.lowcard {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 30px 30px 28px;
}
.lowcard__kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin: 0 0 6px;
}
.lowcard__rows { margin: 0; flex: 1; }
.lowcard__rows > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lowcard__rows dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}
.lowcard__rows dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
  color: #fff;
  font-size: 1.02rem;
}
.lowcard__cta { margin-top: 26px; width: 100%; justify-content: center; }
/* Low card ↔ Starter section pairing: amber accent so they read as a set */
.dprice--linked { border-color: rgba(217,154,69,.34) !important; }
.dprice__tag--starter {
  color: #f3cd8e;
  background: rgba(217,154,69,.14);
  border-color: rgba(217,154,69,.45);
}
/* Low card's primary button is an anchor — render it like the deposit button */
.dpanel__deposit--link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
}
@media (max-width: 760px) {
  .lowtier__grid { grid-template-columns: 1fr; gap: 40px; }
  .lowtier__list { max-width: none; }
}

/* ---------- Medium (Most popular) tier deep-dive ---------- */
.medtier {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0c0d10;            /* same flat dark as the Low section — seamless when scrolling */
  color: #fff;
  padding: 100px 0 104px;
}
/* soft amber glow sitting behind the heading (kept off the top edge so the
   boundary with the section above stays flat and matched) */
.medtier__glow {
  position: absolute;
  z-index: -1;
  top: 60px; left: 50%;
  width: 720px; height: 440px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(231,182,110,.22), transparent 66%);
  filter: blur(24px);
  pointer-events: none;
}
.medtier__inner { position: relative; }
.medtier__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.medtier__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a1c08;
  background: linear-gradient(90deg, #f0c074, #d99a45);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(217,154,69,.5);
  margin-bottom: 20px;
}
.medtier__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0 0 18px;
}
.medtier__text {
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 60ch;
}
.medtier__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.mfeat {
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
/* gradient top accent that lights up on hover */
.mfeat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d99a45, #f0c074);
  opacity: .5;
  transition: opacity .3s ease;
}
.mfeat:hover {
  transform: translateY(-6px);
  border-color: rgba(217,154,69,.5);
  box-shadow: 0 30px 56px -28px rgba(0,0,0,.8), 0 0 34px -10px rgba(217,154,69,.35);
}
.mfeat:hover::before { opacity: 1; }
.mfeat__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  color: #f3cd8e;
  background: rgba(217,154,69,.14);
  border: 1px solid rgba(217,154,69,.32);
  margin-bottom: 16px;
}
.mfeat__title { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; margin: 0 0 8px; color: #fff; }
.mfeat__text { margin: 0; font-size: 0.9rem; line-height: 1.55; color: rgba(255,255,255,.58); }
/* highlight + CTA strip */
.medtier__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 28px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(217,154,69,.16), rgba(217,154,69,.04));
  border: 1px solid rgba(217,154,69,.3);
}
.medtier__cta-text { margin: 0; font-size: 1.02rem; color: rgba(255,255,255,.85); }
.medtier__cta-text strong { color: #f3cd8e; }
.medtier__cta-btn { flex-shrink: 0; }
@media (max-width: 860px) {
  .medtier__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .medtier__grid { grid-template-columns: 1fr; }
  .medtier__cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- High (Premium) tier — flagship ---------- */
.hightier {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0c0d10;            /* same flat dark — seamless with sections above */
  color: #fff;
  padding: 104px 0 110px;
}
.hightier__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}
.hightier__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #e7b66e;
  margin: 0 0 16px;
}
.hightier__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0 0 18px;
}
.hightier__grad {
  background: linear-gradient(100deg, #f3cd8e, #d99a45 60%, #b9802f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hightier__text {
  color: rgba(255,255,255,.6);
  font-size: 1.02rem;
  line-height: 1.72;
  max-width: 56ch;
  margin: 0 0 34px;
}
.hightier__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; max-width: 540px; }
.hightier__list li { display: flex; gap: 18px; align-items: flex-start; }
.hnum {
  flex-shrink: 0;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  padding-top: 2px;
  background: linear-gradient(160deg, #f3cd8e, #d99a45);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hightier__list h3 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; margin: 0 0 5px; color: #fff; }
.hightier__list p { margin: 0; font-size: 0.92rem; line-height: 1.55; color: rgba(255,255,255,.56); }

/* Flagship card with animated gradient-shimmer border */
.hcard {
  position: relative;
  border-radius: 22px;
  isolation: isolate;
  box-shadow: 0 40px 80px -36px rgba(0,0,0,.85), 0 0 60px -24px rgba(217,154,69,.4);
}
.hcard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--hangle, 0deg),
    rgba(217,154,69,0) 0deg,
    #f3cd8e 60deg,
    rgba(217,154,69,0) 140deg,
    rgba(217,154,69,0) 220deg,
    #d99a45 300deg,
    rgba(217,154,69,0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  animation: hcard-spin 7s linear infinite;
}
@property --hangle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes hcard-spin { to { --hangle: 360deg; } }
@media (prefers-reduced-motion: reduce) { .hcard::before { animation: none; } }
.hcard__inner {
  position: relative;
  border-radius: 21px;
  padding: 34px 32px 30px;
  background: linear-gradient(170deg, #15161b, #0e0f12);
  border: 1px solid rgba(255,255,255,.06);
}
.hcard__kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
  color: #2a1c08;
  background: linear-gradient(90deg, #f0c074, #d99a45);
  padding: 4px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.hcard__lead {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  margin: 0 0 22px;
}
.hcard__rows { margin: 0 0 24px; }
.hcard__rows > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hcard__rows dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.5);
}
.hcard__rows dd { margin: 0; text-align: right; font-weight: 600; color: #fff; font-size: 1rem; }
.hcard__cta { width: 100%; justify-content: center; }
@media (max-width: 760px) {
  .hightier__inner { grid-template-columns: 1fr; gap: 44px; }
  .hightier__list { max-width: none; }
}

/* ---------- Custom (Enterprise) tier — let's talk ---------- */
.custtier {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0c0d10;           /* seamless with sections above */
  color: #fff;
  padding: 104px 0 116px;
}
.custtier__glow {
  position: absolute;
  z-index: -1;
  top: 40px; right: -120px;
  width: 680px; height: 460px;
  background: radial-gradient(ellipse at center, rgba(231,182,110,.18), transparent 64%);
  filter: blur(24px);
  pointer-events: none;
}
.custtier__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.custtier__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #e7b66e;
  margin: 0 0 16px;
}
.custtier__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.custtier__text {
  color: rgba(255,255,255,.62);
  font-size: 1.04rem;
  line-height: 1.72;
  max-width: 56ch;
  margin: 0 0 28px;
}
.custtier__text strong { color: #f3cd8e; }
.custtier__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.custtier__points li {
  position: relative;
  padding: 8px 16px 8px 32px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
}
.custtier__points li::before {
  content: "";
  position: absolute;
  left: 13px; top: 50%;
  width: 8px; height: 4.5px;
  border-left: 2px solid #e7b66e;
  border-bottom: 2px solid #e7b66e;
  transform: translateY(-65%) rotate(-45deg);
}
/* Right-side "let's talk" card */
.talk {
  display: flex;
  flex-direction: column;
  padding: 34px 32px;
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(217,154,69,.3);
  box-shadow: 0 40px 84px -40px rgba(0,0,0,.85), 0 0 60px -28px rgba(217,154,69,.3);
}
.talk__kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #e7b66e;
  margin: 0 0 12px;
}
.talk__lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin: 0 0 24px;
}
.talk__cta { width: 100%; justify-content: center; }
.talk__or {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  margin: 18px 0 14px;
}
.talk__contact {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.talk__contact + .talk__contact { margin-top: 10px; }
.talk__contact svg { color: #e7b66e; flex-shrink: 0; }
.talk__contact:hover { background: rgba(217,154,69,.1); border-color: rgba(217,154,69,.4); color: #fff; }
@media (max-width: 760px) {
  .custtier__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ================= About page ================= */
/* Hero — floating cards composition */
.ahero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0d0a06;
  color: #fff;
  padding: clamp(48px, 6vw, 76px) 0 clamp(64px, 9vw, 104px);
  text-align: center;
}
.ahero__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 7px; border-radius: 0 0 10px 10px;
  background: rgba(255,255,255,.18);
}
.ahero__grid {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(125% 95% at 50% 28%, #000 38%, transparent 80%);
          mask-image: radial-gradient(125% 95% at 50% 28%, #000 38%, transparent 80%);
}
.ahero__glow {
  position: absolute; z-index: -1;
  top: -150px; left: 50%; transform: translateX(-50%);
  width: 780px; height: 540px;
  background: radial-gradient(ellipse at center, rgba(231,182,110,.22), transparent 64%);
  filter: blur(22px); pointer-events: none;
}
.ahero__chip {
  position: absolute; top: 20px; right: clamp(16px, 4vw, 48px);
  display: flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 9px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.ahero__chip-mark { display: inline-flex; color: #e7b66e; }
.ahero__chip-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.ahero__chip-txt strong { font-size: 0.82rem; }
.ahero__chip-txt small { font-size: 0.64rem; color: rgba(255,255,255,.5); }
.ahero__side {
  position: absolute; top: 50%; right: -10px; transform: translateY(-50%) rotate(90deg);
  font-size: 0.7rem; letter-spacing: 0.42em; font-weight: 600; text-transform: uppercase;
  color: rgba(255,255,255,.26);
}
.ahero__inner { position: relative; max-width: 760px; }
.ahero__eyebrow { text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.72rem; font-weight: 600; color: #e7b66e; margin: 0 0 18px; }
.ahero__title {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.03em; line-height: 1.03; margin: 0 0 18px;
}
.ahero__hi {
  background: linear-gradient(100deg, #f3cd8e, #d99a45 60%, #b9802f);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.ahero__sub { max-width: 54ch; margin: 0 auto 30px; font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.65; color: rgba(255,255,255,.64); }
.ahero__cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  color: #2a1c08; background: linear-gradient(180deg, #f0c074, #d99a45);
  box-shadow: 0 14px 34px -12px rgba(217,154,69,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ahero__cta:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -12px rgba(217,154,69,.78); }
.ahero__cta svg { transition: transform .2s ease; }
.ahero__cta:hover svg { transform: translateX(3px); }

/* floating cards cluster */
.ahero__cards { position: relative; max-width: 920px; margin: 44px auto 0; min-height: 300px; }
.fcard {
  position: absolute;
  border-radius: 18px; padding: 18px; text-align: left;
  background: linear-gradient(170deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
}
.fcard--a { left: 0; top: 32px; width: 196px; transform: rotate(-4deg); }
.fcard--b {
  left: 50%; top: 0; width: 290px; transform: translateX(-50%); z-index: 2; padding: 18px;
  border-color: rgba(217,154,69,.28);
  box-shadow: 0 44px 84px -28px rgba(0,0,0,.85), 0 0 44px -14px rgba(217,154,69,.32);
}
.fcard--c { right: 0; top: 54px; width: 216px; transform: rotate(4deg); }
.fcard__label { margin: 0 0 6px; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.55); }
.fcard__big {
  margin: 0 0 12px; font-family: var(--sans); font-weight: 800; font-size: 2.2rem; letter-spacing: -0.03em;
  background: linear-gradient(160deg, #f3cd8e, #d99a45); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.fcard__pill { display: inline-block; font-size: 0.7rem; color: #f3cd8e; background: rgba(217,154,69,.14); border: 1px solid rgba(217,154,69,.3); padding: 4px 10px; border-radius: 999px; }
.fcard__head { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.fcard__dot { width: 8px; height: 8px; border-radius: 50%; background: #3ad17a; box-shadow: 0 0 8px #3ad17a; }
.fcard__lead { margin: 0 0 12px; font-size: 0.92rem; line-height: 1.45; color: rgba(255,255,255,.72); }
.fcard__lead em { color: #f3cd8e; font-style: normal; }
.fmini { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.25); margin-bottom: 14px; }
.fmini__bar { display: flex; gap: 5px; padding: 8px 10px; background: rgba(255,255,255,.05); }
.fmini__bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); }
.fmini__body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.fmini__h { height: 14px; width: 60%; border-radius: 5px; background: linear-gradient(90deg, #d99a45, #f0c074); }
.fmini__l { height: 7px; border-radius: 4px; background: rgba(255,255,255,.16); }
.fmini__l.short { width: 70%; }
.fmini__btn { height: 18px; width: 42%; border-radius: 6px; background: rgba(217,154,69,.5); margin-top: 2px; }
.fcard__metric { display: flex; align-items: center; gap: 12px; }
.ring {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; color: #f3cd8e;
  background: radial-gradient(closest-side, #16120c 70%, transparent 71%),
              conic-gradient(#d99a45 0 100%);
}
.fcard__metric-txt { display: flex; flex-direction: column; }
.fcard__metric-txt strong { font-size: 0.86rem; }
.fcard__metric-txt small { font-size: 0.72rem; color: rgba(255,255,255,.55); }
.fcard__tag { display: inline-block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: #e7b66e; background: rgba(217,154,69,.14); border: 1px solid rgba(217,154,69,.3); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.fcard__c-title { margin: 0 0 8px; font-family: var(--sans); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; line-height: 1.15; color: #fff; }
.fcard__c-sub { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,.6); }
.fbadge {
  position: absolute; left: 6%; bottom: -16px; z-index: 3;
  font-size: 0.74rem; font-weight: 600; color: #2a1c08;
  background: linear-gradient(90deg, #f0c074, #d99a45);
  padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 12px 28px -10px rgba(217,154,69,.6);
}
@media (max-width: 900px) {
  .ahero__side { display: none; }
  .ahero__cards { display: flex; flex-direction: column; align-items: center; gap: 16px; min-height: 0; max-width: 360px; }
  .fcard { position: static; transform: none !important; width: 100% !important; }
  .fbadge { position: static; align-self: center; }
}

/* Trusted partner / three points */
.tpart { background: #0d0a06; color: #fff; padding: clamp(72px, 9vw, 108px) 0; }
.tpart__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.tpart__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  color: rgba(255,255,255,.94);
}
.tpart__hi {
  background: linear-gradient(100deg, #f3cd8e, #d99a45);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.tpart__lead {
  margin: 6px 0 0;
  color: rgba(255,255,255,.6);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 50ch;
}
.tpart__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 18px;
  align-items: end;
}
.tcard2 {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 26px 24px;
  border-radius: 18px;
  background: linear-gradient(170deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
}
.tcard2--hl {
  min-height: 300px;
  padding: 36px 32px;
  background: linear-gradient(165deg, #f0c074, #d99a45);
  border-color: transparent;
  color: #2a1c08;
  box-shadow: 0 40px 72px -28px rgba(217,154,69,.55);
}
.tcard2--hl .tcard2__num { font-size: 1.7rem; }
.tcard2--hl .tcard2__title { font-size: 1.4rem; }
.tcard2__num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #e7b66e;
}
.tcard2--hl .tcard2__num { color: #2a1c08; }
.tcard2__body { margin-top: auto; }
.tcard2__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.18;
  margin: 0 0 10px;
  color: #fff;
}
.tcard2--hl .tcard2__title { color: #1a1206; }
.tcard2__text { margin: 0; font-size: 0.94rem; line-height: 1.6; color: rgba(255,255,255,.6); }
.tcard2--hl .tcard2__text { color: rgba(40,28,8,.82); }
.tcard2__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #2a1c08;
}
.tcard2__link svg { transition: transform .2s ease; }
.tcard2__link:hover svg { transform: translateX(4px); }
@media (max-width: 820px) {
  .tpart__top { grid-template-columns: 1fr; }
  .tpart__grid { grid-template-columns: 1fr; gap: 14px; }
  .tcard2 { min-height: 0; }
  .tcard2--hl { transform: none; }
}

/* Who are we */
.who { background: #0d0a06; color: #fff; padding: clamp(72px, 9vw, 110px) 0; }
.who__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: stretch; }
.who__visual {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 420px; border-radius: 22px;
  background: linear-gradient(165deg, #161109, #0a0805);
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
}
.who__visual::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 70% at 50% 32%, rgba(231,182,110,.2), transparent 66%); }
.who__ghost {
  position: absolute; top: 48%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--sans); font-weight: 800; font-size: clamp(8rem, 18vw, 15rem); line-height: 1;
  color: rgba(255,255,255,.045); letter-spacing: -0.04em; z-index: -1; pointer-events: none;
}
.who__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.who__peak { width: 56%; max-width: 240px; filter: drop-shadow(0 12px 30px rgba(217,154,69,.32)); }
.who__chip {
  position: absolute; bottom: 22px; left: 22px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 0.74rem; font-weight: 600;
  color: #f3cd8e; background: rgba(217,154,69,.12); border: 1px solid rgba(217,154,69,.3);
  padding: 6px 12px; border-radius: 999px;
}
.who__content { display: flex; flex-direction: column; justify-content: center; }
.who__eyebrow { text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.72rem; font-weight: 600; color: #e7b66e; margin: 0 0 10px; }
.who__title { font-family: var(--sans); font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -0.02em; line-height: 1.05; margin: 0 0 18px; }
.who__hi { background: linear-gradient(100deg, #f3cd8e, #d99a45); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.who__text { color: rgba(255,255,255,.62); font-size: 1.04rem; line-height: 1.72; margin: 0 0 30px; max-width: 58ch; }
.who__feats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.who__ic { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; color: #f3cd8e; background: rgba(217,154,69,.14); border: 1px solid rgba(217,154,69,.3); margin-bottom: 14px; }
.who__feat-title { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; margin: 0 0 8px; color: #fff; }
.who__feat-text { margin: 0; font-size: 0.92rem; line-height: 1.55; color: rgba(255,255,255,.56); }
.who__cta { align-self: flex-start; margin-top: 32px; }
@media (max-width: 820px) { .who__grid { grid-template-columns: 1fr; gap: 34px; } .who__visual { min-height: 280px; } }
@media (max-width: 520px) { .who__feats { grid-template-columns: 1fr; gap: 22px; } }

/* ================= Contact page ================= */
.cpage {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(180deg, #15120d 0%, #0d0a06 100%);
  color: #fff;
  padding: clamp(112px, 15vw, 172px) 0 clamp(72px, 9vw, 112px);
}
.cpage__bg { position: absolute; inset: 0; z-index: -1; }
.cpage__bg::before {
  content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 820px; height: 520px;
  background: radial-gradient(ellipse at center, rgba(231,182,110,.22), transparent 64%);
  filter: blur(24px);
}
.cpage__ghost {
  position: absolute; top: clamp(46px, 8vw, 110px); left: 50%; transform: translateX(-50%);
  z-index: -1; font-family: var(--sans); font-weight: 800;
  font-size: clamp(5rem, 17vw, 15rem); line-height: 1; letter-spacing: -0.04em;
  color: rgba(255,255,255,.035); white-space: nowrap; pointer-events: none;
}
.cpage__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.cpage__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  font-size: 0.82rem; font-weight: 600; color: #fff;
}
.cpage__chip svg { color: #e7b66e; }
.cpage__title { font-family: var(--sans); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 16px; }
.cpage__sub { color: rgba(255,255,255,.6); font-size: 1.05rem; line-height: 1.7; max-width: 46ch; margin: 0 0 36px; }
.cpage__cards { display: flex; flex-direction: column; gap: 14px; max-width: 480px; }
.ccard {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: 16px;
  background: linear-gradient(170deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
a.ccard:hover { border-color: rgba(217,154,69,.5); transform: translateY(-2px); background: rgba(217,154,69,.08); }
.ccard__ic { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; color: #f3cd8e; background: rgba(217,154,69,.14); border: 1px solid rgba(217,154,69,.3); }
.ccard__txt { display: flex; flex-direction: column; gap: 3px; }
.ccard__txt strong { font-size: 1rem; }
.ccard__txt span { color: rgba(255,255,255,.6); font-size: 0.92rem; }
.ccard__go { margin-left: auto; display: inline-flex; color: rgba(255,255,255,.45); transition: color .2s ease, transform .2s ease; }
a.ccard:hover .ccard__go { color: #f3cd8e; transform: translate(2px,-2px); }

.cform { display: flex; flex-direction: column; gap: 14px; }
.cfield {
  display: flex; flex-direction: column; gap: 5px;
  padding: 12px 18px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  transition: border-color .2s ease, background .2s ease;
}
.cfield:focus-within { border-color: rgba(217,154,69,.55); background: rgba(217,154,69,.05); }
.cfield label { font-size: 0.78rem; color: rgba(255,255,255,.55); font-weight: 500; }
.cfield input, .cfield textarea { background: transparent; border: 0; outline: 0; color: #fff; font: inherit; font-size: 1rem; width: 100%; resize: vertical; }
.cfield input::placeholder, .cfield textarea::placeholder { color: rgba(255,255,255,.32); }
.cconsent { display: flex; align-items: center; gap: 11px; font-size: 0.85rem; color: rgba(255,255,255,.6); margin-top: 2px; cursor: pointer; user-select: none; }
.cform__submit {
  margin-top: 6px; padding: 16px; border: 0; border-radius: 14px; cursor: pointer;
  font-weight: 700; font-size: 1rem; color: #2a1c08;
  background: linear-gradient(180deg, #f0c074, #d99a45);
  box-shadow: 0 16px 36px -14px rgba(217,154,69,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cform__submit:hover { transform: translateY(-2px); box-shadow: 0 20px 46px -14px rgba(217,154,69,.78); }

.cfoot { background: #0d0a06; border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.cfoot__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.5); font-size: 0.88rem; }
.cfoot__inner p { margin: 0; }
.cfoot__logo { font-family: var(--sans); font-weight: 700; letter-spacing: 0.04em; color: rgba(255,255,255,.72); }
.cfoot__logo strong { color: #e7b66e; }
@media (max-width: 820px) {
  .cpage__inner { grid-template-columns: 1fr; gap: 40px; }
  .cpage__cards { max-width: none; }
  .cfoot__inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* What we do / Why we do it — dark, numbered */
.abt-ww { background: #0d0a06; color: #fff; padding: clamp(72px, 10vw, 112px) 0; }
.abt-ww__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
}
.ww { position: relative; }
/* hairline divider between the two columns */
.abt-ww__grid .ww:last-child::before {
  content: "";
  position: absolute;
  left: clamp(-20px, -3vw, -44px); top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.14) 18%, rgba(255,255,255,.14) 82%, transparent);
}
.ww__num {
  display: block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  background: linear-gradient(160deg, #6f7d8f, #2f3a47);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ww__num--warm { background: linear-gradient(160deg, #f3cd8e, #b9802f); -webkit-background-clip: text; background-clip: text; }
.ww__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-500);
  margin: 0 0 12px;
}
.ww__eyebrow--warm { color: #e7b66e; }
.ww__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 18px;
}
.ww__text {
  color: rgba(255,255,255,.6);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 16px;
  max-width: 52ch;
}
.ww__text:last-child { margin-bottom: 0; }

/* Values — dark cards with gradient accent + glow */
.abt-values { background: #0d0a06; color: #fff; padding: clamp(72px, 9vw, 104px) 0; }
.abt-values__head { text-align: center; margin-bottom: 52px; }
.abt-values__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #e7b66e;
  margin: 0 0 12px;
}
.abt-values__title {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: #fff;
  margin: 0;
}
.abt-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vcard {
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.vcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d99a45, #f0c074);
  opacity: .55;
  transition: opacity .3s ease;
}
.vcard:hover {
  transform: translateY(-6px);
  border-color: rgba(217,154,69,.5);
  box-shadow: 0 30px 56px -28px rgba(0,0,0,.8), 0 0 34px -10px rgba(217,154,69,.35);
}
.vcard:hover::before { opacity: 1; }
.vcard__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 13px;
  color: #f3cd8e;
  background: rgba(217,154,69,.14);
  border: 1px solid rgba(217,154,69,.3);
  margin-bottom: 18px;
}
.vcard__title { font-family: var(--sans); font-weight: 700; font-size: 1.1rem; color: #fff; margin: 0 0 9px; }
.vcard__text { color: rgba(255,255,255,.58); font-size: 0.94rem; line-height: 1.6; margin: 0; }

/* Closing CTA */
.abt-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0d0a06;
  color: #fff;
  padding: clamp(80px, 11vw, 128px) 0;
  text-align: center;
}
.abt-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(55% 75% at 50% 50%, rgba(231,182,110,.12), transparent 70%);
}
.abt-cta__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 16px;
}
.abt-cta__text {
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0 auto 34px;
  max-width: 48ch;
}
@media (max-width: 860px) {
  .abt-values__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .abt-ww__grid { grid-template-columns: 1fr; gap: 44px; }
  .abt-ww__grid .ww:last-child::before { display: none; }
}
@media (max-width: 480px) {
  .abt-values__grid { grid-template-columns: 1fr; }
}

/* ---------- Tilted dashboard trio ---------- */
.trio { background: var(--paper); padding: 96px 0 120px; overflow: hidden; }
.trio__head { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.trio__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--blue-600);
  margin: 0 0 14px;
}
.trio__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 16px;
}
.trio__lead { font-size: 1.02rem; line-height: 1.6; color: var(--slate-600); margin: 0; }
.trio__stage {
  position: relative;
  perspective: 1800px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.trio__stats {
  margin: 84px auto 0;
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 48px;
  border-top: 1px solid #d9e0ea;
}
.trio__stats div { text-align: center; }
.trio__stats dt {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--ink);
}
.trio__stats dd {
  margin: 10px 0 0;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--slate-600);
}
.tcard {
  background: linear-gradient(180deg, #1c1e26 0%, #121319 100%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  color: #fff;
  padding: 20px;
  box-shadow: 0 34px 70px -28px rgba(0,0,0,.55);
  transform-style: preserve-3d;
  font-size: 0.8rem;
}
.tcard--mid {
  position: relative;
  z-index: 3;
  width: 384px;
  padding: 24px;
  transform: rotateX(6deg);
}
.tcard--left {
  width: 304px;
  z-index: 1;
  transform: rotateX(6deg) rotateY(15deg) scale(.94);
  transform-origin: right center;
}
.tcard--right {
  width: 304px;
  z-index: 1;
  transform: rotateX(6deg) rotateY(-15deg) scale(.94);
  transform-origin: left center;
}
.tcard__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.tcard__head > span:first-child { font-weight: 600; }
.tcard__link { color: #ff7a3c; font-size: 0.72rem; }
.tcard__exp { color: rgba(255,255,255,.4); }

/* markets list */
.mk { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.mk li { display: flex; align-items: center; gap: 10px; }
.mk__ic {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem; flex-shrink: 0;
}
.mk__name { display: flex; flex-direction: column; font-weight: 600; line-height: 1.3; }
.mk__name small { color: #38d39f; font-weight: 500; font-size: 0.66rem; }
.spark { width: 50px; height: 22px; margin-left: auto; }
.spark polyline { fill: none; stroke: #38d39f; stroke-width: 1.6; }
.mk__price { display: flex; flex-direction: column; align-items: flex-end; font-weight: 600; line-height: 1.3; }
.mk__price small { color: rgba(255,255,255,.4); font-weight: 500; font-size: 0.66rem; }

/* middle balance card */
.tcard__tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 18px;
}
.tcard__tabs span {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  border-radius: 7px;
  color: rgba(255,255,255,.5);
  font-size: 0.72rem;
}
.tcard__tabs .is-active { background: rgba(255,255,255,.1); color: #fff; }
.bal__amt { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.01em; }
.bal__amt small { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,.45); }
.chart { width: 100%; height: 86px; margin: 12px 0 14px; }
.chart polyline { fill: none; stroke: #ff7a3c; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bal__foot { display: flex; justify-content: space-between; color: rgba(255,255,255,.5); }
.bal__foot .up { color: #38d39f; }

/* exchange card */
.ex__pair {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.ex__pair small { color: rgba(255,255,255,.4); font-weight: 500; font-size: 0.66rem; }
.ex__row { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.ex__name { font-weight: 600; }
.ex__val { margin-left: auto; font-weight: 600; }
.ex__swap {
  display: block;
  width: 30px; height: 30px;
  margin: 2px auto;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  text-align: center;
  line-height: 30px;
  color: rgba(255,255,255,.7);
}

/* desktop hover: pop + chart draw + number pop-in */
@media (hover: hover) and (min-width: 881px) {
  .tcard {
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
    cursor: pointer;
  }
  .tcard--mid:hover {
    transform: rotateX(0deg) translateY(-14px) scale(1.06);
    z-index: 9;
    box-shadow: 0 54px 96px -30px rgba(0,0,0,.62);
  }
  .tcard--left:hover {
    transform: rotateX(3deg) rotateY(8deg) translateY(-12px) scale(.97);
    z-index: 9;
    box-shadow: 0 50px 90px -30px rgba(0,0,0,.55);
  }
  .tcard--right:hover {
    transform: rotateX(3deg) rotateY(-8deg) translateY(-12px) scale(.97);
    z-index: 9;
    box-shadow: 0 50px 90px -30px rgba(0,0,0,.55);
  }

  /* line graph flows in */
  .chart polyline, .spark polyline { stroke-dasharray: 1; stroke-dashoffset: 0; }
  .tcard:hover .chart polyline { animation: drawLine 1s ease forwards; }
  .tcard:hover .spark polyline { animation: drawLine .7s ease forwards; }
  @keyframes drawLine {
    from { stroke-dashoffset: 1; }
    to   { stroke-dashoffset: 0; }
  }

  /* numbers pop in */
  /* every number: each character pops in one at a time */
  .js-split .ch { display: inline-block; }
  .tcard:hover .js-split .ch {
    animation: popIn .4s cubic-bezier(.2,.9,.3,1.2) both;
    animation-delay: calc(var(--i) * .05s);
  }
  @keyframes popIn {
    0%   { opacity: 0; transform: translateY(7px) scale(.82); }
    60%  { transform: translateY(0) scale(1.07); }
    100% { opacity: 1; transform: scale(1); }
  }
}

/* split-number wrapper stays a single inline run so flex-column
   parents (.mk__name, .mk__price) don't stack each character */
.numwrap { display: inline; white-space: nowrap; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .panels {
    grid-template-columns: 1fr;
    transform: none;
    margin-top: 30px;
    gap: 18px;
  }
  .panel { border-radius: var(--radius); }
  .panel--expertise { margin-bottom: 0; }
  .overview__grid { grid-template-columns: 1fr; }
  .showcase__head { flex-direction: column; align-items: flex-start; gap: 22px; }
  .showcase__lead { max-width: none; }
}

@media (max-width: 760px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy-900);
    border-top: 1px solid var(--line);
    padding: 16px 24px 24px;
  }
  .site-header.nav-open .nav__list { flex-direction: column; gap: 4px; }
  .site-header.nav-open .nav__link { display: block; padding: 12px 0; }
  .site-header:not(.is-scrolled).nav-open { background: var(--navy-900); }

  .hero { padding-top: calc(var(--header-h) + 48px); }
  .contact__inner { grid-template-columns: 1fr; gap: 44px; }
  .inquiry__form { grid-template-columns: 1fr; }
  .inquiry__submit { justify-self: stretch; }
  .mock__body { grid-template-columns: 1fr; }
  .mock__side { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .mock__cols { grid-template-columns: 1fr; }
  .trio__stage { flex-direction: column; perspective: none; gap: 18px; }
  .tcard { transform: none !important; margin: 0 !important; width: 100% !important; max-width: 340px; }
  .trio__stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; max-width: 380px; }

  .dashtrio { height: 320px; margin-top: 36px; max-width: 360px; }
  .dpanel { width: 240px; }
  .dpanel[data-slot="left"]  { transform: translate(-50%, -50%) translateX(-150px) translateZ(-40px) rotateY(24deg) scale(.8); }
  .dpanel[data-slot="right"] { transform: translate(-50%, -50%) translateX(150px) translateZ(-40px) rotateY(-24deg) scale(.8); }
  .dashtrio__warp { width: 230%; opacity: .7; }
}

@media (max-width: 460px) {
  .dashtrio { margin-top: 28px; }
}

@media (max-width: 880px) {
  .showcase__cards, .leaders { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .showcase__cards > .scard, .leader { margin-top: 0 !important; }
  .vm { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; margin-bottom: 40px; }
  .frontier__inner { grid-template-columns: 1fr; gap: 40px; }
  .frontier__media img { max-height: 460px; }
}

@media (max-width: 480px) {
  .metrics { grid-template-columns: 1fr; }
  .metric--photo { min-height: 200px; }
  .expertise-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---- Contact form status message ---- */
.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.2em;
}
.form-status--ok { color: #1a7f4b; }
.form-status--err { color: #c0392b; }
