:root {
  --bg: #f4f1e8;
  --fg: #111111;
  --muted: #2a2a2a;
  --line: rgba(17, 17, 17, 0.2);
  --glass: rgba(250, 248, 242, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.42);
  --shadow-soft: 0 18px 40px rgba(17, 17, 17, 0.08);
  --nav-offset: 110px;
  --max-width: 980px;
  --pad-x: 24px;
  --pad-y: 40px;
}

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

html,
body {
  overflow-x: hidden;
  scroll-behavior: auto !important;
  overscroll-behavior-y: auto;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  cursor: crosshair;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: crosshair;
}

button {
  cursor: crosshair;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

main,
.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 24px var(--pad-x) 0;
  pointer-events: none;
}

.site-header .nav {
  max-width: var(--max-width);
  margin: 0 auto;
  pointer-events: auto;
}

@keyframes satSlideIn {
  from {
    transform: translate3d(-180px, -50%, 0);
  }
  to {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes shuttleSlideIn {
  from {
    transform: translate3d(180px, -50%, 0) rotate(150deg);
  }
  to {
    transform: translate3d(0, -50%, 0) rotate(150deg);
  }
}

.satellite-float {
  position: absolute;
  top: 38vh;
  left: -12vw;
  width: clamp(220px, 36vw, 520px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, -50%, 0);
  animation: satSlideIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 90ms both;
  filter: grayscale(1) contrast(1.05);
}

.shuttle-float {
  position: absolute;
  top: 62vh;
  right: -14vw;
  width: clamp(200px, 30vw, 460px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, -50%, 0) rotate(150deg);
  animation: shuttleSlideIn 920ms cubic-bezier(0.16, 1, 0.3, 1) 140ms both;
  filter: grayscale(1) contrast(1.05);
}

.satellite-float img {
  width: 100%;
  height: auto;
  display: block;
}

.shuttle-float img {
  width: 100%;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 14px 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.56), transparent 34%),
    linear-gradient(135deg, var(--glass-strong), var(--glass));
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  position: relative;
  overflow: hidden;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.44), transparent 28%),
    linear-gradient(285deg, rgba(17, 17, 17, 0.06), transparent 36%);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.brand-mark {
  font-weight: 900;
  font-size: 1.05em;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-links a:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(17, 17, 17, 0.14);
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  color: var(--fg);
  background: rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.16);
}

main {
  padding: calc(var(--pad-y) + var(--nav-offset)) var(--pad-x) var(--pad-y);
}

