*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg: #07120f;
  --deep: #041015;
  --ink: #10242f;
  --paper: #f5faf9;
  --paper-soft: #e8f2f1;
  --text: #eef8f7;
  --muted: rgba(238, 248, 247, 0.72);
  --muted-dark: #557078;
  --line: rgba(142, 227, 208, 0.28);
  --line-dark: rgba(16, 36, 47, 0.14);
  --teal: #1f7a8c;
  --green: #2fbf91;
  --gold: #f2b94b;
  --red: #d95f59;
  --signal-bg: #f1f6f8;
  --signal-header: #0f6272;
  --signal-primary: #0d7f89;
  --signal-grid: rgba(248, 252, 255, 0.1);
  --page-pad: clamp(96px, 8vw, 168px);
  --radius: 8px;
  --font-ui: "Sora", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-data: "Roboto Mono", "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--text);
  font-family: var(--font-ui);
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--page-pad);
  border-bottom: 1px solid rgba(142, 227, 208, 0.22);
  background: rgba(4, 16, 21, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 34px;
  display: block;
  filter: invert(1) brightness(1.8);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav a {
  position: relative;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  min-height: 78vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, clamp(420px, 34vw, 600px)) minmax(0, 1fr);
  align-items: center;
  align-content: center;
  gap: 42px clamp(34px, 5vw, 72px);
  overflow: hidden;
  padding: 104px var(--page-pad) 34px;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(242, 185, 75, 0.2), transparent 36%),
    repeating-linear-gradient(90deg, var(--signal-grid) 0 1px, transparent 1px 4.6rem),
    repeating-linear-gradient(0deg, rgba(248, 252, 255, 0.07) 0 1px, transparent 1px 4.6rem),
    linear-gradient(120deg, var(--signal-primary), var(--signal-header) 58%, #0b4654);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 38%;
  background:
    linear-gradient(180deg, transparent, rgba(4, 16, 21, 0.58)),
    linear-gradient(90deg, transparent, rgba(242, 185, 75, 0.2) 52%, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(600px, 100%);
  min-width: 0;
}

.hero-logo {
  width: 340px;
  max-width: 72vw;
  height: auto;
  display: block;
  margin-bottom: 30px;
  filter: invert(1) brightness(1.9);
}

.hero-slides {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  min-width: 0;
  aspect-ratio: 1.58;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(248, 252, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(241, 246, 248, 0.14);
  box-shadow:
    0 34px 90px rgba(4, 16, 21, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: rotate(-2deg);
}

.hero-slides::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(145deg, transparent 0 50%, rgba(13, 127, 137, 0.08) 50% 100%);
  pointer-events: none;
}

.hero-slide-track {
  height: 100%;
  display: flex;
  animation: heroSlideTrack 15s infinite cubic-bezier(0.76, 0, 0.24, 1);
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  padding: clamp(18px, 2.8vw, 34px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 24px);
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(16, 36, 47, 0.09) 0 1px, transparent 1px 4.2rem),
    repeating-linear-gradient(0deg, rgba(16, 36, 47, 0.08) 0 1px, transparent 1px 4.2rem),
    linear-gradient(145deg, #f8fcff 0 48%, var(--signal-bg) 48% 100%);
}

.slide-top {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-data);
  font-size: clamp(0.74rem, 0.9vw, 0.88rem);
  font-weight: 800;
  color: rgba(16, 36, 47, 0.72);
  text-transform: uppercase;
}

.slide-top span:first-child {
  padding: 7px 10px;
  border-radius: 6px;
  color: #f8fcff;
  background: var(--signal-header);
}

.weather-body {
  display: grid;
  grid-template-columns: minmax(110px, 0.58fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.weather-mark {
  width: clamp(92px, 12vw, 146px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--gold) 0 28%, transparent 29%),
    conic-gradient(from 4deg, transparent 0 9%, rgba(242, 185, 75, 0.82) 9% 13%, transparent 13% 25%);
  filter: drop-shadow(0 14px 20px rgba(242, 185, 75, 0.2));
}

.weather-body strong {
  color: var(--signal-header);
  font-size: clamp(4rem, 8vw, 7.3rem);
  line-height: 0.9;
}

.forecast-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: rgba(16, 36, 47, 0.7);
}

.forecast-row span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-top: 5px solid rgba(13, 127, 137, 0.55);
  background: rgba(15, 98, 114, 0.08);
}

