@font-face {
  font-family: "Sora";
  src: url("/assets/fonts/Sora.ttf") format("truetype");
  font-weight: 100 800;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --bg: #07132B;
  --bg-2: #0B1B3A;
  --panel: #17233D;
  --panel-2: #1B2A47;
  --cream: #F5F7FA;
  --muted: #9FB3D1;
  --sage: #00D4FF;
  --yellow: #0A84FF;
  --yellow-2: #00D4FF;
  --red: #FF3B30;
  --line: rgba(245, 247, 250, 0.15);
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.site-shell {
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(245, 247, 250, 0.12);
  background: rgba(7, 19, 43, 0.88);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.brand img {
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 9px;
}

.brand span {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(10, 132, 255, 0.55);
  border-radius: 999px;
  color: var(--yellow) !important;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 72px 0 0;
  background:
    radial-gradient(circle at 74% 28%, rgba(10, 132, 255, 0.2), transparent 24%),
    radial-gradient(circle at 92% 58%, rgba(255, 59, 48, 0.18), transparent 26%),
    linear-gradient(135deg, #050E20 0%, #0A2050 54%, #050E20 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 32, 0.92) 0%, rgba(5, 14, 32, 0.56) 58%, rgba(5, 14, 32, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 19, 43, 1) 0%, rgba(7, 19, 43, 0) 44%);
}

.hero::after {
  content: "EYEJOLT";
  position: absolute;
  right: -0.08em;
  bottom: 0.08em;
  color: rgba(245, 247, 250, 0.035);
  font-size: clamp(120px, 22vw, 330px);
  font-weight: 950;
  line-height: 0.75;
  letter-spacing: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 44px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(10, 132, 255, 0.14);
}

h1 {
  margin: 22px 0 18px;
  max-width: 780px;
  font-size: clamp(54px, 8.8vw, 116px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 28px;
  color: #E8EDF6;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.button.primary {
  background: var(--yellow);
  color: #FFFFFF;
}

.button.secondary {
  border: 1px solid rgba(245, 247, 250, 0.28);
  background: rgba(4, 11, 25, 0.5);
  color: var(--cream);
}

.microcopy {
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.platform-strip span {
  border: 1px solid rgba(245, 247, 250, 0.17);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(7, 19, 43, 0.68);
  color: #DFE7F3;
  font-size: 13px;
  font-weight: 850;
}

.product-showcase {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) minmax(150px, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
  padding-top: 26px;
  align-items: end;
}

.phone-device {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 247, 250, 0.18);
  border-radius: 34px;
  background: #040B19;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  aspect-ratio: 9 / 19.5;
}

.phone-device::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 8px rgba(0, 0, 0, 0.22), inset 0 0 30px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 2;
}

.phone-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.primary-phone {
  transform: translateY(24px);
}

.alarm-phone {
  transform: translateY(-10px);
}

.desktop-card {
  grid-column: 1 / -1;
  margin: -18px 22px 0 0;
  overflow: hidden;
  border: 1px solid rgba(245, 247, 250, 0.18);
  border-radius: 18px;
  background: rgba(4, 11, 25, 0.9);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.desktop-topbar {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid rgba(245, 247, 250, 0.12);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
}

.desktop-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}

.desktop-topbar span:nth-child(2) {
  background: var(--sage);
}

.desktop-topbar span:nth-child(3) {
  background: var(--red);
}

.desktop-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.desktop-content strong,
.desktop-content span {
  display: block;
}

.desktop-content strong {
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.desktop-content span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.desktop-kicker {
  margin: 0 0 6px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.signal-bars {
  display: grid;
  gap: 9px;
}

.signal-bars i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow) var(--w), rgba(245, 247, 250, 0.14) var(--w));
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--bg-2);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.6fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p,
.lead {
  margin: 0;
  color: #C7D3E8;
  font-size: 18px;
  font-weight: 650;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.use-card,
.feature-card,
.download-card,
.safety-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 35, 61, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.use-card {
  min-height: 190px;
  padding: 20px;
}

.use-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 18px;
  text-transform: uppercase;
}

.use-card strong a {
  text-decoration: none;
}

.use-card p {
  margin: 0;
  color: #D6DFEE;
  font-weight: 650;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.feature-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 16px;
  align-items: center;
}

.feature-phone {
  border-radius: 28px;
  max-height: 720px;
}

.feature-phone.offset {
  transform: translateY(46px);
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-card {
  padding: 22px;
}

.feature-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cream);
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: #CBD6EA;
  font-weight: 650;
}

.download-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.download-card {
  padding: 26px;
}

.download-card h3 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 25px;
  text-transform: uppercase;
}

