:root {
  --ink: #0e1726;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: rgba(148, 163, 184, 0.28);
  --panel: rgba(255, 255, 255, 0.76);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --navy: #06162c;
  --navy-2: #071f3e;
  --blue: #8bc9ff;
  --blue-strong: #72bfff;
  --cyan: #7ce5ff;
  --violet: #8b7dff;
  --white: #ffffff;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow-soft: 0 30px 90px rgba(2, 8, 23, 0.16);
  --shadow-card: 0 20px 60px rgba(15, 23, 42, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f6f9fc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f6f9fc;
  color: var(--ink);
}

img {
  width: 140px;
  height: 36px;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.92);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 18, 36, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 33px;
  height: 33px;
  display: inline-grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 3.4;
}

.brand-text {
  font-size: 25px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a,
.nav-link {
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.nav-link:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 760;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, #d9f0ff, #8ccaff 70%, #7ce5ff);
  color: #092340;
  box-shadow: 0 20px 50px rgba(114, 191, 255, 0.26);
}

.btn-secondary,
.btn-ghost {
  color: rgba(255, 255, 255, 0.93);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.play-dot {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  font-size: 10px;
  padding-left: 2px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 132px clamp(22px, 7vw, 108px) 78px;
  color: var(--white);
  background: #06162c;
}

.hero-bg,
.hero-bg-image,
.hero-shade,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transform-origin: center;
  filter: saturate(1.03) contrast(1.02);
  will-change: transform;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 34% 24%, rgba(124, 229, 255, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(2, 8, 23, 0.86) 0%, rgba(4, 20, 44, 0.72) 28%, rgba(5, 26, 54, 0.28) 52%, rgba(2, 8, 23, 0.04) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.32) 0%, transparent 34%, rgba(2, 8, 23, 0.28) 100%);
  will-change: transform;
}

.hero-noise {
  z-index: 2;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding-top: 28px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: #9fe4ff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.078em;
  font-weight: 660;
}

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(225, 244, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin-top: 58px;
}

.hero-proof div {
  padding: 18px 18px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
}

.hero-proof span {
  display: block;
  color: rgba(225, 244, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  transform: translateX(-50%);
  opacity: 0.75;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  70% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
}

.section {
  padding: clamp(78px, 9vw, 136px) clamp(22px, 7vw, 108px);
}

.section-light {
  background:
    radial-gradient(circle at 12% 12%, rgba(139, 201, 255, 0.15), transparent 30rem),
    #f7fbff;
}

.section-dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(124, 229, 255, 0.14), transparent 32rem),
    linear-gradient(180deg, #06162c 0%, #081f3f 100%);
  color: #fff;
}

.section h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 710;
}

.split-heading,
.feature-layout,
.learn-card,
.beta-box {
  max-width: 1240px;
  margin: 0 auto;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: start;
}

.split-heading p,
.large-copy,
.learn-card p,
.beta-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.section-dark .large-copy,
.section-dark p {
  color: rgba(230, 246, 255, 0.76);
}

.value-grid {
  max-width: 1240px;
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.value-card,
.price-card,
.report-panel,
.report-page,
.text-demo-card,
.insight-card,
.learn-card,
.beta-box {
  border: 1px solid var(--line);
  background: var(--panel-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.value-card {
  padding: 30px;
}

.icon-bubble {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: #e7f5ff;
  color: #0b4c82;
  font-weight: 850;
  margin-bottom: 26px;
}

.value-card h3,
.flow-step h3,
.insight-card h3,
.price-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.value-card p,
.flow-step p,
.insight-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.flow-section {
  background: #ffffff;
}

.flow-section>.section-kicker,
.flow-section>h2 {
  max-width: 1240px;
  margin-inline: auto;
}

.flow-steps {
  max-width: 1240px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flow-step {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 251, 255, 0.82)),
    radial-gradient(circle at 50% 0%, rgba(124, 229, 255, 0.22), transparent 18rem);
  border: 1px solid var(--line);
  overflow: hidden;
}

.flow-step span {
  display: inline-flex;
  margin-bottom: 36px;
  color: #0b6cae;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.76fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.feature-layout.reverse {
  grid-template-columns: minmax(380px, 0.76fr) minmax(0, 0.88fr);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(230, 246, 255, 0.82);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #7ce5ff 0 28%, rgba(124, 229, 255, 0.2) 29% 100%);
  box-shadow: 0 0 0 6px rgba(124, 229, 255, 0.08);
}

.insight-stack {
  display: grid;
  gap: 16px;
}

.insight-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  color: #fff;
}

.primary-card {
  padding: 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(124, 229, 255, 0.26), transparent 14rem),
    rgba(255, 255, 255, 0.12);
}

