:root {
  --ink: #1a2b3b;
  --blue: #2563eb;
  --slate: #64748b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(248, 250, 252, 0.5);
}

.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.footer-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 2px;
  color: var(--blue);
  text-decoration: none;
}

.logo-wordmark {
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
}

.logo-pin {
  width: 28px;
  height: 28px;
  margin-top: 4px;
  color: var(--blue);
  flex-shrink: 0;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav nav a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  color: rgba(26, 43, 59, 0.8);
}

.site-nav .pill {
  padding: 10px 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 76%;
  background: #f8fafc;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 531px) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: 72px;
  font-weight: 800;
  line-height: 72px;
  letter-spacing: -1px;
}

.hero-accent {
  color: var(--blue);
}

.hero-sub {
  margin: 24px 0 0;
  max-width: 576px;
  padding-top: 8px;
  font-size: 20px;
  line-height: 32.5px;
  color: var(--slate);
}

.hero-actions {
  display: flex;
  gap: 16px;
  padding-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-light {
  border: 1px solid rgba(26, 43, 59, 0.1);
  color: var(--ink);
  background: #fff;
}

.btn-light:hover {
  border-color: rgba(37, 99, 235, 0.25);
  color: var(--blue);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.76);
}

.video-modal.is-open {
  display: flex;
}

.video-modal-dialog {
  width: min(960px, 100%);
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 28px 80px -32px rgba(15, 23, 42, 0.85);
}

.video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #111c31;
  color: #fff;
}

.video-modal-head strong {
  font-size: 15px;
  line-height: 20px;
}

.video-modal-close {
  border: 0;
  background: transparent;
  color: #cbd5e1;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.video-modal-close:hover {
  color: #fff;
}

.video-modal-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  display: block;
}

.hero-media {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-block {
  position: absolute;
  inset: -10%;
  border-radius: 9999px;
  background: rgba(219, 234, 254, 0.5);
  filter: blur(32px);
}

.hero-device {
  position: relative;
  z-index: 1;
  transform: rotate(3deg);
  transform-origin: top center;
}

.hero-shot-frame {
  position: relative;
  width: 320px;
  height: 630.67px;
  overflow: hidden;
  border-radius: 40px;
}

.hero-shot-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid var(--ink);
  border-radius: 40px;
  pointer-events: none;
}

.hero-shot {
  position: absolute;
  top: -1.64%;
  left: 0;
  width: 100%;
  height: 103.29%;
  max-width: none;
  filter: none;
}

.problem {
  padding: 128px 0;
  background: var(--ink);
  color: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.problem-copy h2 {
  margin: 0;
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
}

.problem-copy h2 span {
  color: #64748b;
}

.problem-copy p {
  margin: 24px 0 0;
  max-width: 512px;
  font-size: 18px;
  line-height: 28px;
  color: #94a3b8;
}

.problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 24px;
  counter-reset: problem-points;
}

.problem-list li {
  counter-increment: problem-points;
  padding: 0 0 24px 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.problem-list li::before {
  content: "0" counter(problem-points);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
}

.problem-list strong {
  display: block;
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #ffffff;
}

.problem-list p {
  margin: 12px 0 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 28px;
  color: #94a3b8;
}

.features {
  padding: 56px 0 128px;
  background: #fff;
}

.features-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 96px;
  text-align: center;
}

.features-head h2 {
  margin: 0;
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
}

.features-head p {
  max-width: 960px;
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  color: var(--slate);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(288px, 1fr) minmax(420px, 576px);
  gap: 80px;
  align-items: center;
  min-height: 620px;
}

.feature-row-reverse {
  grid-template-columns: minmax(420px, 576px) minmax(288px, 1fr);
  padding-top: 32px;
}

.feature-media {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.feature-media-left {
  justify-content: flex-start;
  padding-left: 0;
}

.feature-media-right {
  justify-content: flex-end;
  padding-right: 24px;
}

.feature-orb {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -40px;
  left: -40px;
  border-radius: 999px;
  background: #eff6ff;
}

.feature-orb-soft {
  width: 192px;
  height: 192px;
  top: auto;
  right: -40px;
  bottom: -40px;
  left: auto;
  background: #f1f5f9;
}

.feature-shot {
  position: relative;
  z-index: 1;
  width: 288px;
  border-radius: 32px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

.feature-copy {
  width: 100%;
  max-width: 576px;
}

.feature-copy h3 {
  margin: 0;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}

.feature-copy .feature-step {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue);
}

.feature-copy p {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 29px;
  color: var(--slate);
  max-width: 100%;
}

.feature-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.feature-list li {
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--ink);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13L9 17L19 7' stroke='%232563EB' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/24px 24px no-repeat;
}