.download-card p {
  color: #DCE4F0;
  font-weight: 650;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.platform-list {
  display: grid;
  gap: 10px;
}

.platform-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(245, 247, 250, 0.12);
  padding: 12px 0;
  color: #E1E8F4;
  font-weight: 850;
}

.platform-row span:last-child {
  color: var(--muted);
  text-align: right;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.safety-card {
  padding: 22px;
}

.safety-card strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.safety-card p {
  margin-bottom: 0;
  color: #D4DDEC;
  font-weight: 650;
}

.footer {
  border-top: 1px solid rgba(245, 247, 250, 0.14);
  padding: 34px 0 48px;
  background: #050E20;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer a {
  color: var(--cream);
  text-decoration: none;
  margin-left: 14px;
}

.content-hero {
  padding: 116px 0 64px;
  background:
    radial-gradient(circle at 82% 14%, rgba(10, 132, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #050E20 0%, #0C2456 100%);
}

.content-hero-inner,
.content-section-inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--yellow);
  text-decoration: none;
}

.content-hero h1 {
  max-width: 900px;
  margin: 18px 0 18px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
}

.content-lead {
  max-width: 760px;
  margin: 0;
  color: #E4EAF4;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 750;
}

.content-section {
  padding: 64px 0;
}

.content-section.alt {
  background: var(--bg-2);
}

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

.content-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 35, 61, 0.78);
  padding: 24px;
}

.content-card h2,
.content-card h3 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.content-card p,
.content-card li,
.content-section-inner > p,
.content-section-inner li {
  color: #DCE4F0;
  font-weight: 650;
}

.content-section h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
}

.content-section .content-card h2,
.content-section .content-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.warning-box {
  border: 1px solid rgba(10, 132, 255, 0.42);
  border-radius: 8px;
  background: rgba(10, 132, 255, 0.1);
  padding: 22px;
}

.warning-box {
  margin-bottom: 24px;
}

.warning-box strong {
  color: var(--yellow);
  font-size: 20px;
  text-transform: uppercase;
}

.warning-box p {
  margin-bottom: 0;
}

.article-grid .content-card {
  min-height: 210px;
}

.source-list a,
.review-note a {
  color: var(--yellow);
}

.review-note {
  color: var(--muted) !important;
  font-size: 14px;
}

.tool-panel {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.tool-panel label {
  color: var(--cream);
  font-weight: 800;
}

.tool-panel input[type="number"],
.tool-panel input[type="time"] {
  width: min(100%, 320px);
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050E20;
  color: var(--cream);
  padding: 10px 12px;
  font: inherit;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  background: rgba(23, 35, 61, 0.55);
}

.check-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--yellow);
}

.tool-panel .button {
  width: fit-content;
  margin-top: 8px;
}

.tool-result {
  min-height: 80px;
  border-left: 4px solid var(--yellow);
  padding: 14px 18px;
  background: rgba(10, 132, 255, 0.08);
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.camera-check {
  position: relative;
  overflow: hidden;
  width: min(100%, 680px);
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #040B19;
}

.camera-check video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.face-guide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  aspect-ratio: 3 / 4;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 999px rgba(4, 11, 25, 0.35);
  pointer-events: none;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 35, 61, 0.78);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--cream);
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
  color: #DCE4F0;
}

.link-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.link-list a {
  color: var(--cream);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .section-heading,
  .feature-layout,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    padding-top: 10px;
  }

  .desktop-card {
    margin-right: 0;
  }

  .primary-phone,
  .alarm-phone,
  .feature-phone.offset {
    transform: none;
  }

  .use-grid,
  .safety-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .nav-inner,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .use-grid,
  .safety-grid,
  .feature-media-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .desktop-card {
    grid-column: 1 / -1;
  }

  .desktop-content {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }

  .footer a {
    display: inline-block;
    margin: 8px 14px 0 0;
  }
}

h1, h2, h3, .brand, .eyebrow, .hero::after {
  font-family: "Sora", Inter, ui-sans-serif, system-ui, sans-serif;
}
