:root {
  --bg: #08111f;
  --bg-soft: #0d1628;
  --panel: rgba(15, 28, 48, 0.82);
  --panel-strong: #12233d;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(125, 162, 201, 0.18);
  --text: #ecf3ff;
  --muted: #aab7cf;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #31d3de;
  --accent-2: #2ed39a;
  --accent-3: #70e0ff;
  --warm: #f8c46b;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 212, 222, 0.12), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(46, 211, 154, 0.10), transparent 28%),
    linear-gradient(180deg, #07101c 0%, #0b1629 52%, #08111f 100%);
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; }

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.35;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite;
}
.ambient-one {
  width: 360px;
  height: 360px;
  background: rgba(49, 211, 222, 0.18);
  top: 140px;
  right: -120px;
}
.ambient-two {
  width: 420px;
  height: 420px;
  background: rgba(46, 211, 154, 0.12);
  left: -180px;
  top: 960px;
  animation-delay: -4s;
}
.ambient-three {
  width: 300px;
  height: 300px;
  background: rgba(112, 224, 255, 0.09);
  right: 10%;
  top: 1800px;
  animation-delay: -9s;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 31, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #08111f;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 12px 28px rgba(46, 211, 154, 0.25);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-copy strong {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color .25s ease;
}
.site-nav a:hover { color: var(--text); }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.header-cta,
.btn-primary {
  color: #08111f;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 16px 30px rgba(49, 211, 222, 0.24);
}
.header-cta:hover,
.btn:hover { transform: translateY(-2px); }

