:root {
  --bg: #070b12;
  --panel: #0f1724;
  --panel-soft: #141f2e;
  --text: #f7efe3;
  --muted: #aeb8c5;
  --gold: #d8b56d;
  --gold-soft: #fff0c7;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top left, #182845 0, #070b12 42%, #030509 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
}
.ambient-one { width: 430px; height: 430px; background: #1c6dd0; top: 8%; left: -10%; }
.ambient-two { width: 460px; height: 460px; background: #d8b56d; right: -12%; top: 32%; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(7, 11, 18, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.03em; font-size: 18px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #8b6a28);
  color: #08101c;
  font-weight: 900;
  font-size: 16px;
}
.nav-links { display: flex; gap: 28px; color: var(--muted); font-size: 14px; }
.nav-cta {
  border: 1px solid var(--line);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--glass);
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 72px 6vw 48px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold);
  font-weight: 800;
}
.hero h1,
.section-header h2,
.proof h2,
.founder h2,
.lead-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 18px 0;
}
.hero-subtitle { font-size: 20px; line-height: 1.65; color: var(--muted); max-width: 700px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: 0.25s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #09111e; border: 0; }
.btn-secondary, .btn-card { background: var(--glass); color: var(--text); }
.full { width: 100%; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.hero-stats > div {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stats strong { font-size: 18px; color: var(--text); font-weight: 800; }
.hero-stats span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }

.hero-media-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border-radius: 42px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.floating-card {
  position: absolute;
  background: rgba(7, 11, 18, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.floating-card span { color: var(--gold); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.floating-card strong { font-size: 16px; color: var(--text); font-weight: 800; }
.floating-card small { color: var(--muted); font-size: 12px; }
.card-one { top: 36px; left: -30px; }
.card-two { bottom: 40px; right: -20px; }

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 24px 6vw;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 18, 0.4);
}
.logos span { opacity: 0.7; }

.section-padding { padding: 92px 6vw; }
.section-header { text-align: center; max-width: 840px; margin: 0 auto 42px; }
.section-header h2, .proof h2, .founder h2, .lead-copy h2 { font-size: clamp(36px, 5vw, 68px); line-height: 1; }
.section-header p, .proof p, .founder p, .lead-copy p { color: var(--muted); line-height: 1.75; }
.narrow { max-width: 760px; }

.bento-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
.bento {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  min-height: 230px;
}
.bento.large { grid-row: span 2; background: linear-gradient(135deg, rgba(216, 181, 109, 0.18), rgba(255, 255, 255, 0.06)); }
.bento.dark { background: #05080e; }
.bento h3, .price-card h3, .step h3 { font-size: 28px; letter-spacing: -0.04em; margin: 0 0 12px; }
.bento p, .price-card p, .step p, li { color: var(--muted); line-height: 1.65; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.06); }
.price-card.featured { background: linear-gradient(180deg, rgba(216, 181, 109, 0.18), rgba(255, 255, 255, 0.07)); transform: translateY(-14px); border-color: var(--gold); }
.price-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(216, 181, 109, 0.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.price { font-size: 42px; font-weight: 900; margin: 22px 0; }
.price span { font-size: 15px; color: var(--muted); }
ul { padding-left: 20px; margin: 0 0 26px; }
ul li { margin-bottom: 8px; }

/* Workspace demo showcase */
.workspace .section-header { margin-bottom: 48px; }
.demo { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 28px; align-items: stretch; }
.demo-player { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.demo-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #05080e;
  box-shadow: var(--shadow);
  display: block;
}
.demo-player figcaption { color: var(--muted); font-size: 13px; letter-spacing: 0.02em; }
.demo-loop { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; align-content: stretch; }
.demo-loop li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--glass);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
}
.demo-loop li span { grid-row: span 2; align-self: center; font-weight: 900; color: var(--gold); font-size: 13px; letter-spacing: 0.04em; }
.demo-loop li strong { font-size: 17px; font-weight: 800; }
.demo-loop li p { margin: 4px 0 0; font-size: 13px; line-height: 1.55; color: var(--muted); }

/* Trips page — photo carousel */
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 6vw 28px;
  scrollbar-width: thin;
}
.carousel figure { flex: 0 0 auto; width: 300px; scroll-snap-align: center; margin: 0; }
.carousel img {
  width: 300px; height: 380px; object-fit: cover;
  border-radius: 22px; border: 1px solid var(--line); display: block;
  box-shadow: var(--shadow);
}
.carousel figcaption { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.4; }
.carousel-hint { text-align: center; color: var(--muted); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 6px; }

/* Trips page — itinerary cards */
.trip-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.trip-card {
  display: grid; grid-template-columns: 130px 1fr; gap: 18px;
  padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: var(--glass);
}
.trip-card .thumb {
  width: 130px; height: 150px; border-radius: 16px; border: 1px solid var(--line);
  background: linear-gradient(135deg, #263b61, #0d1422) center/cover;
}
.trip-year { color: var(--gold); font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.trip-card h3 { margin: 4px 0 8px; font-size: 23px; letter-spacing: -0.03em; }
.trip-route { color: var(--muted); line-height: 1.6; font-size: 14px; margin: 0; }
.trip-badge {
  display: inline-block; margin-top: 12px; padding: 5px 11px; border-radius: 999px;
  background: rgba(216, 181, 109, 0.14); color: var(--gold);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
}

/* Workspace feature grid */
.workspace-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.workspace-features article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--glass);
}
.workspace-features h4 { margin: 0 0 8px; font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.workspace-features p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--muted); }