.card-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9fe4ff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.insight-card p {
  color: rgba(230, 246, 255, 0.72);
}

.mini-bars {
  height: 86px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 28px;
}

.mini-bars i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #7ce5ff, rgba(139, 201, 255, 0.28));
}

.mini-bars i:nth-child(1) {
  height: 42%;
}

.mini-bars i:nth-child(2) {
  height: 72%;
}

.mini-bars i:nth-child(3) {
  height: 50%;
}

.mini-bars i:nth-child(4) {
  height: 82%;
}

.mini-bars i:nth-child(5) {
  height: 62%;
}

.text-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(139, 201, 255, 0.18), transparent 26rem),
    #f7fbff;
}

.text-demo-card {
  padding: 28px;
  background: #fff;
}

.demo-row {
  padding: 18px;
  border-radius: 18px;
  background: #f1f7ff;
  color: #334155;
  line-height: 1.5;
}

.demo-arrow {
  color: #0b6cae;
  font-size: 30px;
  padding: 14px 0;
  text-align: center;
}

.derived-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.derived-grid span,
.derived-grid strong {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.derived-grid span {
  color: var(--muted);
  background: #f8fbff;
}

.derived-grid strong {
  color: var(--ink);
}

.derived-grid span:nth-last-child(-n+2),
.derived-grid strong:nth-last-child(-n+2) {
  border-bottom: 0;
}

.reports-section .split-heading {
  margin-bottom: 54px;
}

.report-preview {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.report-panel {
  padding: 24px;
}

.report-panel span {
  display: block;
  margin-bottom: 20px;
  font-weight: 850;
  color: #0b4c82;
}

.report-panel label {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.report-panel i {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #72bfff, #7ce5ff);
}

.report-page {
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
}

.report-eyebrow {
  margin: 0 0 10px;
  color: #0b6cae;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-page h3 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.05em;
}

.report-line {
  height: 12px;
  width: 62%;
  border-radius: 999px;
  background: #eaf3fb;
  margin-bottom: 12px;
}

.report-line.wide {
  width: 84%;
}

.report-chart {
  height: 190px;
  display: flex;
  align-items: end;
  gap: 14px;
  margin: 30px 0;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f4faff, #eaf5ff);
}

.report-chart i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #72bfff, rgba(114, 191, 255, 0.25));
}

.report-chart i:nth-child(1) {
  height: 45%;
}

.report-chart i:nth-child(2) {
  height: 70%;
}

.report-chart i:nth-child(3) {
  height: 52%;
}

.report-chart i:nth-child(4) {
  height: 86%;
}

.report-chart i:nth-child(5) {
  height: 60%;
}

.report-chart i:nth-child(6) {
  height: 76%;
}

.report-note {
  padding: 18px 20px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.58;
}

.learn-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(124, 229, 255, 0.14), transparent 26rem),
    #ffffff;
}

.learn-card,
.beta-box {
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: center;
}

.learn-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.learn-links a {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f1f8ff;
  text-decoration: none;
  color: #0b4c82;
  font-weight: 750;
}

.pricing-grid {
  max-width: 1240px;
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(114, 191, 255, 0.58);
  box-shadow: 0 28px 80px rgba(114, 191, 255, 0.2);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e7f5ff;
  color: #0b4c82;
  font-size: 12px;
  font-weight: 850;
}

