:root {
  --ink: #e8f4ff;
  --muted: rgba(232, 244, 255, 0.7);
  --accent: #2d8cff;
  --accent-2: #0dd1ff;
  --accent-3: #ffd347;
  --bg: #082448;
  --card: rgba(7, 31, 66, 0.92);
  --shadow: rgba(3, 14, 34, 0.45);
  --border: rgba(118, 178, 255, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Franklin Gothic Medium", "Trebuchet MS", "DejaVu Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(14, 64, 128, 0.75), transparent 55%),
    radial-gradient(circle at 90% 15%, rgba(10, 44, 92, 0.85), transparent 45%),
    repeating-linear-gradient(135deg, #0b2f5f 0 14px, #0a2750 14px 28px),
    var(--bg);
  overflow-x: hidden;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 28px 80px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(118, 178, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 178, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: fixed;
  border-radius: 999px;
  opacity: 0.7;
  z-index: 0;
}

.orb-a {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(118, 178, 255, 0.7), transparent 65%);
  top: -120px;
  right: -100px;
}

.orb-b {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 211, 71, 0.55), transparent 70%);
  bottom: -180px;
  left: -160px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: linear-gradient(180deg, rgba(17, 71, 140, 0.9), rgba(9, 41, 84, 0.92));
  border-bottom: 2px solid var(--border);
  box-shadow: 0 18px 40px var(--shadow);
  z-index: 10;
}

.brand {
  display: grid;
  gap: 4px;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 60px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 10px rgba(3, 14, 34, 0.5));
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.mark {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(3, 18, 42, 0.8), 0 0 16px rgba(118, 178, 255, 0.6);
}

.tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin: 16px 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
}

.pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(7, 31, 66, 0.6);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 26px 0 10px;
}

.price-card {
  background: var(--card);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 18px 36px var(--shadow);
  border: 2px solid var(--border);
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.price-note {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe070, #ffbf3a);
  color: #0a2248;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(8, 12, 24, 0.45);
  border: 2px solid rgba(255, 221, 120, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}

.cta.full {
  width: 100%;
}

.cta-strip {
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 65, 128, 0.9), rgba(8, 30, 64, 0.95));
  border: 2px solid var(--border);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 18px 40px var(--shadow);
}

.hero-visual .frame {
  background: rgba(7, 31, 66, 0.92);
  border-radius: 24px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.4);
  border: 2px solid var(--border);
}

.frame-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

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

.screen {
  position: relative;
  border-radius: 16px;
  min-height: 200px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 195, 255, 0.4), transparent 60%),
    linear-gradient(180deg, #0b1f3f, #071226);
  border: 3px solid rgba(124, 195, 255, 0.8);
  overflow: hidden;
}

.screen-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 22px rgba(124, 195, 255, 0.25);
}

.play-triangle {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 0;
  height: 0;
  border-left: 18px solid #7cd5ff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  opacity: 0.85;
  filter: drop-shadow(0 4px 8px rgba(3, 14, 34, 0.6));
}

.frame-strip {
  background: #111d35;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(118, 178, 255, 0.3);
}

.thumb {
  height: 72px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.frame-footer {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.section {
  margin-top: 120px;
  position: relative;
  z-index: 1;
}

.section-title {
  max-width: 520px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title p {
  color: var(--muted);
  line-height: 1.6;
}

.features {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 16px 32px var(--shadow);
  border: 2px solid rgba(118, 178, 255, 0.35);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.5;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.split-copy ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.split-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px var(--shadow);
  border: 2px solid rgba(118, 178, 255, 0.4);
}

.card-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 16px;
}

.card-body {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.line.highlight {
  color: var(--ink);
  font-weight: 600;
}

.contact-card {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px var(--shadow);
  border: 2px solid rgba(118, 178, 255, 0.4);
}

.contact-info .label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.note {
  font-size: 12px;
  color: rgba(232, 244, 255, 0.5);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(118, 178, 255, 0.35);
  font-size: 14px;
  font-family: inherit;
  background: #0b254a;
  color: #e8f4ff;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 30px 20px 50px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(118, 178, 255, 0.3);
  background: rgba(7, 31, 66, 0.8);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hero {
    margin-top: 20px;
  }

  .frame-body {
    grid-template-columns: 1fr;
  }
}
