:root {
  --navy: #060a1a;
  --navy-2: #0b1230;
  --card: #10173a;
  --blue: #3b5bfd;
  --blue-light: #6c86ff;
  --ink: #0d1230;
  --paper: #f4f5fb;
  --white: #ffffff;
  --muted: #6b7290;
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(59, 91, 253, 0.35);
}
.btn-primary:hover { box-shadow: 0 10px 26px rgba(59, 91, 253, 0.5); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; }

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid rgba(13, 18, 48, 0.25);
  color: var(--ink);
}
.btn-outline-dark:hover { border-color: var(--ink); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
}
.logo svg { flex-shrink: 0; }
.logo.dark { color: #fff; }
.logo.light { color: var(--ink); }

.site-header {
  background: var(--navy);
  padding: 18px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.main-nav ul {
  display: flex;
  gap: 32px;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.main-nav a:hover,
.main-nav a.active { color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 24px; height: 2px; background: #fff; display: block;
}

.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding-bottom: 60px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(59, 91, 253, 0.25), transparent 60%),
    radial-gradient(500px 500px at 10% 90%, rgba(108, 134, 255, 0.12), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-top: 56px;
}

.badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.95;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-title .crown-icon { width: 0.5em; height: 0.5em; }

.hero-subtitle {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 22px 0;
}
.hero-subtitle .accent { color: var(--blue-light); }

.hero-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.countdown-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.countdown-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}
.countdown-info .icon-box {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.countdown-info strong { display: block; font-size: 14.5px; }
.countdown-info span { display: block; font-size: 13px; color: var(--muted); }

.countdown-units { display: flex; gap: 10px; }
.countdown-unit {
  background: var(--navy-2);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  min-width: 62px;
}
.countdown-unit .num {
  color: #fff; font-size: 20px; font-weight: 700; font-variant-numeric: tabular-nums;
}
.countdown-unit .label {
  color: var(--muted); font-size: 11px; margin-top: 2px;
}

.hero-media {
  position: relative;
}
.hero-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #1a2350, #060a1a);
}
.hero-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}

.sticky-note {
  position: absolute;
  top: 8%;
  right: -4%;
  color: #fff;
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: 22px;
  line-height: 1.25;
  text-align: right;
  transform: rotate(-3deg);
  max-width: 200px;
}

.ribbon {
  position: absolute;
  bottom: 8%;
  right: -6%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  padding: 16px 22px;
  transform: rotate(-4deg);
  box-shadow: 0 12px 30px rgba(59, 91, 253, 0.45);
  max-width: 260px;
}
.ribbon .crown-icon { width: 20px; height: 20px; margin-bottom: 6px; }

section { padding: 90px 0; }
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px 0;
}
.section-title .accent { color: var(--blue); }
.section-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

.ideas-section .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
}
.idea-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  margin-top: 36px;
}
.idea-item { display: flex; gap: 14px; }
.idea-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #e8ecff;
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.idea-item h3 { font-size: 15.5px; margin: 2px 0 6px 0; }
.idea-item p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }

.profile-card {
  background: var(--navy);
  border-radius: 22px;
  padding: 34px 30px;
  color: #fff;
}
.profile-card .logo { margin-bottom: 22px; }
.profile-card .logo::after {
  content: "";
  display: block;
  width: 56px; height: 3px;
  background: var(--blue);
  margin-top: 10px;
}
.profile-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 16px 0;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
}

.why-section {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.why-section .eyebrow { justify-content: center; }
.why-section .section-title { max-width: 640px; margin-left: auto; margin-right: auto; }
.why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 26px;
  text-align: left;
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1.5px solid rgba(108, 134, 255, 0.4);
  color: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card h3 { font-size: 18px; margin: 0 0 10px 0; letter-spacing: 0.3px; }
.why-card p { color: rgba(255, 255, 255, 0.6); font-size: 14px; line-height: 1.6; margin: 0; }

.promises-section .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.promise-list { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.promise-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff;
  border: 1px solid #e7e9f5;
  border-radius: 14px;
  padding: 16px 18px;
}
.promise-item .idea-icon { background: #eef1ff; }
.promise-item h3 { margin: 0 0 4px 0; font-size: 15px; }
.promise-item p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }

.promo-visual { position: relative; }
.promo-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.promo-photo img { width: 100%; height: 100%; object-fit: cover; }
.promo-tag {
  position: absolute;
  top: -8%;
  left: 2%;
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  transform: rotate(-4deg);
}
.promo-title {
  position: absolute;
  bottom: -10%;
  right: -4%;
  background: var(--blue);
  color: #fff;
  padding: 20px 24px;
  transform: rotate(-3deg);
  box-shadow: 0 14px 34px rgba(59, 91, 253, 0.4);
}
.promo-title .crown-icon { width: 24px; height: 24px; margin-bottom: 8px; }
.promo-title strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}
.promo-title span { font-size: 15px; font-weight: 600; opacity: 0.9; }

.request-bar {
  background: var(--navy);
  padding: 40px 0;
}
.request-card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.request-lead { display: flex; gap: 14px; color: #fff; max-width: 260px; }
.request-lead h3 { margin: 0 0 4px 0; font-size: 15.5px; }
.request-lead p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }

.request-form { display: flex; flex-direction: column; gap: 10px; }
.request-form input[type="text"] {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}
.request-form input[type="text"]::placeholder { color: var(--muted); }
.request-form label {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 13px;
}

.request-status {
  font-size: 13px;
  margin-top: 4px;
  min-height: 18px;
}
.request-status.ok { color: #6ee7b7; }
.request-status.err { color: #fca5a5; }

.site-footer {
  background: var(--navy);
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-left p {
  color: var(--muted);
  font-size: 13px;
  margin: 6px 0 0 0;
}
.footer-url {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}
.footer-right { display: flex; align-items: center; gap: 18px; }
.footer-note { color: var(--muted); font-size: 13px; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 380px; margin: 0 auto; }
  .sticky-note { display: none; }
  .ideas-section .container { grid-template-columns: 1fr; }
  .idea-list { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .promises-section .container { grid-template-columns: 1fr; }
  .promo-visual { margin-top: 40px; }
  .request-card { grid-template-columns: 1fr; text-align: left; }
  .site-footer .container { flex-direction: column; text-align: center; }
}