.hero {
  display: grid;
  gap: 32px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-line {
  margin: 0;
}

.hero-line-strong {
  display: block;
  font-size: clamp(2.05rem, 4.1vw, 2.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: normal;
  line-height: 1.05;
}

.hero-line-strong-secondary {
  margin-top: 10px;
  font-style: italic;
}

.hero-line-sub {
  display: block;
  margin-top: 34px;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 600;
  color: var(--muted);
}

.countdown {
  display: grid;
  gap: 10px;
  justify-items: center;
  width: min(760px, 100%);
  padding: 18px 18px 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.countdown-label {
  margin: 0;
  font-size: clamp(1.25rem, 3.2vw, 1.6rem);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.countdown-display {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  font-variant-numeric: tabular-nums;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  color: var(--muted);
  letter-spacing: 0.01em;
}

.countdown-part {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  padding: 0 14px;
}

.countdown-part:first-child {
  padding-left: 0;
}

.countdown-part:last-child {
  padding-right: 0;
}

.countdown-part + .countdown-part::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1.1em;
  background: var(--line);
  transform: translateY(-50%);
}

.countdown-part-label {
  color: var(--muted);
  font-weight: 500;
}

.countdown-part-value {
  display: inline-block;
  margin-left: 6px;
  color: var(--fg);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  font-weight: 500;
  letter-spacing: 0.01em;
  width: fit-content;
}

.btn:hover {
  background: var(--bg);
  color: var(--fg);
}



.rule {
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

.approach {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.approach-title {
  margin: 0;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  letter-spacing: -0.02em;
  color: var(--fg);
}

.approach-lead {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.approach-accordion {
  display: grid;
  gap: 18px;
  margin: 0;
}

.accordion-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.accordion-trigger {
  appearance: none;
  background: none;
  border: none;
  padding: 0 18px 0 16px;
  margin: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: var(--fg);
  position: relative;
}

.accordion-trigger::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--muted);
  font-weight: 800;
}

.accordion-item:nth-child(2) .accordion-trigger::before {
  content: "\2212";
}

.accordion-item:nth-child(3) .accordion-trigger::before {
  content: "\00F7";
}

.accordion-item:nth-child(4) .accordion-trigger::before {
  content: "\00D7";
}

.accordion-trigger::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--muted);
  transition: transform 320ms ease, color 320ms ease;
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 220ms ease, opacity 220ms ease;
}

.accordion-content > p {
  margin: 12px 0 0 16px;
  color: var(--muted);
}

.accordion-item.is-open .accordion-content {
  max-height: 200px;
  opacity: 1;
}

.accordion-item.is-open .accordion-trigger::after {
  transform: rotate(45deg);
  color: var(--fg);
}


.page-head h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0;
  letter-spacing: -0.03em;
}

.subline {
  margin-top: 8px;
  color: var(--muted);
}

.note {
  margin-top: 14px;
  max-width: 62ch;
  color: var(--muted);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.plan {
  border: 1px solid rgba(17, 17, 17, 0.28);
  padding: 20px;
  display: grid;
  gap: 16px;
  position: relative;
  background: rgba(255, 255, 255, 0.24);
}

.plan-top {
  display: grid;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.plan h2 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
}

.plan-featured {
  border-color: rgba(17, 17, 17, 0.48);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.58), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.22));
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.08);
  transform: translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -1px;
  right: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: rgba(17, 17, 17, 0.92);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-body p {
  margin: 0;
  color: var(--muted);
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.payment {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.enquire {
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.enquire-form {
  display: grid;
  gap: 12px;
  max-width: 640px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  padding: 10px 12px;
  font: inherit;
  line-height: 1.4;
  cursor: text;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  min-height: 1.2em;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status.is-success {
  color: var(--fg);
}

.form-status.is-error {
  color: var(--muted);
}

.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact {
  margin-top: 32px;
}

.about-block {
  display: grid;
  gap: 24px;
  align-items: start;
}

.about-copy {
  max-width: 100%;
  color: var(--muted);
}

.about-lead {
  margin-top: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.04);
  color: var(--fg);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.about-image {
  margin: 0;
  justify-self: start;
  overflow: hidden;
  border-radius: 999px;
  aspect-ratio: 1 / 1;
}

.about-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 999px;
  object-fit: cover;
  transform: scale(1.9);
  transform-origin: 90% 36%;
}

.who ul {
  margin: 12px 0 0;
  list-style: none;
  padding-left: 0;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.who li {
  position: relative;
  padding-left: 18px;
}

.who li::before {
  content: "\00B1";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--muted);
  font-weight: 800;
}

.who li:nth-child(2)::before {
  content: "\00F7";
}

.who li:nth-child(3)::before {
  content: "\00D7";
}

.site-footer {
  padding: 24px var(--pad-x) 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.redirect {
  min-height: 60vh;
  display: grid;
  place-content: center;
  gap: 16px;
  text-align: center;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 760px) {
  .about-copy {
    max-width: 360px;
  }

  .about-block {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Keep bullet lists aligned across cards on desktop by normalizing summary height. */
  .plan-body p {
    min-height: 3em; /* ~2 lines */
  }

}

@media (max-width: 620px) {
  :root {
    --nav-offset: 146px;
  }

  .site-header {
    padding-top: 16px;
  }

  .nav {
    padding: 14px;
    border-radius: 22px;
  }

  .nav-links {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .satellite-float {
    left: -38vw;
    width: clamp(200px, 72vw, 360px);
    opacity: 0.16;
  }

  .shuttle-float {
    right: -46vw;
    width: clamp(170px, 62vw, 320px);
    opacity: 0.12;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-line-strong {
    font-size: 1.55rem;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .satellite-float,
  .shuttle-float {
    animation: none;
  }

}
.pricing-section {
  margin-top: clamp(60px, 16vh, 200px);
}
