:root {
  --bg: #11131d;
  --bg-deep: #0d1018;
  --bg-soft: #161a27;
  --surface: rgba(25, 29, 43, .78);
  --surface-2: rgba(28, 33, 49, .92);
  --surface-3: #1a1f2e;
  --line: rgba(185, 195, 225, .13);
  --line-strong: rgba(164, 178, 220, .22);
  --text: #f4f6fb;
  --muted: #a9afc1;
  --muted-2: #7f879d;
  --accent: #6478e9;
  --accent-2: #8091ff;
  --accent-pale: #a6b3ff;
  --positive: #62d7a2;
  --container: 1240px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --header-h: 76px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 540px at 28% 8%, rgba(76, 87, 160, .12), transparent 65%),
    linear-gradient(180deg, #11131d 0%, #0f121b 50%, #0d1018 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, svg { display: block; }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.icon-sm { width: 16px; height: 16px; }
.inline-icon { width: 17px; height: 17px; display: inline-block; vertical-align: -3px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.page-shell { overflow: clip; }
.section { position: relative; padding: 112px 0; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(13, 16, 24, .78);
  border-color: rgba(185, 195, 225, .1);
  backdrop-filter: blur(18px) saturate(130%);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 720; letter-spacing: -.02em; white-space: nowrap; }
.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(198, 207, 235, .45);
  border-radius: 7px;
  display: inline-block;
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}
.brand-mark span { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #cbd3f7; }
.brand-mark span:nth-child(1) { left: 6px; top: 7px; }
.brand-mark span:nth-child(2) { right: 6px; top: 7px; }
.brand-mark span:nth-child(3) { left: 12px; bottom: 6px; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; height: 1px; background: rgba(203,211,247,.55); transform-origin: left center; }
.brand-mark::before { width: 10px; left: 8px; top: 10px; transform: rotate(30deg); }
.brand-mark::after { width: 10px; left: 8px; top: 18px; transform: rotate(-30deg); }

.desktop-nav { display: flex; align-items: center; gap: 30px; color: #c1c6d6; font-size: 14px; }
.desktop-nav a { position: relative; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
.desktop-nav a.active::after { content: ""; position: absolute; left: 50%; bottom: -13px; width: 18px; height: 2px; border-radius: 10px; background: var(--accent-2); transform: translateX(-50%); box-shadow: 0 0 12px rgba(128,145,255,.7); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 11px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(128,145,255,.4); outline-offset: 3px; }
.btn-sm { min-height: 40px; padding-inline: 17px; font-size: 13px; }
.btn-lg { min-height: 54px; padding-inline: 24px; }
.btn-primary { color: white; background: linear-gradient(135deg, #586ede 0%, #7186f4 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 28px rgba(70, 85, 182, .26); border-color: rgba(138,154,255,.5); }
.btn-primary:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 15px 34px rgba(70, 85, 182, .34); background: linear-gradient(135deg, #6075e4 0%, #7a8ef9 100%); }
.btn-ghost { color: #eef1fa; background: rgba(255,255,255,.018); border-color: rgba(191, 201, 229, .28); box-shadow: inset 0 1px 0 rgba(255,255,255,.015); }
.btn-ghost:hover { background: rgba(255,255,255,.05); border-color: rgba(191,201,229,.42); }
.btn-secondary { color: #dce3ff; background: rgba(91,110,219,.12); border-color: rgba(128,145,255,.25); }

.join-dropdown { position: relative; }
.join-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 210px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(20,24,36,.96);
  border-radius: 13px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .2s ease;
}
.join-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.join-menu a { display: block; padding: 12px 13px; border-radius: 8px; color: #d9dfef; font-size: 13px; }
.join-menu a:hover { background: rgba(128,145,255,.09); color: #fff; }

.mobile-menu-btn { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(255,255,255,.025); color: white; align-items: center; justify-content: center; }
.mobile-menu-btn .menu-close { display: none; }
.mobile-menu-btn[aria-expanded="true"] .menu-open { display: none; }
.mobile-menu-btn[aria-expanded="true"] .menu-close { display: block; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 860px;
  padding-top: calc(var(--header-h) + 95px);
  padding-bottom: 94px;
  overflow: hidden;
  border-bottom: 1px solid rgba(187,197,227,.08);
}
.section-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(177,187,218,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177,187,218,.045) 1px, transparent 1px),
    repeating-linear-gradient(120deg, transparent 0 34px, rgba(180,190,219,.025) 35px, transparent 36px 62px);
  background-size: 72px 72px, 72px 72px, auto;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.92) 62%, transparent 100%);
  pointer-events: none;
}
.hero::after { content: ""; position: absolute; width: 880px; height: 880px; right: -360px; top: -280px; border: 1px solid rgba(128,145,255,.12); border-radius: 50%; box-shadow: 0 0 0 100px rgba(111,129,230,.02), 0 0 0 220px rgba(111,129,230,.018); pointer-events: none; }
.ambient { position: absolute; border-radius: 50%; filter: blur(0px); pointer-events: none; }
.ambient-a { width: 720px; height: 520px; left: 5%; top: 170px; background: radial-gradient(circle, rgba(86,100,185,.14), transparent 67%); }
.ambient-b { width: 700px; height: 480px; right: 2%; bottom: -60px; background: radial-gradient(circle, rgba(39,102,128,.13), transparent 70%); }
.slash { position: absolute; width: 850px; height: 1px; background: linear-gradient(90deg, transparent, rgba(147,164,225,.72), transparent); transform: rotate(24deg); box-shadow: 0 0 12px rgba(119,139,220,.25); }
.slash-a { left: -190px; top: 170px; }
.slash-b { left: -290px; bottom: 110px; transform: rotate(24deg); opacity: .6; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: 62px; align-items: center; }
.hero-copy { max-width: 590px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #9dadf0; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 760; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #7e91ff; box-shadow: 0 0 16px rgba(126,145,255,.9); }
.eyebrow-centered { justify-content: center; }
.hero h1 { margin: 20px 0 20px; font-size: clamp(54px, 6vw, 82px); line-height: .98; letter-spacing: -.055em; font-weight: 760; }
.hero h1 span { position: relative; }
.hero h1 span::after { content: ""; display: inline-block; width: .14em; height: .14em; margin-left: .05em; border-radius: 50%; background: var(--accent-2); vertical-align: .03em; box-shadow: 0 0 18px rgba(128,145,255,.65); }
.hero-lead { max-width: 590px; margin: 0; color: #b7bdcc; font-size: 17px; line-height: 1.72; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.login-note { color: #949caf; font-size: 13px; margin: 16px 0 0; }
.login-note a, .text-link { color: #9fb0ff; font-weight: 650; }
.hero-proof { margin-top: 55px; padding-top: 26px; border-top: 1px solid rgba(190,199,228,.11); display: grid; gap: 0; }
.hero-proof > div { display: flex; align-items: center; gap: 14px; padding: 17px 0; color: #aeb5c5; }
.hero-proof > div + div { border-top: 1px solid rgba(190,199,228,.08); }
.hero-proof .icon { width: 38px; height: 38px; padding: 9px; border: 1px solid rgba(195,205,235,.17); border-radius: 10px; color: #b6c1f4; background: rgba(255,255,255,.018); }
.hero-proof span { display: grid; gap: 3px; }
.hero-proof b { color: #f1f3fa; font-size: 13px; }
.hero-proof small { color: #949bad; font-size: 12px; line-height: 1.5; }

.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; perspective: 1100px; }
.visual-orbit { position: absolute; border: 1px solid rgba(117,136,231,.11); border-radius: 50%; transform: rotate(-9deg); }
.orbit-one { width: 600px; height: 240px; bottom: 82px; }
.orbit-two { width: 470px; height: 185px; bottom: 110px; opacity: .75; }
.dashboard-stage { --rx: 0deg; --ry: 0deg; --mx: 0px; --my: 0px; width: min(100%, 650px); position: relative; z-index: 2; transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry)) translate(var(--mx), var(--my)); transition: transform .18s ease-out; transform-style: preserve-3d; }
.dashboard-shell { position: relative; border: 1px solid rgba(177,190,234,.19); border-radius: 19px; padding: 20px; background: linear-gradient(160deg, rgba(30,36,55,.97), rgba(18,22,34,.95)); box-shadow: 0 35px 80px rgba(0,0,0,.37), inset 0 1px 0 rgba(255,255,255,.035), 0 0 60px rgba(77,96,192,.09); overflow: hidden; }
.dashboard-shell::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 20%, rgba(118,138,234,.07) 47%, transparent 70%); pointer-events: none; }
.dashboard-topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 16px; position: relative; z-index: 1; }
.dashboard-topbar > div { display: grid; gap: 5px; }
.dashboard-label { color: #8993aa; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; }
.dashboard-topbar strong { font-size: 15px; letter-spacing: -.02em; }
.live-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border: 1px solid rgba(98,215,162,.15); border-radius: 999px; color: #90e6bd; background: rgba(77,172,128,.07); font-size: 10px; }
.live-pill i { width: 5px; height: 5px; border-radius: 50%; background: var(--positive); box-shadow: 0 0 10px rgba(98,215,162,.8); }
.dashboard-primary-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 12px; }
.dash-card, .metric-card { border: 1px solid rgba(181,192,228,.13); background: linear-gradient(155deg, rgba(31,37,56,.88), rgba(21,25,39,.9)); border-radius: 13px; box-shadow: inset 0 1px 0 rgba(255,255,255,.02); }
.dash-card { padding: 14px; }
.card-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #c9cede; font-size: 11px; margin-bottom: 7px; }
.positive { color: var(--positive) !important; }
.muted { color: #788096; }
.line-chart { width: 100%; height: 160px; overflow: visible; }
.chart-grid-lines path { stroke: rgba(174,187,223,.075); stroke-width: 1; }
.chart-area { fill: url(#chartArea); }
.chart-line-path { fill: none; stroke: url(#chartLine); stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 0 9px rgba(122,144,255,.45)); stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw-line 1.8s .35s var(--ease) forwards; }
.chart-point { fill: #a9b6ff; filter: drop-shadow(0 0 8px rgba(128,145,255,.9)); }
.chart-legend { display: flex; justify-content: space-between; gap: 10px; color: #737c91; font-size: 9px; margin-top: -4px; }
.donut-card { min-width: 0; }
.donut-wrap { min-height: 174px; display: grid; align-items: center; justify-items: center; gap: 12px; }
.donut { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(#7b8dff 0 38%, #6073d9 38% 64%, #46588f 64% 84%, #2f3959 84% 100%); box-shadow: 0 0 22px rgba(94,113,218,.16); }
.donut-hole { width: 64px; height: 64px; border-radius: 50%; background: #171c2a; display: grid; place-content: center; text-align: center; box-shadow: inset 0 0 0 1px rgba(192,201,230,.08); }
.donut-hole b { font-size: 17px; }
.donut-hole small { color: #7f879a; font-size: 8px; }
.donut-list { width: 100%; margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.donut-list li { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 6px; color: #8f97a9; font-size: 8px; }
.donut-list b { color: #bec5d5; font-size: 8px; }
.dot { width: 5px; height: 5px; border-radius: 50%; }
.dot-a { background: #7b8dff; }.dot-b { background: #6073d9; }.dot-c { background: #46588f; }.dot-d { background: #2f3959; }
.dashboard-metrics { margin-top: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.metric-card { padding: 13px 12px; display: grid; gap: 4px; min-width: 0; }
.metric-card span { color: #858da1; font-size: 9px; }
.metric-card strong { color: #f4f6fb; font-size: clamp(14px, 1.5vw, 19px); letter-spacing: -.03em; }
.metric-card small { font-size: 8px; }
.dashboard-base { position: relative; height: 112px; margin-top: -10px; transform: perspective(900px) rotateX(66deg); transform-origin: top center; }
.dashboard-base::before { content: ""; position: absolute; left: 9%; right: 9%; top: 20px; height: 45px; border-radius: 50%; background: radial-gradient(ellipse, rgba(101,123,244,.43) 0%, rgba(89,105,214,.12) 37%, transparent 70%); filter: blur(5px); }
.base-ring { position: absolute; left: 50%; border-radius: 50%; border: 1px solid rgba(111,135,255,.42); box-shadow: 0 0 18px rgba(84,103,213,.16); transform: translateX(-50%); }
.base-ring-1 { width: 92%; height: 85px; top: 0; }.base-ring-2 { width: 76%; height: 65px; top: 9px; opacity: .65; }.base-ring-3 { width: 56%; height: 44px; top: 18px; opacity: .42; }

.section-heading { max-width: 690px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .partner-copy h2, .platform-heading h2, .about-panel h2, .cta-panel h2 { margin: 14px 0 16px; font-size: clamp(36px, 4vw, 54px); line-height: 1.07; letter-spacing: -.045em; }
.section-heading p, .partner-copy > p, .platform-heading p, .about-copy p, .cta-panel p { color: #a8afc0; line-height: 1.72; font-size: 16px; }

.why { padding-top: 96px; background: linear-gradient(180deg, rgba(255,255,255,.006), rgba(255,255,255,0)); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 45px; }
.feature-card { min-height: 245px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(150deg, rgba(27,32,48,.8), rgba(18,22,33,.7)); transition: transform .25s var(--ease), border-color .25s ease, background .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(132,150,240,.3); background: linear-gradient(150deg, rgba(32,38,58,.9), rgba(20,24,37,.78)); }
.feature-icon { width: 48px; height: 48px; border-radius: 13px; border: 1px solid rgba(124,143,236,.22); background: radial-gradient(circle at 35% 30%, rgba(113,133,240,.2), rgba(80,96,185,.08)); color: #9eb0ff; display: grid; place-items: center; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.feature-card h3, .platform-card h3 { font-size: 17px; margin: 22px 0 10px; letter-spacing: -.02em; }
.feature-card p, .platform-card p { color: #9ea5b6; margin: 0; line-height: 1.67; font-size: 14px; }

.partner-section { padding-top: 52px; padding-bottom: 52px; }
.partner-panel { position: relative; min-height: 530px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(27,32,48,.9), rgba(15,19,29,.8)); overflow: hidden; display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; }
.partner-panel::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(182,191,218,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(182,191,218,.025) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, #000, transparent 74%); }
.partner-copy { position: relative; z-index: 2; align-self: center; padding: 70px 78px 70px 20px; max-width: 620px; }
.affiliate-panel .partner-copy { padding-left: 42px; }
.advertiser-panel { grid-template-columns: 1.1fr .9fr; }
.advertiser-panel .partner-copy { padding-left: 78px; padding-right: 32px; }
.check-list { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 18px; color: #b4bbcb; font-size: 13px; }
.check-list li { display: flex; align-items: center; gap: 9px; }
.check-list .icon { width: 17px; height: 17px; color: #91a4ff; padding: 2px; border-radius: 50%; background: rgba(120,140,240,.1); }
.partner-art { min-height: 100%; position: relative; display: grid; place-items: center; }
.art-glow { position: absolute; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(83,103,215,.2), transparent 65%); }
.person-orb { position: relative; width: 170px; height: 170px; border-radius: 50%; border: 1px solid rgba(143,160,244,.35); background: radial-gradient(circle at 40% 28%, rgba(130,148,245,.28), rgba(46,57,105,.2) 40%, rgba(17,21,34,.9) 72%); box-shadow: 0 0 60px rgba(84,105,220,.16), inset 0 0 30px rgba(126,144,243,.08); z-index: 2; }
.person-head { position: absolute; width: 46px; height: 46px; border-radius: 50%; left: 50%; top: 34px; transform: translateX(-50%); background: linear-gradient(145deg, #98a8fb, #687cd7); box-shadow: 0 0 22px rgba(127,148,255,.35); }
.person-body { position: absolute; width: 92px; height: 57px; border-radius: 54px 54px 28px 28px; left: 50%; bottom: 27px; transform: translateX(-50%); background: linear-gradient(145deg, #7589e5, #4e63bb); }
.float-badge { position: absolute; z-index: 3; width: 48px; height: 48px; border-radius: 13px; border: 1px solid rgba(130,149,243,.22); background: rgba(31,38,60,.92); color: #98aaff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.float-badge .icon { width: 20px; height: 20px; }
.badge-1 { top: 24%; left: 20%; animation: floaty 4s ease-in-out infinite; }.badge-2 { right: 17%; top: 36%; animation: floaty 4.8s .4s ease-in-out infinite; }.badge-3 { left: 27%; bottom: 24%; animation: floaty 5.2s .9s ease-in-out infinite; }
.art-platform { position: absolute; bottom: 75px; width: 330px; height: 68px; border-radius: 50%; border: 1px solid rgba(103,126,244,.28); transform: perspective(700px) rotateX(67deg); box-shadow: 0 0 26px rgba(79,99,210,.16); }
.art-platform::after { content: ""; position: absolute; inset: 10px 26px; border-radius: 50%; border: 1px solid rgba(117,139,255,.22); }
.art-platform i:first-child { position: absolute; inset: 18px 60px; border-radius: 50%; background: rgba(102,125,245,.12); filter: blur(7px); }
.target-3d { position: relative; z-index: 2; width: 220px; height: 220px; display: grid; place-items: center; transform: rotate(-7deg); }
.target-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(146,162,246,.56); box-shadow: inset 0 0 20px rgba(100,122,235,.14), 0 0 26px rgba(77,96,203,.14); }
.ring-outer { width: 190px; height: 190px; background: rgba(41,50,82,.36); }.ring-middle { width: 132px; height: 132px; background: rgba(68,82,142,.3); }.ring-inner { width: 78px; height: 78px; background: rgba(91,110,204,.35); }
.target-core { width: 30px; height: 30px; border-radius: 50%; background: #91a4ff; box-shadow: 0 0 30px rgba(130,150,255,.48); }
.target-arrow { position: absolute; width: 125px; height: 5px; border-radius: 5px; background: linear-gradient(90deg, #b7c2ff, #6f82e5); transform: rotate(-42deg) translate(24px,-34px); box-shadow: 0 0 10px rgba(120,142,255,.3); }
.target-arrow::after { content: ""; position: absolute; right: -12px; top: -5px; border-left: 14px solid #7e92ef; border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
.float-avatar { position: absolute; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(130,149,243,.25); background: radial-gradient(circle at 50% 35%, #8396ed 0 18%, transparent 19%), radial-gradient(ellipse at 50% 72%, #5e72ca 0 30%, transparent 31%), #202941; box-shadow: 0 10px 25px rgba(0,0,0,.24); }
.avatar-a { top: 30%; left: 18%; animation: floaty 4.5s ease-in-out infinite; }.avatar-b { top: 28%; right: 16%; animation: floaty 5s .7s ease-in-out infinite; }.avatar-c { bottom: 22%; right: 27%; animation: floaty 4.6s .2s ease-in-out infinite; }

.process { padding-top: 112px; padding-bottom: 122px; }
.process-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { position: relative; text-align: center; padding: 0 26px; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 47px; right: -21%; width: 42%; border-top: 1px dashed rgba(141,156,208,.3); }
.step-number { display: inline-flex; width: 29px; height: 29px; border-radius: 50%; align-items: center; justify-content: center; color: #cbd4ff; border: 1px solid rgba(126,146,244,.35); background: rgba(87,104,199,.15); font-size: 9px; font-weight: 800; position: absolute; left: calc(50% - 51px); top: -3px; z-index: 2; }
.step-icon { width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; color: #a8b6ff; border: 1px solid rgba(126,146,244,.26); background: radial-gradient(circle at 38% 30%, rgba(122,142,247,.2), rgba(38,46,77,.3)); box-shadow: 0 14px 30px rgba(0,0,0,.15); position: relative; z-index: 1; }
.step-icon .icon { width: 28px; height: 28px; }
.process-step h3 { margin: 0 0 10px; font-size: 16px; }
.process-step p { color: #969eaf; line-height: 1.62; font-size: 13px; margin: 0; }

.platform { padding-top: 70px; }
.platform-shell { border-radius: var(--radius-xl); border: 1px solid var(--line); padding: 62px; background: linear-gradient(130deg, rgba(28,33,50,.92), rgba(14,18,28,.88)); display: grid; grid-template-columns: .72fr 1.28fr; gap: 58px; align-items: center; position: relative; overflow: hidden; }
.platform-shell::after { content: ""; position: absolute; width: 520px; height: 520px; right: -250px; top: -250px; border-radius: 50%; border: 1px solid rgba(115,136,239,.1); box-shadow: 0 0 0 80px rgba(115,136,239,.015), 0 0 0 160px rgba(115,136,239,.012); }
.platform-heading { position: relative; z-index: 2; }
.platform-heading h2 { font-size: clamp(34px, 3.6vw, 50px); }
.text-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: 13px; }
.platform-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; position: relative; z-index: 2; }
.platform-card { min-height: 235px; padding: 25px; border: 1px solid rgba(185,195,225,.12); border-radius: 16px; background: rgba(255,255,255,.018); }

.offers { padding-bottom: 90px; }
.offers-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 78px; align-items: center; }
.offers .section-heading .btn { margin-top: 18px; }
.vertical-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
.vertical-grid span { min-height: 74px; display: flex; align-items: center; padding: 0 20px; border: 1px solid rgba(184,194,225,.12); border-radius: 13px; background: linear-gradient(145deg, rgba(28,33,50,.65), rgba(17,21,32,.55)); color: #c9cedc; font-size: 14px; position: relative; overflow: hidden; }
.vertical-grid span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #7f92ff; box-shadow: 0 0 12px rgba(127,146,255,.65); margin-right: 11px; }
.vertical-grid span:last-child { color: #92a3ee; border-color: rgba(118,137,232,.2); }

.about { padding-top: 62px; }
.about-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; padding: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-copy { display: grid; gap: 3px; }
.about-copy p { margin: 0 0 13px; }

.final-cta { padding-top: 78px; padding-bottom: 95px; }
.cta-panel { position: relative; overflow: hidden; border: 1px solid rgba(133,150,237,.24); border-radius: var(--radius-xl); padding: 55px 62px; background: linear-gradient(118deg, rgba(53,64,116,.28), rgba(26,31,48,.82) 47%, rgba(17,21,33,.91)); display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.cta-panel::before { content: ""; position: absolute; width: 700px; height: 1px; left: -100px; top: 60px; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(132,151,242,.45), transparent); }
.cta-copy { max-width: 650px; position: relative; z-index: 1; }
.cta-panel h2 { font-size: clamp(36px, 4vw, 52px); }
.cta-panel p { margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; position: relative; z-index: 1; }

.footer { border-top: 1px solid rgba(185,195,225,.08); background: rgba(10,13,20,.62); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .8fr .9fr; gap: 56px; }
.footer-brand p { color: #8e96a9; line-height: 1.7; font-size: 13px; max-width: 340px; margin: 18px 0; }
.status-line { display: inline-flex; align-items: center; gap: 8px; color: #8e96a9; font-size: 12px; }
.status-line i { width: 6px; height: 6px; border-radius: 50%; background: #52d692; box-shadow: 0 0 10px rgba(82,214,146,.55); }
.footer-column { display: grid; align-content: start; gap: 12px; }
.footer-column h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .13em; color: #c8cedd; margin: 3px 0 8px; }
.footer-column a { color: #858ea1; font-size: 13px; transition: color .2s ease; }
.footer-column a:hover { color: #e2e6f1; }
.footer-bottom { margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(185,195,225,.07); display: flex; justify-content: space-between; gap: 20px; color: #6f778a; font-size: 11px; }

.link-toast { position: fixed; z-index: 2000; left: 50%; bottom: 24px; transform: translate(-50%, 18px); max-width: min(92vw, 520px); padding: 12px 16px; border: 1px solid rgba(128,145,255,.28); border-radius: 12px; background: rgba(19,23,35,.95); color: #dce2f2; box-shadow: 0 18px 45px rgba(0,0,0,.38); backdrop-filter: blur(16px); font-size: 12px; opacity: 0; visibility: hidden; transition: .25s ease; }
.link-toast.show { opacity: 1; visibility: visible; transform: translate(-50%,0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 1120px) {
  :root { --container: 1030px; }
  .desktop-nav { gap: 19px; }
  .hero-grid { gap: 34px; }
  .hero { min-height: 810px; }
  .dashboard-shell { padding: 16px; }
  .platform-shell { padding: 48px; grid-template-columns: .8fr 1.2fr; gap: 34px; }
  .platform-card-grid { grid-template-columns: 1fr; }
  .platform-card { min-height: 0; }
  .partner-copy { padding-right: 42px; }
  .advertiser-panel .partner-copy { padding-left: 50px; }
}

@media (max-width: 960px) {
  :root { --header-h: 70px; }
  .container { width: min(calc(100% - 38px), var(--container)); }
  .desktop-nav, .desktop-actions { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .mobile-menu { display: block; position: fixed; z-index: 999; left: 0; right: 0; top: var(--header-h); height: calc(100dvh - var(--header-h)); background: rgba(13,16,24,.98); backdrop-filter: blur(20px); border-top: 1px solid var(--line); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .22s ease; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu-inner { padding-top: 25px; display: grid; gap: 6px; }
  .mobile-menu-inner > a { padding: 14px 8px; color: #d5dbea; border-bottom: 1px solid rgba(185,195,225,.07); font-size: 15px; }
  .mobile-menu-actions { display: grid; gap: 10px; margin-top: 18px; }
  .hero { padding-top: calc(var(--header-h) + 72px); min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { min-height: 590px; }
  .hero-proof { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .hero-proof > div { align-items: flex-start; padding: 16px; border: 1px solid var(--line) !important; border-radius: 13px; background: rgba(255,255,255,.015); }
  .hero-proof > div .icon { width: 34px; height: 34px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .partner-panel, .advertiser-panel { grid-template-columns: 1fr; }
  .partner-art { min-height: 390px; order: 1; }
  .partner-copy { order: 2; padding: 20px 50px 62px !important; max-width: 740px; }
  .advertiser-panel .partner-copy { order: 1; padding-top: 62px !important; padding-bottom: 20px !important; }
  .advertiser-panel .partner-art { order: 2; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 54px 20px; }
  .process-step:not(:last-child)::after { display: none; }
  .platform-shell { grid-template-columns: 1fr; }
  .platform-card-grid { grid-template-columns: repeat(3,1fr); }
  .offers-layout { grid-template-columns: 1fr; gap: 44px; }
  .about-panel { grid-template-columns: 1fr; gap: 26px; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 82px 0; }
  .hero { padding-top: calc(var(--header-h) + 54px); padding-bottom: 74px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 38px; }
  .hero-visual { min-height: 480px; margin-inline: -8px; }
  .dashboard-primary-grid { grid-template-columns: 1fr; }
  .donut-card { display: none; }
  .dashboard-metrics { grid-template-columns: repeat(2,1fr); }
  .dashboard-shell { border-radius: 16px; }
  .line-chart { height: 145px; }
  .visual-orbit { display: none; }
  .dashboard-base { height: 76px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .partner-section { padding-top: 32px; padding-bottom: 32px; }
  .partner-panel { min-height: 0; border-radius: 20px; }
  .partner-art { min-height: 320px; }
  .partner-copy { padding: 16px 24px 44px !important; }
  .advertiser-panel .partner-copy { padding: 44px 24px 15px !important; }
  .check-list { grid-template-columns: 1fr; }
  .art-platform { bottom: 48px; width: 280px; }
  .process-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-step { max-width: 440px; margin-inline: auto; }
  .platform { padding-top: 42px; }
  .platform-shell { padding: 36px 22px; }
  .platform-card-grid { grid-template-columns: 1fr; }
  .vertical-grid { grid-template-columns: 1fr; }
  .about-panel { padding: 45px 0; }
  .cta-panel { padding: 38px 24px; }
  .cta-actions { display: grid; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 40px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 450px) {
  .hero h1 { font-size: 46px; }
  .hero-visual { min-height: 430px; margin-inline: -15px; }
  .dashboard-shell { padding: 12px; }
  .metric-card { padding: 11px; }
  .partner-art { transform: scale(.9); margin: -15px 0; }
  .section-heading h2, .partner-copy h2, .platform-heading h2, .about-panel h2, .cta-panel h2 { font-size: 35px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-column:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   HERO POLISH V2 — visual refinement pass
   ========================================================= */

/* The hero is deliberately calmer than the rest of the page:
   fewer effects, stronger hierarchy, and a clearer relationship
   between the message and the platform preview. */
.hero {
  min-height: 790px;
  padding-top: calc(var(--header-h) + 88px);
  padding-bottom: 72px;
}

.hero::after {
  width: 760px;
  height: 760px;
  right: -345px;
  top: -300px;
  border-color: rgba(128,145,255,.065);
  box-shadow: 0 0 0 110px rgba(111,129,230,.008);
}

.ambient-a {
  width: 700px;
  height: 480px;
  left: 8%;
  top: 180px;
  background: radial-gradient(circle, rgba(86,100,185,.095), transparent 69%);
}

.ambient-b {
  width: 620px;
  height: 420px;
  right: 4%;
  bottom: -50px;
  background: radial-gradient(circle, rgba(39,102,128,.085), transparent 72%);
}

/* Keep the diagonal motif from the login experience, but keep it
   behind the composition instead of cutting across the headline. */
.slash {
  width: 760px;
  background: linear-gradient(90deg, transparent 0%, rgba(147,164,225,.12) 16%, rgba(147,164,225,.32) 50%, rgba(147,164,225,.08) 84%, transparent 100%);
  box-shadow: 0 0 10px rgba(119,139,220,.09);
  opacity: .7;
}
.slash-a { left: 42%; top: 174px; transform: rotate(-8deg); }
.slash-b { left: -270px; bottom: 80px; opacity: .22; }

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(560px, 1.04fr);
  gap: clamp(44px, 5vw, 82px);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
  align-self: center;
  padding-bottom: 18px;
}

.hero h1 {
  margin: 19px 0 22px;
  font-size: clamp(62px, 5.2vw, 76px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 760;
}

.hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-title-accent {
  position: relative;
}

.hero h1 .hero-title-accent::after {
  content: "";
  display: inline-block;
  width: .13em;
  height: .13em;
  margin-left: .055em;
  border-radius: 50%;
  background: var(--accent-2);
  vertical-align: .035em;
  box-shadow: 0 0 15px rgba(128,145,255,.48);
}

/* Disable the legacy generic span dot rule now that the title has
   explicit line elements. */
.hero h1 span:not(.hero-title-accent)::after { content: none; }

.hero-lead {
  max-width: 640px;
  color: #b8bfce;
  font-size: 17px;
  line-height: 1.76;
}

.hero-actions {
  margin-top: 30px;
  gap: 11px;
}

.hero-actions .btn-lg {
  min-height: 52px;
  padding-inline: 22px;
  border-radius: 10px;
}

.login-note { margin-top: 15px; }

.hero-visual {
  min-height: 530px;
  place-items: center;
  transform: translateY(-28px);
}

.dashboard-stage {
  width: min(100%, 655px);
}

.dashboard-shell {
  border-color: rgba(177,190,234,.17);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(29,35,53,.97), rgba(17,21,32,.965));
  box-shadow:
    0 30px 72px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.03),
    0 0 44px rgba(77,96,192,.055);
}

.dashboard-shell::before {
  opacity: .62;
}

.preview-pill {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid rgba(156,170,220,.14);
  border-radius: 999px;
  color: #919bb2;
  background: rgba(255,255,255,.018);
  font-size: 9px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.visual-orbit {
  border-color: rgba(117,136,231,.06);
  opacity: .56;
}
.orbit-one { width: 565px; height: 210px; bottom: 32px; }
.orbit-two { display: none; }

.dashboard-base {
  height: 82px;
  margin-top: -5px;
}
.dashboard-base::before {
  left: 14%;
  right: 14%;
  top: 14px;
  height: 34px;
  background: radial-gradient(ellipse, rgba(101,123,244,.22) 0%, rgba(89,105,214,.07) 40%, transparent 72%);
  filter: blur(8px);
}
.base-ring {
  border-color: rgba(111,135,255,.22);
  box-shadow: 0 0 12px rgba(84,103,213,.07);
}
.base-ring-1 { width: 86%; height: 63px; top: 0; }
.base-ring-2 { width: 65%; height: 45px; top: 9px; opacity: .48; }

/* The platform strengths now live in a dedicated full-width strip,
   so the first viewport is not interrupted by a vertical list. */
.trust-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(185,195,225,.08);
  background: linear-gradient(180deg, rgba(14,17,26,.82), rgba(13,16,24,.68));
}

.trust-strip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92%, 1180px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(128,145,255,.14), transparent);
}

.trust-strip-inner {
  min-height: 106px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 34px;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(185,195,225,.085);
}

.trust-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  border: 1px solid rgba(184,196,232,.13);
  background: linear-gradient(145deg, rgba(128,145,255,.075), rgba(255,255,255,.012));
  color: #aab8f8;
}

.trust-icon .icon { width: 19px; height: 19px; }
.trust-item > span:last-child { min-width: 0; display: grid; gap: 4px; }
.trust-item b { color: #eef1f8; font-size: 13px; letter-spacing: -.01em; }
.trust-item small { color: #878fa2; font-size: 11px; line-height: 1.5; }

/* Smooth the handoff from the hero into the content. */
.why { padding-top: 104px; }

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    gap: 36px;
  }
  .hero h1 { font-size: clamp(58px, 5.4vw, 70px); }
  .hero-visual { transform: translateY(-18px); }
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 76px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-copy { max-width: 760px; padding-bottom: 0; }
  .hero h1 { font-size: clamp(58px, 8vw, 76px); }
  .hero-lead { max-width: 700px; }
  .hero-visual { min-height: 535px; transform: none; }
  .dashboard-stage { width: min(100%, 720px); }
  .slash-a { left: 38%; top: 150px; opacity: .36; }
  .trust-item { padding-inline: 22px; }
}

@media (max-width: 760px) {
  .hero {
    padding-top: calc(var(--header-h) + 52px);
    padding-bottom: 58px;
  }
  .hero-copy { text-align: left; }
  .hero h1 {
    font-size: clamp(48px, 13.2vw, 64px);
    line-height: .99;
    margin-top: 17px;
  }
  .hero-title-line { width: auto; }
  .hero-lead { font-size: 15px; line-height: 1.72; }
  .hero-visual { min-height: 455px; margin-top: 2px; }
  .dashboard-stage { width: 100%; }
  .dashboard-shell { padding: 14px; }
  .dashboard-base { height: 61px; }
  .orbit-one { display: none; }
  .trust-strip-inner { grid-template-columns: 1fr; padding: 8px 0; }
  .trust-item { padding: 17px 2px; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid rgba(185,195,225,.075); }
  .trust-item small { font-size: 11px; }
  .why { padding-top: 82px; }
  .slash-a { left: 45%; top: 145px; opacity: .18; }
  .hero::after { opacity: .5; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(43px, 12.6vw, 55px); letter-spacing: -.05em; }
  .hero-title-line { white-space: normal; }
  .hero-title-line:first-child { white-space: nowrap; }
  .hero-actions { gap: 9px; }
  .hero-actions .btn-lg { min-height: 51px; }
  .hero-visual { min-height: 410px; margin-inline: -6px; }
  .dashboard-topbar { align-items: center; }
  .dashboard-label { font-size: 8px; }
  .dashboard-topbar strong { font-size: 13px; }
  .preview-pill { font-size: 8px; padding-inline: 7px; }
  .dashboard-base { height: 52px; }
  .trust-icon { width: 39px; height: 39px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 42px; }
  .hero-title-line:first-child { white-space: normal; }
  .preview-pill { display: none; }
}

/* Final small-phone fit pass: keep the locked hero line and dashboard
   fully inside common 360–430px viewports. */
@media (max-width: 520px) {
  .hero h1 { font-size: clamp(40px, 10.5vw, 48px); }
  .hero-visual { margin-inline: 0; }
  .dashboard-stage { width: min(100%, calc(100vw - 30px)); }
}

@media (max-width: 370px) {
  .hero h1 { font-size: 40px; }
}


/* Final hero top spacing adjustment */
.hero {
  padding-top: calc(var(--header-h) + 70px);
}

@media (max-width: 1040px) {
  .hero {
    padding-top: calc(var(--header-h) + 54px);
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: calc(var(--header-h) + 34px);
  }
}


/* Desktop only — reduce empty space below hero */
@media (min-width: 1041px) {
  .hero {
    min-height: 760px;
  }
}

/* Compact contact / query area */
.contact-section {
  padding: 18px 0 76px;
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 54px;
  align-items: center;
  padding: 38px 42px;
  border: 1px solid rgba(185,195,225,.11);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 0%, rgba(99,119,231,.12), transparent 38%),
    linear-gradient(135deg, rgba(26,31,47,.86), rgba(14,18,28,.78));
  box-shadow: 0 22px 70px rgba(0,0,0,.2);
}
.contact-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.contact-copy p {
  max-width: 510px;
  margin: 0;
  color: #9ea6b8;
  font-size: 14px;
  line-height: 1.7;
}
.contact-copy a {
  color: #aebaff;
  font-weight: 700;
}
.contact-copy a:hover { color: #dce2ff; }
.query-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}
.query-form input,
.query-form textarea {
  width: 100%;
  border: 1px solid rgba(185,195,225,.14);
  border-radius: 13px;
  background: rgba(8,11,18,.44);
  color: #eef1f8;
  outline: 0;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.query-form input {
  grid-column: 1 / -1;
  min-height: 48px;
  padding: 0 15px;
}
.query-form textarea {
  min-height: 92px;
  resize: vertical;
  padding: 13px 15px;
  line-height: 1.55;
}
.query-form input::placeholder,
.query-form textarea::placeholder { color: #727b91; }
.query-form input:focus,
.query-form textarea:focus {
  border-color: rgba(127,145,255,.58);
  background: rgba(12,15,24,.6);
  box-shadow: 0 0 0 3px rgba(113,132,239,.09);
}
.query-submit {
  min-height: 92px;
  min-width: 142px;
  padding-inline: 19px;
}
.query-hint {
  grid-column: 1 / -1;
  margin: 0 2px;
  color: #6f788c;
  font-size: 10px;
  line-height: 1.45;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 900px) {
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 30px;
  }
}

@media (max-width: 600px) {
  .contact-section { padding: 8px 0 58px; }
  .contact-panel { padding: 28px 20px; border-radius: 18px; }
  .query-form { grid-template-columns: 1fr; }
  .query-form input,
  .query-form textarea,
  .query-submit,
  .query-hint { grid-column: 1; }
  .query-submit { min-height: 50px; width: 100%; }
  .query-form textarea { min-height: 104px; }
}