.btn-secondary {
  border: 1px solid var(--card-border);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  padding: 92px 0 54px;
  align-items: center;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-radius: 999px;
  padding: 9px 14px;
  border: 1px solid rgba(49, 211, 222, 0.25);
  background: rgba(49, 211, 222, 0.08);
  color: #b9f8ff;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.hero-copy h1,
.section-heading h2,
.contact-card h2 {
  margin: 18px 0 18px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.hero-metrics article,
.feature-card,
.service-card,
.timeline-item,
.screen-card,
.showcase-icon-card,
.contact-card,
.showcase-panel {
  border: 1px solid var(--card-border);
  background: var(--card);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.hero-metrics article {
  padding: 18px;
  border-radius: 22px;
}
.hero-metrics strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.04rem;
  margin-bottom: 8px;
}
.hero-metrics span { color: var(--muted); font-size: 0.95rem; }

.hero-visual {
  position: relative;
}
.hero-card {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
  transform: perspective(1200px) rotateY(-7deg) rotateX(4deg);
}
.hero-card img {
  width: 100%;
  height: auto;
}
.floating-note {
  position: absolute;
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(8, 17, 31, 0.92);
  border: 1px solid rgba(49, 211, 222, 0.18);
  box-shadow: var(--shadow);
  animation: bob 5.6s ease-in-out infinite;
}
.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.floating-note strong { font-size: 0.98rem; }
.note-a { left: -24px; bottom: 28px; }
.note-b { right: -20px; top: 38px; animation-delay: -2.5s; }

section { padding: 48px 0; }
.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}
.section-heading p { color: var(--muted); }
.section-heading.narrow { max-width: 620px; }

.product-grid,
.services-grid,
.timeline,
.contact-grid {
  display: grid;
  gap: 18px;
}
.product-grid {
  grid-template-columns: repeat(4, 1fr);
}
.feature-card,
.service-card,
.timeline-item {
  padding: 24px;
  border-radius: 24px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'Sora', sans-serif;
  color: #08111f;
}
.feature-icon.aqua { background: linear-gradient(135deg, #83eeff, #31d3de); }
.feature-icon.teal { background: linear-gradient(135deg, #7df1c6, #2ed39a); }
.feature-icon.sky { background: linear-gradient(135deg, #b2efff, #70e0ff); }
.feature-icon.mint { background: linear-gradient(135deg, #e9fbb7, #9ff3d0); }
.feature-card h3,
.service-card h3,
.screen-copy h3,
.timeline-item h3,
.contact-grid h3,
.site-footer h3,
.showcase-icon-card strong {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1.18rem;
}
.feature-card p,
.service-card p,
.timeline-item p,
.screen-copy p,
.showcase-copy p,
.contact-grid p,
.footer-note,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 20px;
  align-items: start;
}
.showcase-panel {
  padding: 28px;
  border-radius: 30px;
  position: sticky;
  top: 98px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(49, 211, 222, 0.12);
}
.showcase-icon-card {
  margin-top: 30px;
  padding: 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.showcase-icon-card img {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  object-fit: cover;
}
.showcase-icon-card span { color: var(--muted); display: block; }

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.screen-card {
  overflow: hidden;
  border-radius: 28px;
  transition: transform .3s ease, border-color .3s ease;
}
.screen-card:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 211, 222, 0.3);
}
.screen-card img {
  width: 100%;
  background: #0c1220;
}
.screen-card.tall {
  grid-row: span 2;
}
.screen-copy {
  padding: 18px 20px 22px;
}

.services-grid {
  grid-template-columns: repeat(2, 1fr);
}
.service-card {
  min-height: 180px;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(49, 211, 222, 0.18), transparent 60%);
  right: -40px;
  bottom: -40px;
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}
.timeline-item {
  position: relative;
}
.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  background: rgba(49, 211, 222, 0.13);
  color: #b9f8ff;
}

.contact-card {
  padding: 34px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}
.contact-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.contact-grid a,
.site-footer a {
  color: #cbfaff;
}

.site-footer {
  padding: 42px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 24px;
}
.footer-brand { margin-bottom: 18px; }
.footer-note { max-width: 430px; }
.footer-bottom {
  padding-top: 18px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p {
  margin: 0;
  color: rgba(170, 183, 207, 0.8);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.privacy-layout {
  padding: 90px 0 40px;
}
.privacy-hero {
  padding: 34px;
  border-radius: 30px;
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}
.privacy-hero h1 {
  margin: 16px 0 12px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 3vw, 4rem);
  line-height: 1.05;
}
.privacy-hero p { color: var(--muted); max-width: 760px; }
.privacy-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
}
.privacy-aside,
.privacy-content {
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: 28px;
}
.privacy-aside {
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 98px;
}
.privacy-aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.privacy-aside a {
  display: block;
  padding: 12px 14px;
  color: var(--muted);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}
.privacy-aside a:hover { color: var(--text); }
.privacy-content {
  padding: 10px 28px 28px;
}
.privacy-section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.privacy-section:last-child { border-bottom: 0; }
.privacy-section h2 {
  margin: 0 0 12px;
  font-family: 'Sora', sans-serif;
  font-size: 1.55rem;
}
.privacy-section p { color: var(--muted); margin: 0 0 12px; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(12px,-18px,0); }
}

@media (max-width: 1100px) {
  .hero-section,
  .showcase,
  .contact-card,
  .privacy-grid {
    grid-template-columns: 1fr;
  }
  .showcase-panel,
  .privacy-aside { position: static; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .hero-section { padding-top: 70px; }
  .hero-metrics,
  .services-grid,
  .contact-grid,
  .screen-grid { grid-template-columns: 1fr; }
  .product-grid,
  .timeline,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card { transform: none; }
  .note-a { left: 10px; bottom: 12px; }
  .note-b { right: 10px; top: 10px; }
  .screen-card.tall { grid-row: auto; }
  .contact-card { padding: 24px; }
  .privacy-content { padding-inline: 20px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .header-row { gap: 14px; }
  .brand-copy small { display: none; }
  .header-cta { display: none; }
  .hero-copy h1,
  .section-heading h2,
  .contact-card h2,
  .privacy-hero h1 { font-size: 2.25rem; }
  .btn,
  .btn-primary,
  .btn-secondary { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; }
  .floating-note { display: none; }
}
