* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #05090f;
  --bg-soft: #0f1a2b;
  --surface: rgba(10, 20, 34, 0.72);
  --surface-strong: rgba(14, 28, 46, 0.88);
  --line: rgba(114, 173, 227, 0.28);
  --text: #ebf4ff;
  --text-soft: #b3c7db;
  --accent: #4eb1ff;
  --accent-strong: #2a93ea;
  --ok: #8de2bb;
}

body {
  font-family: 'Barlow', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.background {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(78, 177, 255, 0.18), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(83, 128, 201, 0.2), transparent 45%),
    linear-gradient(125deg, #04070d 0%, #09121f 45%, #0d1b2e 100%);
  z-index: -3;
}

.stars {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 1;
  }
}

.crosshair {
  position: fixed;
  top: 18%;
  right: 9%;
  width: 180px;
  height: 180px;
  opacity: 0.15;
  z-index: -1;
  animation: rotate 18s linear infinite;
}

.crosshair::before,
.crosshair::after {
  content: '';
  position: absolute;
  background: #49a8f0;
  box-shadow: 0 0 18px rgba(73, 168, 240, 0.45);
}

.crosshair::before {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.crosshair::after {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.target-rings {
  position: fixed;
  bottom: -90px;
  left: -60px;
  width: 280px;
  height: 280px;
  opacity: 0.12;
  z-index: -1;
}

.ring {
  position: absolute;
  border: 2px solid #4eb1ff;
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.ring:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 110px;
  left: 110px;
}

.ring:nth-child(2) {
  width: 110px;
  height: 110px;
  top: 85px;
  left: 85px;
  animation-delay: 0.5s;
}

.ring:nth-child(3) {
  width: 160px;
  height: 160px;
  top: 60px;
  left: 60px;
  animation-delay: 1s;
}

.ring:nth-child(4) {
  width: 220px;
  height: 220px;
  top: 30px;
  left: 30px;
  animation-delay: 1.5s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.2;
  }
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
  padding: 2.5rem 0 2rem;
}

.hero {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  animation: fade-up 900ms ease both;
}

.hero-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 0.9rem;
  max-width: 720px;
}

.hero-badge {
  grid-column: 2;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--ok);
  margin-bottom: 0;
}

