:root {
  --navy-950: #06121f;
  --navy-900: #081827;
  --navy-850: #0b2034;
  --navy-800: #0f2b44;
  --sea-600: #0f8fb3;
  --sea-500: #19b5d8;
  --gold-500: #d6a74f;
  --gold-400: #f0c66a;
  --white: #ffffff;
  --text: #d7e7f4;
  --muted: #90a9bb;
  --line: rgba(255,255,255,.12);
  --shadow: 0 28px 70px rgba(0,0,0,.34);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(25,181,216,.20), transparent 32%),
    linear-gradient(180deg, #06121f 0%, #081827 44%, #06121f 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(6,18,31,.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  padding: 4px;
  border: 1px solid rgba(255,255,255,.12);
}

.brand-text strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  letter-spacing: .04em;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #c4d7e6;
  font-size: 14px;
}

.menu a {
  position: relative;
  padding: 8px 0;
  transition: color .2s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold-400);
  transition: right .2s ease;
}

.menu a:hover { color: var(--white); }
.menu a:hover::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, var(--gold-400), #f8dd93);
  box-shadow: 0 18px 36px rgba(214,167,79,.18);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 76%);
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 56px;
  align-items: center;
  padding: 78px 0 82px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(240,198,106,.34);
  border-radius: 999px;
  color: #f4d991;
  background: rgba(214,167,79,.08);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 22px;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sea-500);
  box-shadow: 0 0 0 6px rgba(25,181,216,.12);
}

h1 {
  color: var(--white);
  max-width: 860px;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin-bottom: 22px;
}

.lead {
  color: #bfd3e2;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.trust-item {
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 2px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.visual-shell {
  position: relative;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(240,198,106,.38), rgba(25,181,216,.20), rgba(255,255,255,.08));
  box-shadow: var(--shadow);
}

.visual-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 33px;
  background:
    linear-gradient(180deg, rgba(7,25,42,.14), rgba(7,25,42,.94)),
    radial-gradient(circle at 72% 22%, rgba(25,181,216,.34), transparent 28%),
    linear-gradient(135deg, #0c2339 0%, #0f3a58 58%, #092133 100%);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  pointer-events: none;
}

.visual-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.08) 36% 36.3%, transparent 36.3% 100%),
    linear-gradient(105deg, transparent 0 50%, rgba(240,198,106,.18) 50% 50.4%, transparent 50.4% 100%);
  opacity: .9;
}

.wave-one, .wave-two {
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -16%;
  height: 42%;
  border-radius: 50% 50% 0 0;
  transform: rotate(-4deg);
}

.wave-one { background: rgba(25,181,216,.46); }

.wave-two {
  bottom: -21%;
  background: rgba(214,167,79,.26);
  transform: rotate(5deg);
}

.brand-panel {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(6,18,31,.58);
  backdrop-filter: blur(18px);
}

.brand-panel small {
  display: block;
  color: var(--gold-400);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.brand-panel h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 54px);
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

.brand-panel p {
  color: #cfe0ed;
  max-width: 430px;
  font-size: 15px;
}

.page-hero {
  padding: 88px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 10%, rgba(25,181,216,.18), transparent 32%),
    rgba(255,255,255,.025);
}

.page-hero h1 { max-width: 880px; }

.page-hero p {
  color: #bfd3e2;
  max-width: 780px;
  font-size: 18px;
  margin-top: -6px;
}

.section { padding: 86px 0; }

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head.center { margin: 0 auto 42px; text-align: center; }

.section-kicker {
  display: block;
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section h2 {
  color: var(--white);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.14;
  letter-spacing: -.035em;
  margin-bottom: 14px;
}

.section-head p, .copy p {
  color: var(--muted);
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 22px 46px rgba(0,0,0,.18);
}

.feature-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #071827;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-400), #fff0ba);
  margin-bottom: 24px;
}

.feature-card h3 {
  color: var(--white);
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.feature-card p { color: var(--muted); font-size: 15px; }

.editorial {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}

.media-card {
  min-height: 430px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.13);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(240,198,106,.18), transparent 26%),
    linear-gradient(145deg, #0a1c2e, #0f3f5a 54%, #071827);
  position: relative;
}

.media-card::before {
  content: "OMBAK126";
  position: absolute;
  left: 28px;
  top: 30px;
  color: rgba(255,255,255,.08);
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -18% -18%;
  height: 50%;
  background: rgba(25,181,216,.42);
  border-radius: 50% 50% 0 0;
  transform: rotate(-5deg);
}

.media-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  padding: 22px;
  border-radius: 22px;
  background: rgba(6,18,31,.62);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.media-caption strong {
  color: var(--white);
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
}

.media-caption span { color: var(--muted); font-size: 14px; }

.copy h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.14;
  margin-bottom: 18px;
}

.copy p { margin-bottom: 16px; }

.bullet-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}

.bullet-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  color: #cfe0ed;
}

.bullet-list li::before {
  content: "";
  flex: 0 0 9px;
  height: 9px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--gold-400);
  box-shadow: 0 0 0 5px rgba(214,167,79,.10);
}

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

.quick-link {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.045);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.quick-link:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.075);
  border-color: rgba(240,198,106,.36);
}

.quick-link strong { color: var(--white); font-size: 15px; line-height: 1.35; }
.quick-link span { color: var(--muted); font-size: 12px; margin-top: 10px; }

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

.faq-item {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}

.faq-item h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.faq-item p { color: var(--muted); font-size: 15px; }

.cta {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at center top, rgba(214,167,79,.15), transparent 34%),
    rgba(255,255,255,.035);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin-bottom: 14px;
}

.cta p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 16px;
}

.footer {
  padding: 54px 0 26px;
  background: #050f1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.footer h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 17px;
}

.footer p, .footer a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 9px;
}

.footer a:hover { color: var(--gold-400); }

.copyright {
  padding-top: 22px;
  color: #6f8798;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 980px) {
  .menu { display: none; }
  .hero-wrap, .editorial, .footer-grid { grid-template-columns: 1fr; }
  .hero-wrap { min-height: auto; padding-top: 56px; }
  .feature-grid, .link-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: 1fr; }
  .visual-card { min-height: 440px; }
}

@media (max-width: 640px) {
  .nav { flex-wrap: wrap; padding: 14px 0; }
  .nav-cta { width: 100%; }
  .nav-cta .btn { flex: 1; }
  h1 { font-size: 38px; }
  .lead { font-size: 16px; }
  .hero-wrap { padding-bottom: 58px; }
  .feature-grid, .link-grid, .faq-grid { grid-template-columns: 1fr; }
  .editorial { padding: 20px; }
  .media-card { min-height: 340px; }
  .brand-panel { left: 20px; right: 20px; bottom: 20px; padding: 20px; }
  .brand-panel h2 { font-size: 36px; }
}