:root {
  --bg: #f4f1ea;
  --panel: #fffdf8;
  --panel-2: #f0ebe1;
  --line: #ded7c9;
  --text: #13201d;
  --muted: #69716b;
  --navy: #0f2b3e;
  --green: #0f4b3f;
  --green-2: #2f6b55;
  --sage: #748b68;
  --tan: #c6aa72;
  --rust: #b85f37;
  --shadow: 0 18px 50px rgba(28, 25, 20, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: #fff;
  background: rgba(15, 43, 62, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand img {
  display: block;
  width: 190px;
  height: auto;
}

.menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  min-height: 40px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover {
  color: #fff;
}

.nav-login {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 6vw, 88px) 76px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 35, 49, 0.94) 0%, rgba(12, 35, 49, 0.76) 46%, rgba(12, 35, 49, 0.34) 100%),
    url("/assets/images/trips/current-location.jpg") center / cover no-repeat;
  filter: saturate(0.95);
}

.hero-content {
  position: relative;
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 630px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.primary-button {
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
}

.secondary-button {
  color: var(--green);
  background: #fffdf8;
  border: 1px solid var(--line);
}

.hero .secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 92px clamp(20px, 6vw, 88px);
}

.split-section,
.product-section,
.plans-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.section-copy {
  max-width: 650px;
}

.section-copy p:not(.eyebrow),
.proof-panel span,
.feature-grid p,
.workflow p,
.plan-card p,
.cta-section p,
.faq-list p {
  color: var(--muted);
  line-height: 1.6;
}

.section-copy p:not(.eyebrow),
.plan-card p,
.cta-section p {
  margin-top: 18px;
}

.proof-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.proof-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 8px;
  background: var(--panel-2);
}

.proof-panel span,
.proof-panel strong {
  display: block;
}

.proof-panel strong {
  color: var(--green);
  text-align: right;
}

.feature-section {
  padding-top: 0;
}

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

.feature-grid article,
.workflow article,
.plan-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.feature-grid span,
.workflow span,
.plan-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid p,
.workflow p {
  margin-top: 12px;
}

.product-section {
  background: #ebe5d9;
}

.product-preview {
  margin: 0;
  display: grid;
  gap: 12px;
}

.monitor-frame {
  position: relative;
  padding: 12px 12px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #18242b, #090d10);
  border: 1px solid rgba(19, 32, 29, 0.18);
  box-shadow: 0 28px 70px rgba(28, 25, 20, 0.2);
}

.monitor-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 32%;
  height: 34px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(19, 32, 29, 0.22), rgba(19, 32, 29, 0));
  clip-path: polygon(22% 0, 78% 0, 100% 100%, 0 100%);
  opacity: 0.45;
  pointer-events: none;
}

.monitor-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 18px;
  padding: 0 4px 8px;
}

.monitor-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.34);
}

.monitor-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1510 / 1034;
  object-fit: cover;
  object-position: top left;
  border-radius: 10px;
  background: var(--panel);
}

.product-preview figcaption {
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.plain-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(222, 215, 201, 0.8);
  font-weight: 800;
}

.workflow-section {
  display: grid;
  gap: 32px;
}

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

.plans-section {
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
}

.plan-card strong {
  display: block;
  font-size: 26px;
}

.price-line {
  margin-top: 16px;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.price-line small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.plan-card a {
  margin-top: auto;
}

.plan-card.featured {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #173d35);
  border-color: rgba(15, 75, 63, 0.28);
}

.plan-card.featured span,
.plan-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.plan-card.featured .price-line,
.plan-card.featured .price-line small {
  color: #fff;
}

.cta-section {
  margin: 0 clamp(20px, 6vw, 88px) 80px;
  padding: 58px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--green));
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

.waitlist-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  background: #fffdf8;
}

textarea {
  resize: vertical;
}

.waitlist-form small {
  color: rgba(255, 255, 255, 0.7);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1.3fr);
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
}

details p {
  padding: 0 18px 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 88px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

footer div {
  display: flex;
  gap: 16px;
}

footer a {
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(15, 43, 62, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-login {
    border: 0;
  }

  .hero {
    min-height: 680px;
  }

  .split-section,
  .product-section,
  .plans-section,
  .cta-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .monitor-frame {
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 160px;
  }

  .hero {
    min-height: 620px;
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .section {
    padding: 62px 18px;
  }

  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .trust-row span {
    font-size: 12px;
  }

  .monitor-frame {
    padding: 8px 8px 12px;
    border-radius: 14px;
  }

  .monitor-bar {
    min-height: 14px;
    padding-bottom: 6px;
  }

  .proof-panel div,
  footer {
    flex-direction: column;
  }

  .proof-panel strong {
    text-align: left;
  }

  .cta-section {
    margin: 0 18px 52px;
    padding: 34px 22px;
  }
}