.flight-board {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(70px, 0.75fr) minmax(0, 1fr) minmax(62px, 0.55fr);
  gap: 8px 12px;
  font-family: var(--font-data);
  font-size: clamp(0.84rem, 1.1vw, 1.05rem);
  font-weight: 700;
}

.flight-board span {
  min-width: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 36, 47, 0.16);
}

.flight-board span:nth-child(3n) {
  color: var(--signal-primary);
  text-align: right;
}

.hero-slide-flights {
  background:
    linear-gradient(90deg, rgba(15, 98, 114, 0.95) 0 26%, transparent 26% 100%),
    repeating-linear-gradient(90deg, rgba(16, 36, 47, 0.08) 0 1px, transparent 1px 4.2rem),
    linear-gradient(145deg, #f8fcff 0 52%, var(--signal-bg) 52% 100%);
}

.hero-slide-flights .slide-top span:first-child {
  color: var(--signal-header);
  background: var(--gold);
}

.hero-slide-news {
  background:
    linear-gradient(90deg, rgba(242, 185, 75, 0.18), transparent 38%),
    repeating-linear-gradient(90deg, rgba(16, 36, 47, 0.08) 0 1px, transparent 1px 4.2rem),
    repeating-linear-gradient(0deg, rgba(16, 36, 47, 0.06) 0 1px, transparent 1px 4.2rem),
    linear-gradient(145deg, #f8fcff 0 48%, var(--signal-bg) 48% 100%);
}

.hero-slide-news .slide-top span:first-child {
  background: #d95f59;
}

.news-block {
  align-self: end;
  width: min(72%, 360px);
  aspect-ratio: 2.5;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #d95f59 0 32%, transparent 32%),
    linear-gradient(90deg, rgba(13, 127, 137, 0.16), rgba(13, 127, 137, 0.05));
}

.news-lines {
  display: grid;
  gap: 9px;
}

.news-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 98, 114, 0.22);
}

.news-lines span:nth-child(1) {
  width: 92%;
}

.news-lines span:nth-child(2) {
  width: 78%;
}

.news-lines span:nth-child(3) {
  width: 58%;
  background: var(--gold);
}

@keyframes heroSlideTrack {
  0%,
  24% {
    transform: translateX(0);
  }

  31%,
  57% {
    transform: translateX(-100%);
  }

  64%,
  90% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(0);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-data);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 20px;
  color: #f7fbff;
  font-size: 5.8rem;
  line-height: 0.88;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(247, 251, 255, 0.92);
  font-size: 1.72rem;
  line-height: 1.26;
  font-weight: 650;
}

.section {
  padding: 92px var(--page-pad);
}

.section-head {
  max-width: 1180px;
  margin-bottom: 30px;
}

