:root {
  --ink: #0a0d18;
  --navy: #07194f;
  --blue: #0d3cba;
  --cyan: #62d9ee;
  --ice: #eefbff;
  --muted: #687080;
  --line: #e6e9ef;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 26px 80px rgba(7, 25, 79, 0.15);
  --glass-white: rgba(255,255,255,.62);
  --glass-soft: rgba(238,248,255,.42);
  --glass-border: rgba(255,255,255,.72);
  --glass-blue: rgba(73,185,232,.3);
  --glass-shadow: 0 24px 55px rgba(8,34,96,.16), inset 0 1px 1px rgba(255,255,255,.92);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  background: #fff;
  transition: clip-path 1s cubic-bezier(.76,0,.24,1), visibility 0s 1s;
  clip-path: inset(0 0 0 0);
}
.loader.is-finished { clip-path: inset(0 0 100% 0); visibility: hidden; }
.loader__wash {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, #082372 0%, #1e85c2 40%, #e8fbff 76%, #fff 100%);
  transition: opacity .8s ease 2.25s;
}
.loader.is-revealing .loader__wash { opacity: 1; }
.loader__block {
  position: absolute;
  background: linear-gradient(150deg, #08247b 0%, #4fc9e2 55%, #fff 100%);
  transform-origin: left top;
  transition: transform 1s cubic-bezier(.76,0,.24,1), opacity .25s ease;
}
.loader__block--one { left: 0; top: 11%; width: 44%; height: 49%; transform: scaleX(0); }
.loader__block--two { left: 34%; top: 36%; width: 66%; height: 50%; transform: scaleX(0); transition-delay: .12s; }
.loader.is-revealing .loader__block { transform: scaleX(1); }
.loader__count {
  position: absolute;
  left: clamp(28px, 7vw, 110px);
  bottom: clamp(42px, 8vh, 92px);
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .85;
}
.loader__label {
  position: absolute;
  left: clamp(32px, 7vw, 114px);
  bottom: clamp(20px, 4vh, 42px);
  margin: 0;
  color: #89909c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.loader.is-revealing .loader__count,
.loader.is-revealing .loader__label { opacity: 0; transition: opacity .25s ease; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1400px, calc(100% - 80px));
  height: 96px;
  margin: 0 auto;
  color: #fff;
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: inset 0 0 12px rgba(86,210,235,.45), 0 8px 24px rgba(4,12,50,.15);
}
.brand__mark img { width: 31px; height: 31px; object-fit: contain; }
.brand__text { font-size: 15px; font-weight: 700; letter-spacing: -.02em; white-space: nowrap; }
.brand__text b { font-weight: 400; opacity: .85; }
.main-nav {
  display: flex;
  gap: 1px;
  padding: 4px;
  border: 1px solid rgba(16,17,22,.08);
  border-radius: 999px;
  color: #17181d;
  background: #f5f3f0;
  box-shadow: 0 10px 30px rgba(4,12,35,.12);
  font-size: 12px;
  font-weight: 650;
}
.main-nav a {
  position: relative;
  padding: 10px 17px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  opacity: .72;
  transition: color .22s ease, opacity .22s ease, background .22s ease, transform .22s cubic-bezier(.16,1,.3,1);
}
.main-nav a::after { display: none; }
.main-nav a:hover {
  color: #111217;
  background: rgba(17,18,23,.065);
  opacity: 1;
  transform: translateY(-1px);
}
.main-nav a:active {
  transform: translateY(0) scale(.98);
}
.header-actions { display: flex; justify-content: flex-end; gap: 12px; }

.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: -.01em;
  transform: translateZ(0);
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
  user-select: none;
}
.button::after { display: none; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button:focus-visible,
.main-nav a:focus-visible,
.about__meeting:focus-visible {
  outline: 3px solid rgba(105,176,255,.72);
  outline-offset: 3px;
}

.button--light {
  color: #15161b;
  border: 1px solid rgba(17,18,23,.11);
  background: #f7f5f2;
  box-shadow: 0 8px 24px rgba(4,12,35,.11);
}
.button--light:hover {
  border-color: rgba(17,18,23,.2);
  background: #fff;
  box-shadow: 0 12px 28px rgba(4,12,35,.15);
}
.button--light:active {
  box-shadow: 0 5px 14px rgba(4,12,35,.1);
}

.button--dark {
  color: #ffffff;
  border: 1px solid #111217;
  background: #111217;
  box-shadow: 0 10px 25px rgba(2,8,26,.22);
}
.button--dark:hover {
  border-color: #292a31;
  background: #292a31;
  box-shadow: 0 14px 30px rgba(2,8,26,.28);
}
.button--dark:active {
  box-shadow: 0 5px 14px rgba(2,8,26,.18);
}
.menu-toggle { display: none; }
.nav-login { display: none; }

.hero {
  position: relative;
  min-height: clamp(880px, 100svh, 980px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 32%, rgba(98,217,238,.78) 0, transparent 27%),
    radial-gradient(circle at 80% 30%, rgba(70,181,224,.58) 0, transparent 24%),
    linear-gradient(180deg, #092b93 0%, #0d54ad 20%, #52bad7 43%, #e7faff 67%, #fff 86%);
}
.hero::after {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
  opacity: .14;
  pointer-events: none;
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .45; }
.hero__glow--left { left: -160px; top: 130px; width: 420px; height: 420px; background: #62d9ee; }
.hero__glow--right { right: -90px; top: 100px; width: 360px; height: 360px; background: #1a4ddb; }
.hero__content {
  position: relative;
  z-index: 4;
  padding-top: 176px;
  color: #fff;
  text-align: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 17px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 22px; height: 1px; background: currentColor; opacity: .65; }
.eyebrow--dark { color: #2446a2; }
.hero h1 {
  margin: 0;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 760;
  letter-spacing: -.065em;
  line-height: .98;
}
.hero__intro {
  margin: 22px 0 28px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.55;
}
.button--hero { min-height: 52px; padding: 0 16px 0 23px; }
.button--hero svg { box-sizing: content-box; width: 15px; padding: 7px; border-radius: 50%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; background: rgba(255,255,255,.11); }

.market-visual {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 385px;
  bottom: auto;
  width: min(1000px, 94vw);
  height: auto;
  transform: translateX(-50%);
}
.market-visual__image {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 91%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 91%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-composite: intersect;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 45px rgba(8,30,87,.08));
}
.market-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 650px;
  height: 260px;
  border: 1px solid rgba(14,48,129,.09);
  border-radius: 50%;
  transform: translate(-50%,-50%) rotate(-4deg);
}
.market-badge {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 9px solid rgba(255,255,255,.9);
  border-radius: 50%;
  box-shadow: 0 19px 30px rgba(20,32,72,.18);
  animation: badge-float 4.8s ease-in-out infinite;
}
.market-badge span { font-weight: 800; }
.market-badge--m { left: 32px; top: 268px; background: #fff; }
.market-badge--a { left: 133px; top: 323px; color: #fff; background: #111; animation-delay: -.8s; }
.market-badge--n { left: 224px; top: 294px; color: #d6ff3d; background: #255b18; animation-delay: -1.3s; }
.market-badge--x { right: 208px; top: 319px; color: #fff; background: #111; animation-delay: -.5s; }
.market-badge--f { right: 67px; top: 210px; color: #fff; background: #08156c; animation-delay: -1.6s; }
.market-badge--t { right: 11px; top: 319px; color: #fff; background: #e21d37; animation-delay: -2.1s; }
.market-badge--mf { right: 128px; top: 318px; background: #fff; animation-delay: -.3s; }
.market-badge--mf img { width: 64px; height: 64px; object-fit: contain; }
.market-badge--a span { font: 700 55px/1 Georgia, serif; }
.market-badge--n span { font-size: 25px; letter-spacing: -.12em; }
.market-badge--x span { font-size: 38px; }
.market-badge--f span { padding: 6px; border: 2px solid #fff; border-radius: 50%; font: italic 700 15px Georgia, serif; }
.market-badge--t span { font: 800 50px/1 Georgia, serif; }
.grid-logo { display: grid; grid-template-columns: repeat(2,19px); gap: 4px; }
.grid-logo i { width: 19px; height: 19px; background: #ef4223; }
.grid-logo i:nth-child(2) { background: #79b900; }
.grid-logo i:nth-child(3) { background: #1ca5ef; }
.grid-logo i:nth-child(4) { background: #fbb817; }
.phone-shadow {
  position: absolute;
  z-index: 3;
  left: 51%;
  top: 56%;
  width: 430px;
  height: 130px;
  border-radius: 50%;
  background: rgba(8,21,67,.29);
  filter: blur(33px);
  transform: translate(-50%,-50%) rotate(12deg);
}
.phone {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 310px;
  height: 560px;
  padding: 10px;
  border: 3px solid #0a0c12;
  border-radius: 46px;
  background: linear-gradient(135deg,#20242d,#08090d 60%,#353b47);
  box-shadow: -14px 24px 0 #0a0c12, -25px 40px 48px rgba(7,14,46,.34);
  transform: translate(-50%,-45%) perspective(1000px) rotateX(52deg) rotateZ(31deg) scale(.91);
  transform-style: preserve-3d;
  animation: phone-hover 5s ease-in-out infinite;
}
.phone__edge { position: absolute; inset: 3px; border: 1px solid #596170; border-radius: 42px; pointer-events: none; }
.phone__screen { position: relative; height: 100%; overflow: hidden; padding: 18px 20px; border-radius: 36px; background: #f9fbfc; }
.phone__screen::before { position: absolute; left: 50%; top: 10px; width: 92px; height: 25px; border-radius: 16px; background: #050609; content: ""; transform: translateX(-50%); }
.phone__status { display: flex; justify-content: space-between; color: #66707d; font-size: 9px; }
.phone__status i { width: 22px; height: 8px; border-radius: 5px; background: #dfe4e8; }
.phone__topbar { display: flex; align-items: center; justify-content: space-between; margin-top: 30px; font-size: 13px; font-weight: 800; }
.phone__avatar { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid #dae0e5; border-radius: 50%; background: #fff; }
.phone__avatar img { width: 22px; height: 22px; object-fit: contain; }
.phone__label { margin: 24px 0 4px; color: #8b929c; font-size: 10px; }
.phone__balance { font-size: 32px; font-weight: 750; letter-spacing: -.06em; }
.phone__balance span { font-size: 22px; }
.phone__change { margin-top: 4px; color: #2bb898; font-size: 9px; font-weight: 750; }
.phone__change small { margin-left: 7px; color: #2bb898; }
.chart-wrap { margin: 10px -20px 0; }
.chart-wrap svg { display: block; width: 100%; overflow: visible; }
.chart-area { fill: url(#chart-fill); }
.chart-line { fill: none; stroke: #26b596; stroke-linecap: round; stroke-width: 3; }
.chart-wrap circle { fill: #fff; stroke: #26b596; stroke-width: 3; }
.phone__range { display: flex; justify-content: space-between; color: #9aa1aa; font-size: 8px; }
.phone__range b { padding: 3px 6px; border-radius: 8px; color: #fff; background: #101727; }
.phone__portfolio { display: flex; align-items: center; justify-content: space-between; margin-top: 27px; padding: 14px; border: 1px solid #e8ebef; border-radius: 16px; background: #fff; }
.phone__portfolio strong, .phone__portfolio small { display: block; }
.phone__portfolio strong { margin-bottom: 5px; font-size: 10px; }
.phone__portfolio small { color: #949ba4; font-size: 8px; }
.donut { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: conic-gradient(#1d52c9 0 68%,#dae5fa 68% 100%); }
.donut::before { position: absolute; width: 31px; height: 31px; border-radius: 50%; background: #fff; content: ""; }
.donut span { z-index: 1; font-size: 7px; font-weight: 800; }

.security {
  position: relative;
  overflow: hidden;
  padding: 116px 5vw 130px;
  background:
    radial-gradient(circle at 13% 20%,rgba(66,192,232,.26),transparent 25%),
    radial-gradient(circle at 86% 76%,rgba(29,85,202,.16),transparent 27%),
    linear-gradient(150deg,#f8fdff 0%,#eaf6ff 45%,#fff 100%);
}
.security::before,
.security::after { position: absolute; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(255,255,255,.22); box-shadow: inset 18px 18px 45px rgba(255,255,255,.45), inset -18px -18px 48px rgba(58,160,226,.12), 0 35px 80px rgba(20,78,159,.08); backdrop-filter: blur(18px); content: ""; }
.security::before { left: -130px; top: 180px; width: 330px; height: 330px; }
.security::after { right: -110px; bottom: 90px; width: 270px; height: 270px; }
.security > * { position: relative; z-index: 1; }
.section-heading { text-align: center; }
.section-heading h2,
.plans h2,
.about h2 {
  margin: 0;
  font-size: clamp(42px, 4.3vw, 68px);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1.04;
}
.section-heading > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
  width: min(1320px,100%);
  margin: 70px auto 0;
}
.security-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  background: linear-gradient(145deg,rgba(255,255,255,.82),rgba(224,243,255,.42));
  box-shadow: 0 30px 65px rgba(15,62,133,.15), inset 0 1px 2px #fff, inset 0 -24px 45px rgba(67,173,225,.08);
  backdrop-filter: blur(26px) saturate(150%);
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.security-card::before { position: absolute; z-index: 2; left: -35%; top: -48%; width: 78%; height: 95%; border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.78),rgba(255,255,255,0) 70%); content: ""; pointer-events: none; transform: rotate(22deg); }
.security-card::after { position: absolute; z-index: 0; right: -20%; bottom: -26%; width: 72%; height: 50%; border-radius: 50%; background: rgba(65,181,230,.14); filter: blur(34px); content: ""; }
.security-card:hover { transform: translateY(-13px) rotateX(2deg) rotateY(-1deg); box-shadow: 0 42px 85px rgba(11,55,132,.22), inset 0 1px 2px #fff, inset 0 -28px 48px rgba(67,173,225,.14); }
.card-art { position: relative; z-index: 1; height: 255px; margin: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.9); border-radius: 18px; background: linear-gradient(145deg,rgba(255,255,255,.74),rgba(216,240,255,.3)); box-shadow: 0 18px 40px rgba(20,78,159,.1), inset 0 1px 2px #fff, inset 0 -20px 35px rgba(55,157,221,.08); backdrop-filter: blur(18px); }
.card-art::after { position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%,rgba(72,195,224,.22),transparent 55%),linear-gradient(125deg,rgba(255,255,255,.46),transparent 42%); content: ""; }
.card-art--encryption { display: flex; align-items: center; justify-content: center; }
.art-node { z-index: 2; display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid rgba(255,255,255,.95); border-radius: 50%; background: linear-gradient(145deg,rgba(255,255,255,.95),rgba(222,242,255,.62)); box-shadow: 0 15px 28px rgba(13,49,116,.16), inset 0 2px 3px #fff, inset 0 -8px 15px rgba(67,173,225,.1); backdrop-filter: blur(12px); }
.art-node svg { width: 24px; fill: none; stroke: #0c1220; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.art-line { z-index: 1; width: 52px; height: 1px; background: #ccd5e2; }
.art-brand { z-index: 2; display: grid; width: 62px; height: 62px; place-items: center; border-radius: 50%; background: radial-gradient(circle at 28% 24%,#74d9ed,#1249bf 55%,#07194f); box-shadow: 0 13px 26px rgba(14,67,167,.22); }
.art-brand img { width: 49px; height: 49px; filter: brightness(0) invert(1); object-fit: contain; }
.card-art--layers { display: grid; place-items: center; }
.security-layers { position: relative; z-index: 2; width: 160px; height: 130px; transform: rotate(-9deg); }
.security-layers i,
.security-layers span { position: absolute; left: 50%; width: 112px; height: 78px; border: 1px solid #dfe5ed; border-radius: 9px; background: rgba(255,255,255,.82); box-shadow: 0 14px 24px rgba(15,39,82,.07); transform: translateX(-50%) rotate(45deg) skew(-5deg,-5deg); }
.security-layers i:first-of-type { top: 28px; opacity: .7; }
.security-layers i:last-of-type { top: 50px; opacity: .45; }
.security-layers span { z-index: 3; top: 6px; display: grid; place-items: center; background: #fff; }
.security-layers svg { width: 30px; fill: none; stroke: #0e1422; stroke-width: 1.8; transform: rotate(-45deg) skew(0); }
.card-art--auth { display: grid; place-items: center; }
.auth-panel { z-index: 2; width: 82%; padding: 25px 20px 20px; border: 1px solid rgba(255,255,255,.92); border-radius: 16px; background: linear-gradient(145deg,rgba(255,255,255,.8),rgba(225,244,255,.42)); box-shadow: 0 22px 48px rgba(15,58,126,.14), inset 0 1px 2px #fff, inset 0 -16px 26px rgba(60,168,224,.08); backdrop-filter: blur(18px); }
.auth-mail { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid #e0e6ec; border-radius: 50%; background: #fff; box-shadow: 0 8px 22px rgba(16,38,80,.08); }
.auth-mail svg { width: 24px; fill: none; stroke: #0c1220; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.pin-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 17px; }
.pin-row i { display: grid; height: 40px; place-items: center; border-radius: 8px; background: #f0f4fb; font-size: 22px; font-style: normal; }
.pin-row i.active { background: linear-gradient(135deg,#dbe7ff,#f0fcff); }
.security-card__copy { position: relative; z-index: 1; padding: 12px 28px 30px; }
.card-number { position: absolute; right: 26px; top: 8px; color: #b2bac7; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.security-card h3 { min-height: 53px; margin: 0 40px 10px 0; font-size: 20px; letter-spacing: -.035em; line-height: 1.08; }
.security-card p { min-height: 64px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.security-card ul { display: grid; gap: 9px; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.9); list-style: none; }
.security-card li { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.82); border-radius: 12px; background: linear-gradient(145deg,rgba(255,255,255,.72),rgba(223,243,255,.32)); box-shadow: 0 10px 22px rgba(17,68,139,.08), inset 0 1px 1px #fff; font-size: 11px; font-weight: 750; }
.security-card li span { display: grid; width: 25px; height: 25px; place-items: center; border: 1px solid rgba(255,255,255,.94); border-radius: 50%; background: rgba(255,255,255,.5); box-shadow: inset 0 1px 2px #fff,0 5px 12px rgba(31,98,172,.1); }

.plans {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
  padding: 115px max(6vw,calc((100vw - 1320px)/2));
  background: radial-gradient(circle at 18% 30%,rgba(79,195,231,.2),transparent 28%),linear-gradient(145deg,#f5fbff,#eaf4ff 58%,#fff);
}
.plans__copy > p:last-child { max-width: 560px; margin-top: 22px; color: var(--muted); line-height: 1.65; }
.plans .eyebrow { justify-content: flex-start; }
.plan-card { position: relative; overflow: hidden; padding: 42px; border: 1px solid rgba(255,255,255,.52); border-radius: 30px; color: #fff; background: linear-gradient(145deg,rgba(28,82,193,.91),rgba(4,19,64,.88) 68%,rgba(3,13,46,.94)); box-shadow: 0 36px 80px rgba(8,36,111,.3), inset 0 1px 2px rgba(255,255,255,.5), inset 0 -35px 60px rgba(31,114,207,.14); backdrop-filter: blur(26px) saturate(145%); transform-style: preserve-3d; transition: transform .4s cubic-bezier(.22,1,.36,1),box-shadow .4s ease; }
.plan-card::before { position: absolute; left: -20%; top: -55%; width: 92%; height: 105%; border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.28),transparent 70%); content: ""; pointer-events: none; transform: rotate(18deg); }
.plan-card::after { position: absolute; right: -18%; bottom: -32%; width: 70%; height: 58%; border-radius: 50%; background: rgba(62,193,235,.2); filter: blur(38px); content: ""; }
.plan-card > * { position: relative; z-index: 1; }
.plan-card:hover { transform: translateY(-11px) rotateX(2deg); box-shadow: 0 48px 95px rgba(7,35,112,.38),inset 0 1px 2px rgba(255,255,255,.58),inset 0 -38px 64px rgba(47,151,226,.2); }
.plan-card__access {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.plan-card__access svg { width: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.plan-card__tag { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.plan-card__price { margin: 26px 0 14px; font-size: 72px; font-weight: 780; letter-spacing: -.07em; }
.plan-card__price sup { margin-right: 3px; font-size: 26px; vertical-align: 28px; }
.plan-card__price small { margin-left: 9px; font-size: 14px; font-weight: 500; letter-spacing: 0; opacity: .72; }
.plan-card__price--performance { display: grid; grid-template-columns: auto 1fr; column-gap: 9px; align-items: end; letter-spacing: -.045em; line-height: .95; }
.plan-card__price--performance sup { grid-row: 1 / span 2; align-self: start; margin: 7px 0 0; font-size: 29px; vertical-align: 0; }
.plan-card__price--performance span { font-size: clamp(32px,3.2vw,49px); }
.plan-card__price--performance small { margin: 8px 0 0; font-size: 12px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.plan-card p { margin: 0 0 30px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; }
.plan-card .button { color: #111217; border-color: #f7f5f2; background: #f7f5f2; box-shadow: 0 12px 28px rgba(0,10,48,.22); }
.plan-card .button:hover { border-color: #fff; background: #fff; box-shadow: 0 16px 34px rgba(0,10,48,.27); }

.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  min-height: 680px;
  padding: 90px max(6vw,calc((100vw - 1320px)/2));
  color: #fff;
  background:
    radial-gradient(circle at 20% 40%,rgba(68,205,231,.4),transparent 28%),
    linear-gradient(135deg,#0a41a7,#061540 72%);
}
.about__mark { display: grid; width: 330px; height: 330px; place-items: center; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; background: linear-gradient(145deg,rgba(255,255,255,.16),rgba(84,197,231,.05)); box-shadow: 0 38px 80px rgba(0,12,50,.26),inset 18px 18px 50px rgba(255,255,255,.12),inset -18px -18px 50px rgba(33,138,219,.18); backdrop-filter: blur(22px); }
.about__mark img { width: 280px; height: 280px; filter: brightness(0) invert(1); object-fit: contain; opacity: .92; }
.about .eyebrow { justify-content: flex-start; }
.about__copy > p:not(.eyebrow) { max-width: 630px; margin: 26px 0; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.7; }
.about__meeting {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 12px 22px;
  border: 1px solid #f5f3f0;
  border-radius: 999px;
  color: #111217;
  background: #f5f3f0;
  box-shadow: 0 12px 28px rgba(0,10,42,.24);
  cursor: pointer;
  font-weight: 750;
  transition: transform .25s cubic-bezier(.16,1,.3,1), background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.about__meeting:hover {
  border-color: #fff;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,10,42,.3);
}
.about__meeting:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 6px 16px rgba(0,10,42,.2);
}

footer { padding: 66px max(6vw,calc((100vw - 1320px)/2)) 32px; background: #080b14; color: #fff; }
.footer__top { display: grid; grid-template-columns: 1fr auto auto; gap: 34px; align-items: center; padding-bottom: 54px; }
.brand--footer .brand__mark { background: #fff; }
.footer__top > p { margin: 0; color: #a7adba; }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); color: #777e8b; font-size: 11px; }
.footer__bottom div { display: flex; gap: 25px; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.security-card:nth-child(2), .plan-card { transition-delay: .1s; }
.security-card:nth-child(3) { transition-delay: .2s; }

.account-modal {
  position: relative;
  overflow: hidden;
  width: min(470px,calc(100% - 32px));
  padding: 42px;
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 30px;
  color: var(--ink);
  background: linear-gradient(145deg,rgba(255,255,255,.86),rgba(218,241,255,.58));
  box-shadow: 0 45px 110px rgba(3,24,76,.42),inset 0 1px 3px #fff,inset 0 -30px 55px rgba(59,169,224,.1);
  backdrop-filter: blur(34px) saturate(165%);
}
.account-modal::before { position: absolute; left: -25%; top: -34%; width: 85%; height: 60%; border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.92),transparent 72%); content: ""; pointer-events: none; }
.account-modal > * { position: relative; z-index: 1; }
.account-modal::backdrop { background: rgba(3,8,24,.72); backdrop-filter: blur(10px); }
.account-modal[open] { animation: modal-in .35s cubic-bezier(.22,1,.36,1); }
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(207, 236, 251, 0.65) 100%);
  box-shadow: 
    inset 0 1.5px 1px #ffffff,
    inset 0 -1.5px 2px rgba(13, 58, 125, 0.12),
    0 10px 22px rgba(13, 58, 125, 0.16);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, background .25s ease;
}
.modal-close:hover {
  transform: translateY(-2px) scale(1.05) rotate(6deg);
  background: linear-gradient(180deg, #ffffff 0%, rgba(215, 240, 253, 0.85) 100%);
  box-shadow: 
    inset 0 1.5px 1px #ffffff,
    inset 0 -1.5px 3px rgba(13, 58, 125, 0.18),
    0 14px 28px rgba(13, 58, 125, 0.22);
}
.modal-close:active {
  transform: translateY(1px) scale(0.96);
  box-shadow: inset 0 2px 4px rgba(13, 58, 125, 0.25);
}
.modal-close:focus-visible { outline: 3px solid rgba(70,165,235,.62); outline-offset: 3px; }
.modal-brand { display: grid; width: 68px; height: 68px; margin-bottom: 24px; place-items: center; border-radius: 50%; background: #f1f7ff; }
.modal-brand img { width: 58px; height: 58px; object-fit: contain; }
.account-modal .eyebrow { justify-content: flex-start; }
.account-modal h2 { margin: 0 0 10px; font-size: 35px; letter-spacing: -.05em; }
.account-modal > p:not(.eyebrow) { color: var(--muted); }
.account-modal form { display: grid; gap: 17px; margin-top: 25px; }
.form-fields { display: grid; gap: 17px; }
.form-fields[hidden] { display: none; }
.account-modal label { display: grid; gap: 8px; font-size: 12px; font-weight: 750; }
.account-modal input { width: 100%; height: 52px; padding: 0 16px; border: 1px solid rgba(255,255,255,.95); border-radius: 14px; outline: none; background: linear-gradient(145deg,rgba(255,255,255,.74),rgba(222,242,255,.4)); box-shadow: 0 12px 26px rgba(20,76,145,.1),inset 0 1px 2px #fff,inset 0 -10px 18px rgba(64,172,224,.06); backdrop-filter: blur(16px); transition: border .2s ease, box-shadow .2s ease, transform .2s ease; }
.account-modal input:focus { border-color: rgba(55,144,226,.7); box-shadow: 0 14px 30px rgba(20,76,145,.16),0 0 0 4px rgba(35,120,203,.1),inset 0 1px 2px #fff; transform: translateY(-2px); }
.account-modal .button { width: 100%; margin-top: 6px; }
.invitation-note { display: block; margin-top: -2px; color: #7c8492; font-size: 11px; line-height: 1.5; }
.form-note { min-height: 20px; margin: 14px 0 0; color: #15806c !important; font-size: 12px; }

.meeting-modal {
  position: fixed;
  overflow: hidden;
  width: min(1180px,calc(100% - 48px));
  height: min(790px,calc(100% - 48px));
  max-width: none;
  max-height: none;
  padding: 0;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 34px;
  color: var(--ink);
  background: linear-gradient(145deg,rgba(255,255,255,.94),rgba(225,244,255,.82));
  box-shadow: 0 54px 130px rgba(2,20,68,.52),inset 0 1px 3px #fff;
  backdrop-filter: blur(34px) saturate(165%);
}
.meeting-modal[open] { display: grid; grid-template-columns: 310px minmax(0,1fr); animation: meeting-modal-in .45s cubic-bezier(.22,1,.36,1); }
.meeting-modal::backdrop { background: rgba(3,10,31,.78); backdrop-filter: blur(13px) saturate(120%); }
.meeting-modal__glow { position: absolute; z-index: 0; right: -180px; top: -210px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle,rgba(95,213,241,.34),transparent 66%); pointer-events: none; }
.meeting-close {
  position: absolute;
  z-index: 8;
  top: 22px;
  right: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  color: #0c1835;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(206, 237, 253, 0.65) 100%);
  box-shadow: 
    inset 0 1.5px 1px #ffffff,
    inset 0 -1.5px 2px rgba(12, 55, 124, 0.12),
    0 13px 27px rgba(12, 55, 124, 0.16);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, background .25s ease;
}
.meeting-close:hover {
  transform: translateY(-3px) scale(1.05) rotate(7deg);
  background: linear-gradient(180deg, #ffffff 0%, rgba(215, 240, 253, 0.85) 100%);
  box-shadow: 
    inset 0 1.5px 1px #ffffff,
    inset 0 -1.5px 3px rgba(12, 55, 124, 0.18),
    0 18px 34px rgba(12, 55, 124, 0.24);
}
.meeting-close:active {
  transform: translateY(1px) scale(0.96);
  box-shadow: inset 0 2px 4px rgba(12, 55, 124, 0.25);
}
.meeting-close:focus-visible,.about__meeting:focus-visible,.office-card:focus-visible,.time-slot:focus-visible,.meeting-back:focus-visible { outline: 3px solid rgba(65,164,233,.62); outline-offset: 3px; }

.meeting-rail { position: relative; z-index: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 36px 32px 30px; color: #fff; background: radial-gradient(circle at 18% 18%,rgba(74,199,232,.42),transparent 31%),linear-gradient(155deg,rgba(15,72,177,.97),rgba(4,19,62,.98) 68%); box-shadow: inset -1px 0 rgba(255,255,255,.12),inset -32px -35px 70px rgba(1,9,40,.18); }
.meeting-rail::before { position: absolute; left: -90px; bottom: 80px; width: 280px; height: 280px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(255,255,255,.035); box-shadow: inset 18px 18px 45px rgba(255,255,255,.06); content: ""; }
.meeting-rail > * { position: relative; z-index: 1; }
.meeting-rail__brand .brand__mark { width: 34px; height: 34px; }
.meeting-rail__brand .brand__mark img { width: 28px; height: 28px; }
.meeting-rail__brand .brand__text { font-size: 13px; }
.meeting-rail__label { margin: 0 0 14px; color: #8ee7f5; font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.meeting-rail h2 { max-width: 220px; margin: 0; font-size: 39px; letter-spacing: -.055em; line-height: .98; }
.meeting-rail h2 + p { margin: 20px 0 0; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.65; }
.meeting-progress { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.meeting-progress li { position: relative; display: flex; align-items: center; gap: 13px; padding: 12px 14px; border: 1px solid transparent; border-radius: 15px; color: rgba(255,255,255,.38); font-size: 12px; font-weight: 750; transition: .3s ease; }
.meeting-progress li span { display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; font-size: 9px; letter-spacing: .06em; }
.meeting-progress li.is-current { border-color: rgba(255,255,255,.28); color: #fff; background: linear-gradient(145deg,rgba(255,255,255,.16),rgba(255,255,255,.04)); box-shadow: 0 14px 28px rgba(0,8,40,.18),inset 0 1px 1px rgba(255,255,255,.35); }
.meeting-progress li.is-current span { border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.12); }
.meeting-progress li.is-complete { color: rgba(255,255,255,.74); }
.meeting-progress li.is-complete span { color: transparent; background: rgba(101,221,236,.18); }
.meeting-progress li.is-complete span::after { color: #88e6f1; content: "✓"; }
.meeting-rail__privacy { margin: 0; color: rgba(255,255,255,.42); font-size: 10px; line-height: 1.55; }

.meeting-content { position: relative; z-index: 1; overflow-y: auto; padding: 52px 62px 42px; scrollbar-color: rgba(29,95,185,.25) transparent; }
.meeting-step { width: 100%; max-width: 760px; margin: 0 auto; }
.meeting-step[hidden] { display: none; }
.meeting-step .eyebrow { justify-content: flex-start; margin-bottom: 16px; }
.meeting-step h2 { margin: 0; font-size: clamp(38px,4vw,56px); letter-spacing: -.06em; line-height: 1; }
.meeting-step__intro { max-width: 650px; margin: 17px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.office-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; margin-top: 34px; perspective: 1000px; }
.office-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  padding: 22px 19px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  color: var(--ink);
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(216, 240, 255, 0.5) 100%);
  box-shadow: 
    inset 0 1.5px 1px #ffffff,
    inset 0 -18px 36px rgba(50, 153, 217, 0.08),
    0 20px 42px rgba(15, 61, 132, 0.12);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.office-card::before { position: absolute; left: -36%; top: -35%; width: 110%; height: 62%; border-radius: 50%; background: radial-gradient(circle,rgba(255,255,255,.92),transparent 70%); content: ""; pointer-events: none; }
.office-card > span { position: relative; z-index: 1; display: block; }
.office-card:hover {
  transform: translateY(-8px) scale(1.015) rotateX(2deg);
  background: linear-gradient(180deg, #ffffff 0%, rgba(206, 236, 254, 0.65) 100%);
  box-shadow: 
    inset 0 1.5px 1px #ffffff,
    inset 0 -20px 40px rgba(50, 153, 217, 0.12),
    0 30px 60px rgba(12, 57, 132, 0.22);
}
.office-card:active {
  transform: translateY(-2px) scale(0.985);
  box-shadow: inset 0 2px 6px rgba(12, 57, 132, 0.2);
}
.office-card.is-selected {
  border-color: rgba(35, 116, 213, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(185, 226, 252, 0.7) 100%);
  box-shadow: 
    inset 0 1.5px 1.5px #ffffff,
    inset 0 -22px 42px rgba(39, 133, 212, 0.16),
    0 30px 60px rgba(12, 64, 153, 0.25),
    0 0 0 3.5px rgba(58, 154, 224, 0.18);
  transform: translateY(-7px) scale(1.01);
}
.office-card__top { display: flex !important; align-items: center; justify-content: space-between; }
.office-card__top b { font-size: 21px; letter-spacing: -.035em; }
.office-card__top small { color: #8692a2; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.office-card__district { margin-top: 7px; color: #1b65b9; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.office-card__address { margin-top: 40px; color: #657083; font-size: 12px; line-height: 1.7; }
.office-card__availability { position: absolute !important; left: 19px; right: 19px; bottom: 20px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.9); color: #263247; font-size: 10px; font-weight: 750; }
.office-card__availability i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #1cb991; box-shadow: 0 0 0 4px rgba(28,185,145,.1); }

.meeting-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 28px; }
.meeting-actions--end { justify-content: flex-end; }
.meeting-actions .button { min-width: 230px; }
.meeting-actions .button:disabled { cursor: not-allowed; filter: grayscale(.45); opacity: .4; transform: none; }
.meeting-back { padding: 0; border: 0; color: #617087; background: transparent; cursor: pointer; font-size: 11px; font-weight: 750; transition: color .2s ease,transform .2s ease; }
.meeting-back:hover { color: #134f9e; transform: translateX(-3px); }
.meeting-back--footer { padding: 12px 5px; }

.selected-office { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: 25px; padding: 17px 19px; border: 1px solid rgba(255,255,255,.95); border-radius: 17px; background: linear-gradient(145deg,rgba(255,255,255,.78),rgba(218,240,254,.38)); box-shadow: 0 15px 30px rgba(20,76,145,.09),inset 0 1px 2px #fff; }
.selected-office span,.selected-office strong { display: block; }
.selected-office span { color: #1b65b9; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.selected-office strong { margin-top: 4px; font-size: 18px; }
.selected-office small { max-width: 340px; color: #697588; font-size: 11px; text-align: right; }
.availability-banner { margin-top: 14px; padding: 12px 15px; border: 1px solid rgba(232,176,92,.23); border-radius: 13px; color: #6e6049; background: rgba(255,244,224,.62); font-size: 11px; }
.availability-banner span { margin-right: 8px; padding: 4px 7px; border-radius: 999px; color: #8b5b16; background: rgba(225,161,62,.15); font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.appointment-list { display: grid; gap: 13px; margin-top: 16px; }
.appointment-day { padding: 16px; border: 1px solid rgba(255,255,255,.94); border-radius: 18px; background: linear-gradient(145deg,rgba(255,255,255,.72),rgba(219,241,254,.33)); box-shadow: 0 15px 34px rgba(17,66,137,.09),inset 0 1px 2px #fff; }
.appointment-day__heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.appointment-day__heading strong { font-size: 13px; }
.appointment-day__heading span { color: #8993a1; font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.time-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; }
.time-slot {
  padding: 11px 8px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  color: #18243a;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(218, 240, 253, 0.6) 100%);
  box-shadow: 
    inset 0 1.5px 1px #ffffff,
    inset 0 -1.5px 2px rgba(20, 77, 145, 0.08),
    0 9px 20px rgba(20, 77, 145, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.time-slot span,.time-slot small { display: block; }
.time-slot span { font-size: 13px; font-weight: 800; }
.time-slot small { margin-top: 3px; color: #1e9a7c; font-size: 8px; font-weight: 750; }
.time-slot:not(:disabled):hover {
  transform: translateY(-3.5px) scale(1.02);
  border-color: #ffffff;
  background: linear-gradient(180deg, #ffffff 0%, rgba(210, 238, 254, 0.78) 100%);
  box-shadow: 
    inset 0 1.5px 1px #ffffff,
    inset 0 -1.5px 3px rgba(20, 77, 145, 0.12),
    0 15px 28px rgba(20, 77, 145, 0.16);
}
.time-slot:not(:disabled):active {
  transform: translateY(1px) scale(0.97);
  box-shadow: inset 0 2px 4px rgba(20, 77, 145, 0.2);
}
.time-slot.is-selected {
  border-color: rgba(26, 93, 186, 0.85);
  color: #fff;
  background: linear-gradient(180deg, #2b77df 0%, #0a2d78 100%);
  box-shadow: 
    inset 0 1.5px 1px rgba(255, 255, 255, 0.55),
    inset 0 -2px 4px rgba(0, 0, 0, 0.35),
    0 16px 30px rgba(10, 55, 137, 0.3);
  transform: translateY(-3px);
}
.time-slot.is-selected small { color: #a3edf0; }
.time-slot.is-booked { color: #8f97a4; background: rgba(237,241,246,.5); box-shadow: inset 0 1px 2px rgba(255,255,255,.7); cursor: not-allowed; opacity: .64; }
.time-slot.is-booked small { color: #a2a8b1; }
.timezone-note { margin: 13px 0 0; color: #828b99; font-size: 10px; line-height: 1.5; }

.application-summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.94); border-radius: 16px; background: linear-gradient(145deg,rgba(255,255,255,.78),rgba(214,238,253,.4)); box-shadow: 0 14px 30px rgba(18,70,142,.1),inset 0 1px 2px #fff; }
.application-summary span,.application-summary strong,.application-summary small { display: block; }
.application-summary span { color: #1c65b8; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.application-summary strong { font-size: 13px; }
.application-summary small { max-width: 190px; color: #7e8897; font-size: 9px; text-align: right; }
.meeting-form { display: grid; gap: 13px; margin-top: 18px; }
.meeting-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.meeting-form label { display: grid; gap: 7px; color: #273248; font-size: 10px; font-weight: 800; }
.meeting-form input,.meeting-form select,.meeting-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.96); border-radius: 13px; outline: none; color: var(--ink); background: linear-gradient(145deg,rgba(255,255,255,.8),rgba(218,240,253,.42)); box-shadow: 0 10px 22px rgba(18,72,141,.08),inset 0 1px 2px #fff; backdrop-filter: blur(14px); transition: border-color .2s ease,box-shadow .2s ease,transform .2s ease; }
.meeting-form input,.meeting-form select { height: 45px; padding: 0 13px; }
.meeting-form textarea { min-height: 74px; padding: 12px 13px; resize: vertical; }
.meeting-form input:focus,.meeting-form select:focus,.meeting-form textarea:focus { border-color: rgba(52,140,220,.7); box-shadow: 0 13px 27px rgba(18,72,141,.13),0 0 0 4px rgba(52,140,220,.09),inset 0 1px 2px #fff; transform: translateY(-1px); }
.consent-check { grid-template-columns: 20px 1fr; align-items: flex-start; gap: 10px !important; margin-top: 3px; color: #6f7887 !important; font-weight: 600 !important; line-height: 1.5; }
.consent-check input { width: 18px; height: 18px; margin: 0; accent-color: #1559ad; }
.meeting-form .meeting-actions { margin-top: 3px; }

.meeting-success { padding-top: 45px; text-align: center; }
.meeting-success .eyebrow { justify-content: center; }
.meeting-success__mark { display: grid; width: 92px; height: 92px; margin: 0 auto 25px; place-items: center; border: 1px solid rgba(255,255,255,.98); border-radius: 50%; background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(188,235,249,.6)); box-shadow: 0 27px 55px rgba(13,70,146,.2),inset 0 2px 3px #fff,inset 0 -18px 30px rgba(41,154,207,.14); }
.meeting-success__mark span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg,#2ac19a,#0d816b); box-shadow: 0 12px 25px rgba(15,132,105,.26),inset 0 1px 1px rgba(255,255,255,.5); font-size: 25px; }
.meeting-success > p:not(.eyebrow):not(.meeting-success__notice) { max-width: 610px; margin: 20px auto 0; color: #697487; font-size: 14px; line-height: 1.7; }
.success-ticket { position: relative; overflow: hidden; display: grid; max-width: 510px; margin: 27px auto 0; padding: 23px; border: 1px solid rgba(255,255,255,.96); border-radius: 20px; background: linear-gradient(145deg,rgba(255,255,255,.82),rgba(205,237,252,.48)); box-shadow: 0 23px 47px rgba(15,67,139,.14),inset 0 1px 2px #fff,inset 0 -24px 40px rgba(52,157,213,.08); }
.success-ticket::before { position: absolute; right: -55px; top: -65px; width: 180px; height: 180px; border-radius: 50%; background: rgba(69,187,228,.13); content: ""; }
.success-ticket > * { position: relative; }
.success-ticket__label { color: #1c66b8; font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.success-ticket strong { margin-top: 9px; font-size: 20px; }
.success-ticket > span:not(.success-ticket__label) { margin-top: 5px; color: #687386; font-size: 12px; }
.success-ticket small { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.9); color: #8992a0; font-size: 9px; }
.success-ticket small b { color: #25334a; letter-spacing: .08em; }
.meeting-success__notice { max-width: 580px; margin: 18px auto 0; color: #687386; font-size: 10px; line-height: 1.6; }
.meeting-success .button { margin-top: 25px; }

@keyframes meeting-modal-in { from { opacity: 0; transform: translateY(28px) scale(.97); } }

@keyframes badge-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes phone-hover { 0%,100% { margin-top: 0; } 50% { margin-top: -10px; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(24px) scale(.97); } }

@media (max-width: 1000px) {
  .meeting-modal[open] { grid-template-columns: 250px minmax(0,1fr); }
  .meeting-rail { padding: 30px 24px 26px; }
  .meeting-rail h2 { font-size: 33px; }
  .meeting-content { padding: 50px 34px 36px; }
  .office-grid { grid-template-columns: 1fr; }
  .office-card { min-height: 190px; }
  .office-card__address { margin-top: 24px; }
  .site-header { grid-template-columns: 1fr auto; width: calc(100% - 40px); }
  .menu-toggle { z-index: 22; display: grid; width: 44px; height: 44px; place-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.25); border-radius: 14px; background: rgba(255,255,255,.08); box-shadow: 0 10px 30px rgba(0,22,72,.16); backdrop-filter: blur(22px) saturate(130%); transition: transform .2s ease,background .2s ease,border-color .2s ease; }
  .menu-toggle:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.14); transform: translateY(-2px); }
  .menu-toggle:focus-visible { outline: 3px solid rgba(94,184,245,.68); outline-offset: 3px; }
  .menu-toggle span { display: block; width: 20px; height: 1.5px; background: #fff; transition: .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; z-index: 21; inset: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 24px; border: 1px solid rgba(17,18,23,.08); border-radius: 28px; color: #17181d; background: #f5f3f0; box-shadow: 0 30px 80px rgba(2,8,26,.28); opacity: 0; pointer-events: none; transition: opacity .3s ease; font-size: 20px; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; }
  .main-nav a { min-width: 210px; padding: 14px 20px; border: 0; border-radius: 999px; background: transparent; text-align: center; opacity: .72; }
  .nav-login { display: inline-flex; min-width: 190px; margin-top: 4px; }
  .header-actions { display: none; }
  .hero { min-height: 900px; }
  .market-visual { width: 760px; transform: translateX(-50%) scale(.9); transform-origin: top center; }
  .security-grid { grid-template-columns: 1fr; max-width: 620px; }
  .security-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .card-art { height: auto; min-height: 300px; }
  .security-card__copy { padding-top: 42px; }
  .plans { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 55px; text-align: center; }
  .about__mark { width: 270px; height: 270px; margin: 0 auto; }
  .about__mark img { width: 225px; height: 225px; }
  .about .eyebrow { justify-content: center; }
  .about__copy > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .footer__top { grid-template-columns: 1fr auto; }
  .footer__top > p { display: none; }
}

@media (max-width: 680px) {
  .meeting-modal { width: calc(100% - 16px); height: calc(100% - 16px); border-radius: 24px; }
  .meeting-modal[open] { display: block; }
  .meeting-rail { display: none; }
  .meeting-content { height: 100%; padding: 67px 18px 28px; }
  .meeting-close { top: 16px; right: 16px; }
  .meeting-step h2 { font-size: 39px; }
  .office-grid { gap: 11px; margin-top: 27px; }
  .office-card { min-height: 196px; padding: 18px; }
  .office-card__address { margin-top: 18px; }
  .office-card__availability { left: 18px; right: 18px; bottom: 15px; padding-top: 11px; }
  .meeting-actions { align-items: stretch; flex-direction: column-reverse; }
  .meeting-actions .button { width: 100%; min-width: 0; }
  .meeting-actions--end { flex-direction: column; }
  .selected-office { align-items: flex-start; flex-direction: column; }
  .selected-office small { text-align: left; }
  .time-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .application-summary { align-items: flex-start; flex-direction: column; }
  .application-summary small { max-width: none; text-align: left; }
  .meeting-form__row { grid-template-columns: 1fr; }
  .meeting-success { padding-top: 5px; }
  .site-header { height: 78px; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__mark img { width: 28px; height: 28px; }
  .brand__text { font-size: 13px; }
  .hero { min-height: 780px; }
  .hero__content { padding: 142px 22px 0; }
  .hero h1 { font-size: 50px; }
  .hero__intro br { display: none; }
  .market-visual { top: auto; bottom: -25px; width: 720px; transform: translateX(-50%) scale(.72); transform-origin: bottom center; }
  .security { padding: 90px 20px; }
  .section-heading h2, .plans h2, .about h2 { font-size: 40px; }
  .section-heading br { display: none; }
  .section-heading > p:last-child br { display: none; }
  .security-grid { margin-top: 45px; }
  .security-card { display: block; }
  .card-art { min-height: 225px; }
  .security-card__copy { padding-top: 12px; }
  .plans { padding: 80px 20px; }
  .plan-card { padding: 32px 25px; }
  .about { padding: 80px 20px; }
  footer { padding: 54px 20px 28px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .account-modal { padding: 34px 24px; }
}

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