.locale-switcher {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(120, 184, 236, 0.45);
  background: rgba(9, 22, 37, 0.72);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locale-option {
  color: rgba(180, 210, 235, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.locale-option:any-link {
  color: rgba(180, 210, 235, 0.5);
}

.locale-option:hover {
  color: var(--text);
}

.locale-option.is-active {
  color: var(--text);
  font-weight: 600;
}

.locale-divider {
  color: rgba(120, 184, 236, 0.3);
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-image {
  width: 94px;
  height: 94px;
  filter: drop-shadow(0 0 20px rgba(78, 177, 255, 0.35));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(110deg, #74c3ff, #4ea2ef, #8fdaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  margin-top: 0.4rem;
  color: #9fc1dd;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero-title {
  margin: 1.35rem auto 0;
  max-width: 15ch;
  font-size: clamp(1.8rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy {
  margin: 1.1rem auto 0;
  max-width: 700px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.75rem 1.3rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(120deg, #2b93ea, #5ab6ff);
  color: #02192e;
  box-shadow: 0 0 20px rgba(63, 156, 227, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(81, 176, 247, 0.45);
}

.btn-secondary {
  border-color: rgba(120, 184, 236, 0.65);
  background: rgba(26, 50, 74, 0.42);
  color: #cde8ff;
}

.btn-secondary:hover {
  background: rgba(36, 66, 94, 0.6);
}

main {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.15rem;
}

.section,
.booking-spotlight {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem;
  backdrop-filter: blur(3px);
  animation: fade-up 900ms ease both;
}

.booking-spotlight h3,
.section h3 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.booking-flow {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.flow-step {
  background: rgba(12, 28, 48, 0.7);
  border: 1px solid rgba(111, 168, 228, 0.36);
  border-radius: 16px;
  padding: 0.9rem;
  display: flex;
  flex-direction: row;
  gap: 0.55rem;
}

.flow-number {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: #031427;
  background: linear-gradient(140deg, #6ec5ff, #3f9ee8);
}

.flow-step p {
  color: #d1e4f7;
  line-height: 1.45;
}

.booking-lead {
  margin-top: 0.9rem;
  color: #c8def2;
  line-height: 1.6;
  max-width: 72ch;
}

.booking-value-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.booking-value-card {
  border-radius: 14px;
  border: 1px solid rgba(112, 189, 241, 0.28);
  background:
    linear-gradient(165deg, rgba(16, 37, 60, 0.86), rgba(8, 22, 38, 0.86)),
    radial-gradient(circle at top right, rgba(89, 176, 247, 0.24), transparent 60%);
  padding: 0.9rem;
}

.booking-value-card h4 {
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
}

.booking-value-card p {
  color: #b9d2e8;
  line-height: 1.45;
}

.section-head {
  display: grid;
  gap: 0.5rem;
}

.section-head p {
  color: var(--text-soft);
  line-height: 1.55;
}

.section-kicker {
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #90d1ff;
}

.feature-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-card {
  background: rgba(9, 23, 39, 0.72);
  border: 1px solid rgba(103, 164, 219, 0.26);
  border-radius: 14px;
  padding: 0.95rem;
}

.feature-card h4 {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

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

.feature-card-ops {
  background: rgba(10, 34, 46, 0.7);
  border-color: rgba(114, 212, 216, 0.28);
}

.case-study {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
}

.case-logo-wrap {
  border-radius: 16px;
  border: 1px solid rgba(244, 251, 255, 0.42);
  padding: 1.2rem;
  background:
    linear-gradient(165deg, rgba(7, 19, 33, 0.92), rgba(9, 26, 44, 0.88)),
    radial-gradient(circle at top, rgba(94, 170, 236, 0.12), transparent 65%);
  display: grid;
  place-items: center;
  gap: 0.55rem;
}

.case-logo-frame {
  width: 132px;
  height: 132px;
  border-radius: 18px;
  padding: 10px;
  background: #ffffff;
  display: grid;
  place-items: center;
}

.case-logo {
  max-width: 100%;
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(52, 121, 181, 0.18));
}

.case-note {
  font-size: 0.72rem;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ok);
}

.case-copy p:last-child {
  margin-top: 0.75rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.testimonial {
  margin-top: 1.5rem;
  padding: 1rem 1rem 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: rgba(52, 121, 181, 0.04);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.testimonial p {
  margin: 0;
}

.testimonial-attribution {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.roadmap-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.roadmap-step {
  border-radius: 14px;
  border: 1px solid rgba(102, 162, 219, 0.35);
  background: rgba(9, 26, 44, 0.82);
  padding: 0.9rem;
  display: grid;
  gap: 0.45rem;
}

.roadmap-step .phase {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8ed7ff;
}

.roadmap-step h4 {
  font-size: 1.03rem;
  line-height: 1.3;
}

.roadmap-step p {
  color: var(--text-soft);
  line-height: 1.5;
}

.roadmap-step.is-now {
  border-color: rgba(128, 235, 191, 0.58);
  background: rgba(10, 40, 43, 0.85);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(9, 23, 39, 0.55);
  overflow: hidden;
  transition: background 0.2s;
}

.faq-item.open {
  background: rgba(17, 37, 62, 0.75);
}

.faq-q {
  width: 100%;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
}

.faq-q-icon {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 1.2rem 1.15rem;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.6;
  max-width: 65ch;
}

.faq-a[hidden] {
  display: none;
}

.demo-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.demo-form label {
  font-size: 0.9rem;
  color: #c3ddf2;
}

.required {
  color: #ff6d6d;
  font-weight: 700;
  margin-left: 2px;
}

.demo-form input,
.demo-form textarea {
  border: 1px solid rgba(112, 172, 232, 0.34);
  background: rgba(6, 18, 31, 0.75);
  color: #e7f2ff;
  border-radius: 12px;
  padding: 0.62rem 0.78rem;
  font-family: inherit;
  font-size: 1rem;
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: 2px solid rgba(89, 176, 247, 0.8);
  outline-offset: 1px;
}

.demo-form button {
  margin-top: 0.55rem;
  border: none;
}

.demo-feedback {
  min-height: 1.25rem;
  font-size: 0.92rem;
  color: #9ee8c5;
}

.demo-feedback.is-info {
  color: #9fcfff;
}

.demo-feedback.is-error {
  color: #ff9a9a;
}

.demo-form select {
  border: 1px solid rgba(112, 172, 232, 0.34);
  background: rgba(6, 18, 31, 0.75);
  color: #e7f2ff;
  border-radius: 12px;
  padding: 0.62rem 0.78rem;
  font-family: inherit;
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238ab4d4' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
}

.demo-form select:focus {
  outline: 2px solid rgba(89, 176, 247, 0.8);
  outline-offset: 1px;
}

.demo-form select option {
  background: #0a1827;
  color: #e7f2ff;
}

.demo-success {
  text-align: center;
  padding: 2.5rem 1rem;
  display: none;
  gap: 0.75rem;
  place-items: center;
}

.demo-success:not([hidden]) {
  display: grid;
}

.demo-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(140deg, #3ecf8e, #27ae72);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #021a0e;
  box-shadow: 0 0 24px rgba(62, 207, 142, 0.35);
}

.demo-success h3 {
  font-size: 1.5rem;
}

.demo-success p {
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 40ch;
}

footer {
  padding: 0.2rem 0 1.4rem;
}

.company {
  text-align: center;
  color: #7d93a8;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-note {
  display: block;
  margin-top: 0.32rem;
  color: #6e8297;
  text-transform: none;
  letter-spacing: 0.04em;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Pricing section ---- */
.pricing-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: stretch;
}

.price-card {
  padding: 1.4rem 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(112, 189, 241, 0.32);
  background:
    linear-gradient(165deg, rgba(16, 37, 60, 0.86), rgba(8, 22, 38, 0.86)),
    radial-gradient(circle at top right, rgba(89, 176, 247, 0.24), transparent 60%);
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.price-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: rgba(141, 226, 187, 0.14);
  color: var(--ok);
  border: 1px solid rgba(141, 226, 187, 0.35);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.price-main b {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff, #74c3ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-main span {
  color: var(--text-soft);
  font-size: 1rem;
}

.price-plus {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-plus b {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text);
}

.price-plus span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.price-note {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 0.7rem;
  margin-top: 0.3rem;
  border-top: 1px dashed var(--line);
}

.price-note b {
  color: var(--text);
  font-weight: 700;
}

.price-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.price-included {
  padding: 1.4rem 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(103, 164, 219, 0.26);
  background: rgba(9, 23, 39, 0.72);
}

.mini-kicker {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #90d1ff;
  margin-bottom: 0.4rem;
}

.price-included h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.price-included ul {
  list-style: none;
  margin-top: 0.9rem;
  display: grid;
  gap: 0.55rem;
}

.price-included li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.4;
}

.price-included li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.price-footnote {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
  font-family: 'Space Grotesk', sans-serif;
}

.price-footnote b {
  color: var(--text);
}

/* ---- End pricing section ---- */

@media (max-width: 900px) {

  .booking-flow,
  .roadmap-grid,
  .booking-value-grid {
    grid-template-columns: 1fr;
  }

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

  .case-study {
    grid-template-columns: 1fr;
  }

  .case-logo-wrap {
    justify-self: center;
    width: min(100%, 240px);
  }
}

@media (max-width: 720px) {
  .container {
    width: 94vw;
    padding-top: 1.6rem;
  }

  .hero-topbar {
    grid-template-columns: 1fr auto 1fr;
    margin-bottom: 1rem;
  }

  .hero-title {
    max-width: 100%;
  }

  .section,
  .booking-spotlight {
    border-radius: 16px;
    padding: 1rem;
  }

  .flow-step {
    padding: 0.8rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .demo-form button {
    width: 100%;
  }

  .crosshair,
  .target-rings {
    display: none;
  }

  .testimonial {
    padding: 0.95rem 0.95rem 0.95rem 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .testimonial-attribution {
    font-size: 0.8rem;
  }

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

  .price-actions {
    flex-direction: column;
  }

  .price-actions .btn {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .hero-topbar {
    grid-template-columns: 1fr 1fr;
    row-gap: 0.8rem;
  }

  .hero-badge {
    grid-column: 1 / span 2;
    grid-row: 2;
    justify-self: center;
    margin-bottom: 0.2rem;
  }

  .locale-switcher {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .topnav {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
}

.topnav {
  display: flex;
  gap: 0.25rem;
  grid-column: 1;
  justify-self: start;
}

.topnav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 184, 236, 0.3);
  background: rgba(9, 22, 37, 0.72);
  backdrop-filter: blur(4px);
  transition: color 0.2s, border-color 0.2s;
}

.topnav a:hover {
  color: var(--text);
  border-color: rgba(120, 184, 236, 0.6);
}

.topnav a.is-active {
  color: var(--text);
  border-color: rgba(120, 184, 236, 0.6);
  background: rgba(20, 41, 64, 0.88);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}