.section-head h2,
.pricing-contact h2 {
  margin-bottom: 0;
  color: #f7fbff;
  font-size: 3.35rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.feature p,
.price-card p,
.pricing-contact p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.feature-icon,
.price-label {
  width: fit-content;
  min-width: 44px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 6px;
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature h3,
.price-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.capabilities-section {
  background:
    linear-gradient(180deg, rgba(7, 18, 15, 0.94), rgba(6, 28, 42, 0.98)),
    var(--deep);
}

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

.feature {
  min-height: 244px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 18px 46px rgba(6, 28, 42, 0.14);
}

.feature-icon {
  background: rgba(242, 185, 75, 0.12);
  color: var(--gold);
}

.feature h3,
.price-card h3 {
  color: #f7fbff;
}

.pricing-section {
  background:
    linear-gradient(90deg, rgba(5,31,44,0.86), rgba(5,31,44,0.96)),
    var(--deep);
}

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

.price-card {
  min-height: 430px;
  padding: 26px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: stretch;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 18px 46px rgba(6, 28, 42, 0.18);
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(242, 185, 75, 0.13), rgba(255, 255, 255, 0.08)),
    rgba(18, 63, 82, 0.82);
  border-color: rgba(242, 185, 75, 0.38);
}

.price-label {
  margin-bottom: 0;
  background: rgba(242, 185, 75, 0.13);
  color: var(--gold);
  text-transform: uppercase;
}

.price-card .price {
  width: calc(100% + 12px);
  margin: 0 -6px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(242, 185, 75, 0.34);
  border-radius: var(--radius);
  color: #061c2a;
  background:
    linear-gradient(135deg, #f7d27a, var(--gold));
  font-size: clamp(3rem, 4.8vw, 4.35rem);
  line-height: 0.95;
  font-weight: 900;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 14px 34px rgba(242, 185, 75, 0.14);
}

.price-card .price span {
  display: block;
  margin-top: 10px;
  color: #061c2a;
  font-size: 1.06rem;
  line-height: 1.2;
  font-weight: 800;
}

.price-copy {
  max-width: 30rem;
}

.price-list {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(238, 248, 247, 0.8);
  font-size: 0.94rem;
  line-height: 1.45;
}

.price-list li {
  position: relative;
  padding-left: 22px;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 185, 75, 0.12);
}

.pricing-contact {
  margin-top: 28px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  border: 1px solid rgba(242, 185, 75, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(242, 185, 75, 0.13), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 46px rgba(6, 28, 42, 0.16);
}

.pricing-contact p {
  max-width: 680px;
  margin-top: 16px;
}

.pricing-contact .eyebrow {
  margin-top: 0;
}

.contact-card {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  font-style: normal;
}

.contact-item {
  min-width: 0;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(242, 185, 75, 0.3);
  border-radius: var(--radius);
  background: rgba(4, 16, 21, 0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

.contact-label {
  color: var(--muted);
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  min-width: 0;
  color: #f7fbff;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.08;
}

.contact-card a {
  min-width: 0;
  color: var(--gold);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: #f6c96b;
  text-decoration: none;
}

.legal-page {
  padding: 124px var(--page-pad) 92px;
  background:
    linear-gradient(180deg, rgba(7, 18, 15, 0.94), rgba(6, 28, 42, 0.98)),
    var(--deep);
}

.legal-wrap {
  max-width: 980px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: var(--font-data);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-back:hover {
  color: #f6c96b;
}

.legal-head {
  max-width: 900px;
  margin-bottom: 46px;
}

.legal-head h1 {
  margin-bottom: 18px;
  color: #f7fbff;
  font-size: clamp(2.75rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.legal-lead {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(247, 251, 255, 0.86);
  font-size: clamp(1.12rem, 1.8vw, 1.5rem);
  line-height: 1.42;
  font-weight: 650;
}

.legal-meta {
  margin-bottom: 26px;
  color: var(--gold);
  font-family: var(--font-data);
  font-size: 0.86rem;
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 30px;
}

.legal-section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 12px;
  color: #f7fbff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.14;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-section p {
  margin-bottom: 0;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-section ul {
  margin: 14px 0 0;
  padding-left: 1.2em;
  display: grid;
  gap: 7px;
}

.legal-section a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.legal-section a:hover {
  color: #f6c96b;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--deep);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-sub {
  text-align: center;
}

.footer-copy,
.footer-link {
  font-family: var(--font-data);
  font-size: 0.88rem;
}

.footer-copy {
  color: var(--muted);
}

.footer-link {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-oclin-logo {
  display: inline-grid;
  justify-items: center;
  gap: 6px;
  opacity: 0.34;
  transition: opacity 0.18s ease;
  color: var(--muted);
  font-family: var(--font-data);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-oclin-logo:hover {
  opacity: 0.72;
}

.footer-oclin-logo img {
  width: auto;
  height: 18px;
  display: block;
}

@media (max-width: 1120px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 42px;
    padding-right: 42px;
  }

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

  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1fr);
    gap: 32px;
  }

  .hero-slides {
    width: min(100%, 560px);
  }
}

@media (max-width: 940px) {
  .site-header {
    position: sticky;
    padding: 14px 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 72px 22px 34px;
  }

  .hero-slides {
    width: min(100%, 520px);
    justify-self: start;
    transform: rotate(-1deg);
  }

  h1 {
    font-size: 4rem;
  }

  .lead {
    font-size: 1.35rem;
  }

  .section,
  .legal-page,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-head h2,
  .pricing-contact h2 {
    font-size: 2.35rem;
  }

  .pricing-grid,
  .pricing-contact {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-slide-track {
    animation: none;
  }
}

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

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-logo {
    width: 250px;
  }

  h1 {
    font-size: 3rem;
  }

  .lead {
    font-size: 1.18rem;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