/* Vague pricing label */
.price-soft { font-size: 22px; font-weight: 800; color: var(--gold); letter-spacing: -0.01em; }

/* Result captions on proof gallery */
.gallery-item { gap: 4px; align-content: end; }
.result-value { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--gold-soft); line-height: 1; }
.result-label { font-size: 12px; font-weight: 600; color: var(--text); opacity: 0.9; letter-spacing: 0.02em; }

/* Booking panel */
.book-panel { display: grid; gap: 16px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(216, 181, 109, 0.14), rgba(255, 255, 255, 0.05)); align-content: start; }
.btn-lg { padding: 18px 24px; font-size: 16px; }
.book-or { text-align: center; color: var(--muted); font-size: 13px; margin: 4px 0 0; text-transform: uppercase; letter-spacing: 0.14em; }
.lead-points { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.lead-points li { position: relative; padding-left: 26px; color: var(--text); }
.lead-points li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

.proof { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 42px; align-items: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; gap: 14px; }
.gallery-item {
  display: grid;
  place-items: end start;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent), var(--bg-img) center/cover;
  border: 1px solid var(--line);
  font-weight: 900;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--glass); }
.step span { font-size: 13px; color: var(--gold); font-weight: 900; }

.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 38px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}
.founder-photo {
  height: 380px;
  border-radius: 28px;
  background: linear-gradient(135deg, #263b61, #0d1422);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
  border: 1px solid var(--line);
}

.lead-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.lead-form { display: grid; gap: 14px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.07); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  padding: 16px;
  font: inherit;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
textarea { min-height: 130px; resize: vertical; }
.lead-form small { color: var(--muted); line-height: 1.5; }

.form-success {
  padding: 40px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(216, 181, 109, 0.18), rgba(255, 255, 255, 0.05));
  text-align: center;
}
.form-success strong { display: block; font-size: 24px; color: var(--gold); margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.form-success p { color: var(--text); line-height: 1.6; margin: 0; }

.faq details { max-width: 900px; margin: 12px auto; padding: 22px 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--glass); }
summary { cursor: pointer; font-weight: 900; }
.faq p { color: var(--muted); line-height: 1.65; margin-top: 12px; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer strong { color: var(--text); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero, .proof, .lead-section, .founder-card, .demo { grid-template-columns: 1fr; }
  .hero { padding-top: 44px; }
  .hero-stats, .pricing-grid, .steps { grid-template-columns: 1fr; }
  .workspace-features { grid-template-columns: repeat(2, 1fr); }
  .trip-list { grid-template-columns: 1fr; }
  .carousel figure, .carousel img { width: 240px; }
  .carousel img { height: 300px; }
  .bento-grid { grid-template-columns: 1fr; }
  .hero-image { height: 360px; }
  .card-one, .card-two { display: none; }
  .price-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: auto; }
  .footer { flex-direction: column; }
  .founder-card { padding: 18px; }
  .founder-photo { height: 300px; }
}
