:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --blue: #9db7d6;
  --blue-dark: #84a3c7;
  --text: #4a4038;
  --muted: #6d655f;
  --line: #e8e0d8;
  --shadow-sm: 0 8px 20px rgba(74, 64, 56, 0.05);
  --shadow-md: 0 18px 45px rgba(74, 64, 56, 0.10);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-pill: 999px;
  --page-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

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

.page-shell {
  width: min(calc(100% - 96px), var(--page-width));
  margin: 0 auto;
}

/* header */
.site-header {
  padding: 19px 0 0px;
}

.site-nav {
  width: min(calc(100% - 96px), var(--page-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-name {
  font-size: 28px;
  font-weight: 600;
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a,
.nav-login {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-cta,
.btn-primary,
.btn-secondary,
.pricing-cta-btn,
.join-form button {
  transition: 0.2s ease;
}

.nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* hero */
.hero {
  position: relative;
  min-height: 760px;
  padding: 26px 0 52px;
  overflow: hidden;
  margin-top: -40px;
}

.hero-inner {
  position: relative;
  width: 100%;
  min-height: 700px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 96px), var(--page-width));
  margin: 0 auto;
  padding-top: 82px;
}

.hero-copy > * {
  max-width: 620px;
}

.eyebrow,
.section-label {
  margin: 20 0 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(64px, 6.2vw, 96px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: var(--text);
}

.hero-copy h1 span {
  display: block;
  color: var(--blue);
}

.hero-text {
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(157, 183, 214, 0.7);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 500;
}

.hero-points {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points span {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--muted);
}

.hero-points span::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 22px;
  line-height: 1;
  color: var(--blue);
}

/* premium full-width right visual */
.hero-visual {
  position: absolute;
  top: 92px;
  right: 0;
  width: 58vw;
  min-width: 1600px;
  height: 800px;
  border-radius: 42px 0 0 42px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* dashboard */
.dashboard-card {
  position: absolute;
  top: 86px;
  left: 68px;
  width: 820px;
  max-width: calc(100% - 120px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(231, 224, 216, 0.95);
  border-radius: 30px;
  box-shadow: 0 22px 50px rgba(74, 64, 56, 0.12);
  overflow: hidden;
}

.dashboard-topbar {
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(231, 224, 216, 0.85);
}

.dashboard-dots {
  display: flex;
  gap: 8px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8d0c7;
}

.dashboard-top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dashboard-bell {
  font-size: 18px;
  color: #7a726b;
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.dashboard-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(157, 183, 214, 0.22);
  color: #5f7fa7;
  font-size: 14px;
  font-weight: 700;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 440px;
}

.dashboard-sidebar {
  padding: 20px 14px;
  background: rgba(249, 246, 242, 0.82);
  border-right: 1px solid rgba(231, 224, 216, 0.75);
}

.dashboard-side-item {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
  color: #746d66;
  margin-bottom: 8px;
}

.dashboard-side-item.active {
  background: rgba(157, 183, 214, 0.18);
  color: #5f7fa7;
  font-weight: 600;
}

.dashboard-main {
  padding: 24px;
}

.dashboard-title-row h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.dashboard-title-row p {
  margin: 8px 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.stat-card {
  background: rgba(250, 248, 245, 0.96);
  border: 1px solid rgba(231, 224, 216, 0.8);
  border-radius: 18px;
  padding: 18px;
}

.stat-card span {
  display: block;
  font-size: 12px;
  color: #7b746d;
  margin-bottom: 8px;
}

.stat-card strong {
  display: block;
  font-size: 22px;
  color: var(--text);
}

.stat-card small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #76a179;
}

.stat-card button {
  margin-top: 12px;
  border: 0;
  background: rgba(157, 183, 214, 0.18);
  color: #5d7fa7;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.dashboard-panel {
  background: rgba(250, 248, 245, 0.96);
  border: 1px solid rgba(231, 224, 216, 0.8);
  border-radius: 18px;
  overflow: hidden;
}

.dashboard-panel-head {
  padding: 16px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-panel-head h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.dashboard-panel-head a {
  font-size: 13px;
  color: #5f7fa7;
}

.booking-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

.booking-row + .booking-row {
  border-top: 1px solid rgba(231, 224, 216, 0.75);
}

.booking-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  flex-shrink: 0;
}

.booking-icon.blue {
  background: rgba(157, 183, 214, 0.20);
}

.booking-icon.sand {
  background: rgba(216, 199, 175, 0.22);
}

.booking-icon.green {
  background: rgba(166, 206, 170, 0.22);
}

.booking-copy {
  min-width: 0;
  flex: 1;
}

.booking-copy strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.booking-copy span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.booking-row em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: #5f7fa7;
  background: rgba(157, 183, 214, 0.18);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.booking-row em.success {
  color: #5d8c63;
  background: rgba(166, 206, 170, 0.22);
}

/* feature strip */
.feature-strip {
  padding: 0 0 60px;
}

.feature-strip-inner {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(231, 224, 216, 0.8);
  border-bottom: 1px solid rgba(231, 224, 216, 0.8);
}

.mini-feature {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px 42px;
}

.mini-feature + .mini-feature {
  border-left: 1px solid rgba(231, 224, 216, 0.75);
}

.mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(157, 183, 214, 0.13);
  color: #6a89ae;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.mini-feature h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
}

.mini-feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* pricing */
.pricing-preview {
  padding: 18px 0 64px;
}

.pricing-copy {
  margin-bottom: 24px;
}

.pricing-copy h2 {
  margin: 0;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 340px;
  gap: 26px;
  align-items: start;
}

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

.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(231, 224, 216, 0.84);
  border-radius: 26px;
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border: 1.5px solid rgba(157, 183, 214, 0.7);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(157, 183, 214, 0.16);
  color: #6283aa;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: var(--radius-pill);
}

.price-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 600;
}

.price {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
}

.price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

.price-sub {
  margin: 12px 0 18px;
  font-size: 15px;
  color: var(--muted);
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-cta-card {
  background: linear-gradient(180deg, #a9c1e0 0%, #99b6da 100%);
  color: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.pricing-cta-card .sparkles {
  margin: 0 0 12px;
  font-size: 22px;
  opacity: 0.95;
}

.pricing-cta-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}

.pricing-cta-card p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.pricing-cta-btn {
  display: inline-block;
  background: #fff;
  color: #6f90b7;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.pricing-cta-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

/* join */
.join-section {
  padding: 0 0 66px;
}

.join-box {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(231, 224, 216, 0.84);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 34px;
  align-items: center;
}

.join-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 4.8vw, 60px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.join-copy p:last-child {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 700px;
}

.join-form {
  display: grid;
  gap: 14px;
}

.join-form input {
  width: 100%;
  border: 1px solid rgba(224, 214, 204, 0.9);
  border-radius: 20px;
  padding: 22px 22px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
}

.join-form input::placeholder {
  color: #a49b94;
}

.join-form button {
  border: 0;
  background: var(--blue);
  color: #fff;
  padding: 20px 22px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* footer */
.site-footer {
  padding: 20px 0 24px;
  border-top: 1px solid rgba(231, 224, 216, 0.88);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 26px 0 22px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand h2 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 600;
  color: var(--blue);
}

.footer-brand p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 70px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
}

.footer-column a {
  font-size: 14px;
  color: var(--muted);
}

.footer-bottom {
  width: min(calc(100% - 96px), var(--page-width));
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(231, 224, 216, 0.88);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #8f8780;
}

/* responsive */
@media (max-width: 1280px) {
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-copy,
  .page-shell,
  .site-nav,
  .footer-bottom {
    width: min(calc(100% - 96px), var(--page-width));
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(calc(100% - 96px), var(--page-width));
    min-width: 0;
    height: 520px;
    margin: 40px auto 0;
    border-radius: 30px;
  }

  .dashboard-card {
    left: 40px;
    top: 50px;
    width: calc(100% - 80px);
    max-width: none;
  }

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

  .pricing-cta-card {
    max-width: 420px;
  }
}

@media (max-width: 980px) {
  .page-shell,
  .site-nav,
  .footer-bottom,
  .hero-copy,
  .hero-visual {
    width: min(calc(100% - 40px), var(--page-width));
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-links {
    width: 100%;
    order: 3;
    flex-wrap: wrap;
    gap: 18px;
  }

  .feature-strip-inner,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .mini-feature + .mini-feature {
    border-left: 0;
    border-top: 1px solid rgba(231, 224, 216, 0.75);
  }

  .pricing-copy h2,
  .join-copy h2 {
    font-size: 42px;
  }

  .footer-inner,
  .footer-links {
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .hero-copy {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-visual {
    height: 460px;
    border-radius: 26px;
  }

  .dashboard-card {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 16px;
    width: auto;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .hero-points {
    flex-direction: column;
    gap: 10px;
  }

  .join-box {
    padding: 26px;
  }
}

.dashboard-card {
  display: none;
}