.price {
  margin: 0 0 16px !important;
  color: var(--ink) !important;
  font-size: 38px;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.price span {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0;
}

.beta-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(124, 229, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #06162c, #08264d);
  color: #fff;
}

.beta-box {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
}

.beta-box p {
  color: rgba(230, 246, 255, 0.76);
}

.waitlist-form {
  display: grid;
  gap: 13px;
}

.waitlist-form label {
  color: rgba(230, 246, 255, 0.92);
  font-weight: 760;
}

.waitlist-form label span {
  color: rgba(230, 246, 255, 0.54);
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  outline: none;
}

select option {
  color: var(--ink);
}

input::placeholder {
  color: rgba(230, 246, 255, 0.48);
}

input:focus,
select:focus {
  border-color: rgba(124, 229, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(124, 229, 255, 0.12);
}

.privacy-note,
.form-status {
  margin: 4px 0 0 !important;
  color: rgba(230, 246, 255, 0.62) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.site-footer {
  padding: 72px clamp(22px, 7vw, 108px) 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(124, 229, 255, 0.10), transparent 26rem),
    #030b16;
  color: rgba(230, 246, 255, 0.8);
}

.footer-brand {
  max-width: 1240px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.5fr);
  gap: 30px;
  align-items: start;
}

.footer-logo {
  color: #fff;
}

.footer-brand p {
  margin: 18px 0 0;
  max-width: 540px;
  line-height: 1.65;
}

.footer-muted {
  color: rgba(230, 246, 255, 0.52);
}

.footer-columns {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-columns h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  padding: 7px 0;
  color: rgba(230, 246, 255, 0.66);
  text-decoration: none;
  font-size: 14px;
}

.footer-columns a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1240px;
  margin: 38px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(230, 246, 255, 0.48);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .hero h1 {
    max-width: 680px;
  }

  .hero-proof,
  .value-grid,
  .flow-steps,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-layout,
  .feature-layout.reverse,
  .split-heading,
  .learn-card,
  .beta-box {
    grid-template-columns: 1fr;
  }

  .report-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
    padding-inline: 18px;
  }

  .brand-text {
    font-size: 20px;
  }

  .nav-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 22px 70px;
  }

  .hero-bg-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 8, 23, 0.9), rgba(4, 20, 44, 0.78) 58%, rgba(2, 8, 23, 0.28)),
      linear-gradient(180deg, rgba(2, 8, 23, 0.35), rgba(2, 8, 23, 0.2));
  }

  .hero-proof,
  .value-grid,
  .flow-steps,
  .pricing-grid,
  .footer-columns,
  .footer-brand,
  .learn-links {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-right: 0;
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* for about, privacy, terms, contact and security pages */
.inner-page {
  background: #f7fbff;
}

.inner-header {
  background: rgba(5, 18, 36, 0.84);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 154px clamp(22px, 7vw, 108px) 76px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(124, 229, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 20% 18%, rgba(139, 125, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #06162c 0%, #08264d 100%);
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  z-index: -1;
}

.page-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(46px, 6.4vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.074em;
  font-weight: 680;
}

.page-shell {
  padding: clamp(54px, 7vw, 96px) clamp(22px, 7vw, 108px);
}

.page-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.92fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.page-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.aside-card,
.aside-links,
.page-article {
  border: 1px solid var(--line);
  background: var(--panel-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.aside-card {
  padding: 24px;
}

.aside-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 14px;
}

.aside-links {
  padding: 10px;
}

.aside-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 740;
}

.aside-links a:hover {
  background: #f1f8ff;
  color: #0b4c82;
}

.page-article {
  padding: clamp(28px, 5vw, 58px);
}

.content-section + .content-section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.page-article h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.page-article h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.page-article p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.76;
}

.page-article p:last-child,
.page-list:last-child {
  margin-bottom: 0;
}

.page-article a {
  color: #0b6cae;
  font-weight: 740;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.page-list {
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  line-height: 1.62;
}

.page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-strong), var(--cyan));
  box-shadow: 0 0 0 5px rgba(124, 229, 255, 0.13);
}

.founder-signature {
  margin-top: 24px !important;
  color: var(--ink) !important;
  font-weight: 760;
}

.about-page .intro-section p:first-child,
.security-page .intro-section p:first-child,
.privacy-page .intro-section p:first-child,
.terms-page .intro-section p:first-child {
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.018em;
}

/* Contact page */

.contact-grid {
  max-width: 980px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  display: block;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 191, 255, 0.58);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.contact-card span {
  display: block;
  margin: 8px 0px;
  color: #0b6cae;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
}

.contact-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 22px;
  }
}

@media (max-width: 980px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-aside {
    position: static;
    order: 2;
  }

  .page-article {
    order: 1;
  }

  .aside-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 124px 22px 58px;
  }

  .page-shell {
    padding: 34px 18px 60px;
  }

  .page-article {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .content-section + .content-section {
    margin-top: 32px;
    padding-top: 32px;
  }

  .aside-links {
    grid-template-columns: 1fr 1fr;
  }
}