.feature-list li.feature-highlight::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.5l2.63 5.33 5.87.85-4.25 4.15 1 5.85L12 16.9l-5.25 2.78 1-5.85L3.5 9.68l5.87-.85L12 3.5z' fill='%23F5B301' stroke='%23D29900' stroke-width='0.6'/%3E%3C/svg%3E") center/24px 24px no-repeat;
}

.feature-list li.feature-question::before {
  width: 28px;
  height: 28px;
  top: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cpath d='M11.2 11.05a2.95 2.95 0 1 1 4.48 2.48c-1.04.66-1.56 1.22-1.56 2.44' fill='none' stroke='%23B91C1C' stroke-width='2.35' stroke-linecap='round'/%3E%3Ccircle cx='14' cy='20.2' r='1.35' fill='%23B91C1C'/%3E%3C/svg%3E") center/28px 28px no-repeat;
}

.feature-list li.feature-handoff::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 12h5l2.2-3.2a1 1 0 0 1 1.63.02L14.5 12h6' fill='none' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M17 8.5 20.5 12 17 15.5' fill='none' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/24px 24px no-repeat;
}

.feature-list li.feature-notify::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20a2.5 2.5 0 0 0 2.35-1.65H9.65A2.5 2.5 0 0 0 12 20Z' fill='%237C3AED'/%3E%3Cpath d='M6.5 17.35h11l-1.4-1.75v-3.1a4.1 4.1 0 1 0-8.2 0v3.1L6.5 17.35Z' fill='none' stroke='%237C3AED' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M18.7 7.3a3.6 3.6 0 0 1 0 5.1' fill='none' stroke='%237C3AED' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center/24px 24px no-repeat;
}

.waitlist-form {
  position: relative;
  display: grid;
  gap: 24px;
  max-width: 672px;
  margin-top: 40px;
}

.waitlist-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #64748b;
}

.waitlist-form input {
  width: 100%;
  min-height: 62px;
  padding: 19px 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
}

.waitlist-form button {
  width: fit-content;
  min-height: 68px;
  padding: 20px 48px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

footer {
  padding: 48px 0 56px;
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand .logo-wordmark {
  font-size: 24px;
}

.footer-brand .logo-pin {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-column {
  display: grid;
  gap: 10px;
  min-width: 132px;
}

.footer-heading {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
footer small {
  color: var(--slate);
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
}

.footer-column a:hover {
  color: var(--blue);
}

.footer-social-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-social:hover {
  color: var(--blue);
}

@media (max-width: 1100px) {
  .hero-grid,
  .problem-grid,
  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
  }

  .hero::after,
  .hero-media-block {
    display: none;
  }

  .hero-media {
    min-height: auto;
    padding-top: 24px;
    justify-content: center;
  }

  .hero-device {
    transform: rotate(3deg);
  }

  .hero-shot-frame {
    width: min(320px, 100%);
    height: auto;
    aspect-ratio: 320 / 630.67;
  }

  .problem-list li {
    padding-left: 56px;
  }

  .feature-row,
  .feature-row-reverse {
    gap: 40px;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .site-nav {
    backdrop-filter: blur(10px);
  }

  .nav-inner {
    min-height: 68px;
  }

  .logo-wordmark {
    font-size: 28px;
  }

  .logo-pin {
    width: 18px;
    height: 18px;
  }

  .site-nav nav {
    gap: 12px;
  }

  .site-nav nav a:not(.pill) {
    display: none;
  }

  .site-nav .pill {
    padding: 9px 16px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .hero {
    padding: 48px 0 56px;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 42px;
    letter-spacing: -0.8px;
  }

  .hero-sub,
  .features-head p {
    font-size: 16px;
    line-height: 26px;
  }

  .problem-copy h2,
  .features-head h2 {
    font-size: 32px;
    line-height: 34px;
  }

  .problem {
    padding: 72px 0;
  }

  .features {
    padding: 40px 0 72px;
  }

  .features-head {
    gap: 16px;
    margin-bottom: 56px;
  }

  .hero-actions {
    gap: 12px;
    padding-top: 20px;
  }

  .btn {
    min-height: 52px;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-media {
    display: flex;
    min-height: auto;
    padding-top: 8px;
  }

  .hero-device {
    transform: none;
  }

  .hero-shot-frame {
    width: min(252px, 72vw);
    border-radius: 30px;
    box-shadow: 0 28px 54px -28px rgba(15, 23, 42, 0.45);
  }

  .hero-shot-frame::after {
    border-width: 8px;
    border-radius: 30px;
  }

  .problem-list li {
    padding-bottom: 20px;
    padding-left: 44px;
  }

  .problem-list strong {
    font-size: 18px;
    line-height: 24px;
  }

  .problem-copy p,
  .problem-list p,
  .feature-copy p {
    font-size: 16px;
    line-height: 26px;
  }

  .feature-row,
  .feature-row-reverse {
    gap: 20px;
    padding-top: 0;
  }

  .feature-copy {
    max-width: none;
  }

  .feature-copy h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .feature-copy .feature-step {
    margin-bottom: 12px;
  }

  .feature-list {
    margin-top: 24px;
    gap: 14px;
  }

  .feature-list li {
    padding-left: 34px;
    font-size: 15px;
    line-height: 22px;
  }

  .btn,
  .waitlist-form button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-meta {
    gap: 12px;
  }

  .footer-nav {
    gap: 24px;
    justify-content: flex-start;
  }

  .video-modal {
    padding: 16px;
  }

  .feature-media {
    display: none;
  }
}

/* =============================================================================
   INNER PAGE COMPATIBILITY LAYER
   Migrated from the former site.css so figma-site.css is the shared source.
   Scoped under body.inner-page to avoid changing the homepage system.
   ============================================================================= */

body.inner-page {
  --dark: #0B1120;
  --dark-mid: #131D33;
  --accent: #0052FF;
  --accent-hover: #0046DC;
  --accent-soft: rgba(0, 82, 255, 0.08);
  --accent-glow: rgba(0, 82, 255, 0.25);
  --green: #10B981;
  --surface: #F7F8FB;
  --white: #FFFFFF;
  --text: #1E293B;
  --text-mid: #475569;
  --text-muted: #94A3B8;
  --text-on-dark: #CBD5E1;
  --border: #E2E8F0;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Karla', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.inner-page,
body.inner-page *,
body.inner-page *::before,
body.inner-page *::after {
  box-sizing: border-box;
}

body.inner-page * {
  margin: 0;
  padding: 0;
}

body.inner-page {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.inner-page .container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

body.inner-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

body.inner-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.inner-page .section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

body.inner-page .section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

body.inner-page .section-sub {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 52px;
}

body.inner-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

body.inner-page .btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

body.inner-page .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

body.inner-page .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

body.inner-page .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

body.inner-page .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

body.inner-page nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

body.inner-page nav.scrolled {
  padding: 12px 0;
  background: rgba(11, 17, 32, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.inner-page nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.inner-page .nav-right {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

body.inner-page .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

body.inner-page .nav-link {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s var(--ease-out);
}

body.inner-page .nav-link:hover,
body.inner-page .nav-link.active {
  opacity: 1;
}

body.inner-page .logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1.5px;
}

body.inner-page .logo-pin {
  width: 22px;
  height: 22px;
  margin-top: 0;
  color: var(--accent);
  flex-shrink: 0;
}

body.inner-page .nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

body.inner-page .nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

body.inner-page .page-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 72px;
  background: var(--dark);
  color: var(--white);
}

body.inner-page .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 54% at 14% 40%, rgba(0, 82, 255, 0.15), transparent 70%),
    radial-gradient(ellipse 48% 58% at 84% 24%, rgba(59, 130, 246, 0.10), transparent 72%);
  pointer-events: none;
}

body.inner-page .page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

body.inner-page .page-hero-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 20px;
  border-radius: 100px;
  background: rgba(0, 82, 255, 0.15);
  border: 1px solid rgba(0, 82, 255, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7FB3FF;
}

body.inner-page .page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  color: var(--white);
}

body.inner-page .page-hero p {
  font-size: 1.1rem;
  color: var(--text-on-dark);
  line-height: 1.7;
  max-width: 620px;
}

body.inner-page footer {
  padding: 48px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.inner-page .footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

body.inner-page .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
  text-decoration: none;
}

body.inner-page .footer-brand .logo-pin {
  width: 18px;
  height: 18px;
}

body.inner-page .footer-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.inner-page .footer-group {
  display: grid;
  gap: 10px;
  min-width: 132px;
}

body.inner-page .footer-heading {
  color: var(--white);
}

body.inner-page .footer-link {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s var(--ease-out);
}

body.inner-page .footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  body.inner-page .nav-links {
    display: none;
  }

  body.inner-page .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  body.inner-page .footer-links {
    justify-content: center;
    gap: 20px;
  }

  body.inner-page .footer-group {
    min-width: 0;
  }

  body.inner-page .footer-links {
    justify-content: center;
  }

  body.inner-page .page-hero {
    padding: 100px 0 60px;
  }
}

@media (max-width: 480px) {
  body.inner-page .container {
    width: min(1140px, calc(100% - 32px));
  }

  body.inner-page .btn-primary,
  body.inner-page .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
