:root {
  --bg: #f5f8fb;
  --bg-soft: #eef5f9;
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.72);
  --text: #10202b;
  --text-soft: #5f7080;
  --line: #dbe7ee;
  --primary: #7bc5ea;
  --primary-dark: #2d6e92;
  --navy: #0d1b2a;
  --shadow: 0 20px 60px rgba(16, 32, 43, 0.08);
  --shadow-soft: 0 10px 30px rgba(16, 32, 43, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245, 248, 251, 0.86);
  border-bottom: 1px solid rgba(219, 231, 238, 0.7);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.brand-text {
  font-size: 1.1rem;
  letter-spacing: 0.2px;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  font-size: 0.97rem;
  color: var(--text-soft);
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  padding: 80px 0 60px;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero-map {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-map img {
  width: min(920px, 78vw);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.eyebrow,
.section-label,
.panel-tag,
.pricing-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.eyebrow,
.section-label,
.panel-tag {
  background: #dff2fb;
  color: var(--primary-dark);
}

.section-label.light,
.eyebrow.light {
  background: rgba(255, 255, 255, 0.16);
  color: #dff2fb;
}

.hero-copy h1,
.page-hero h1,
.founder-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero-text,
.page-hero-copy {
  margin: 0;
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #8fd3f3, #69b8e1);
  color: #082132;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(105, 184, 225, 0.3);
}

.btn-secondary {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: #f8fbfd;
}

.btn-light {
  background: #ffffff;
  color: var(--navy);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary-dark);
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 231, 238, 0.9);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-card span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.glass-card,
.content-panel,
.info-card,
.pricing-card,
.quote-card,
.form-card,
.legal-card,
.app-download-panel {
  background: var(--surface);
  border: 1px solid rgba(219, 231, 238, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 30px;
  background: var(--surface-2);
}

.hero-panel h2 {
  margin: 14px 0 14px;
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--navy);
}

.hero-panel p {
  margin: 0 0 18px;
  color: var(--text-soft);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #7aa9c8;
}

.feature-list.dark li {
  color: var(--text);
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-align: center;
}

.section-title.left,
.section-copy.left {
  text-align: left;
}

.section-copy {
  margin: 0 auto;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.05rem;
  text-align: center;
}

.trust-strip {
  padding-top: 46px;
  padding-bottom: 46px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  padding: 28px;
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #dff2fb;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.info-card h3,
.pricing-card h3,
.legal-card h2,
.founder-story-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
}

.info-card p,
.pricing-card p,
.legal-card p {
  margin: 0;
  color: var(--text-soft);
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.content-panel {
  padding: 30px;
}

.pricing-section {
  background: linear-gradient(180deg, #f9fbfd 0%, #eef6fa 100%);
}

.pricing-card {
  position: relative;
  padding: 30px;
}

.pricing-card.featured {
  border-color: #a9d8ef;
  transform: translateY(-6px);
}

.pricing-tag {
  background: #e9f7fd;
  color: var(--primary-dark);
}

.price {
  margin: 12px 0 4px;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
}

.price-note,
.small-note {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--text-soft);
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-dark);
  font-weight: 800;
}

.center {
  text-align: center;
}

.visitor-note {
  margin-top: 26px;
  text-align: center;
  color: var(--text-soft);
}

.founder-preview {
  background: #f7fbfd;
}

.founder-preview-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.quote-card {
  padding: 36px;
}

.quote-card p {
  margin: 0 0 18px;
  font-size: 1.28rem;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 700;
}

.quote-card span {
  color: var(--text-soft);
}

.cta-band {
  background: linear-gradient(135deg, #12283a, #1d3c56);
  color: #ffffff;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 10px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.cta-band p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 90px 0 44px;
  background: linear-gradient(180deg, #f9fbfd 0%, #f1f7fa 100%);
}

.page-hero-dark {
  background: linear-gradient(135deg, #102232, #17344a);
}

.page-hero-dark h1,
.page-hero-dark .page-hero-copy {
  color: #ffffff;
}

.page-hero-copy.light {
  color: rgba(255, 255, 255, 0.78);
}

.app-download-panel {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f9fbfd;
  font-weight: 700;
  color: var(--navy);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.form-card {
  padding: 30px;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fbfdff;
  border-radius: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: #9cd6f0;
  box-shadow: 0 0 0 4px rgba(123, 197, 234, 0.15);
}

.form-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.mini-highlight {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: #f8fcfe;
  border: 1px solid #dfeef6;
  display: grid;
  gap: 6px;
}

.mini-price-block {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.mini-price-block span {
  color: var(--text-soft);
  margin-left: 6px;
}

.legal-section {
  padding-top: 40px;
}

.legal-card {
  padding: 34px;
}

.legal-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.legal-card p {
  margin-bottom: 26px;
  color: var(--text-soft);
}

.founder-page {
  background: linear-gradient(to bottom, #f7fbfd 0%, #f2f5f8 100%);
  padding: 60px 0 90px;
}

.founder-hero {
  max-width: 860px;
  margin-bottom: 28px;
}

.founder-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  align-items: start;
}

.founder-image-card,
.founder-story-card {
  background: var(--surface);
  border: 1px solid rgba(219, 231, 238, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-image-card {
  padding: 18px;
  position: sticky;
  top: 108px;
  text-align: center;
}

.founder-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.founder-image-caption {
  margin-top: 18px;
}

.founder-image-caption h3 {
  margin: 0 0 4px;
  color: var(--navy);
}

.founder-image-caption p {
  margin: 0;
  color: var(--text-soft);
}

.founder-story-card {
  padding: 38px;
}

.founder-story-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.9;
}

.founder-highlight,
.founder-benefits {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid #dfeef6;
  background: #f8fcfe;
  border-radius: 18px;
}

.founder-benefits ul {
  margin: 0;
  padding-left: 22px;
  color: var(--text-soft);
}

.founder-benefits li {
  margin-bottom: 10px;
}

.founder-closing {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy) !important;
}

.founder-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.founder-email {
  margin-top: 14px !important;
  color: var(--text-soft);
}

.site-footer {
  background: #0f1f2c;
  color: #d9e6ee;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 26px;
  padding-bottom: 30px;
}

.footer-brand {
  color: #ffffff;
}

.footer-copy {
  margin-top: 14px;
  max-width: 320px;
  color: rgba(217, 230, 238, 0.75);
}

.site-footer h4 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(217, 230, 238, 0.82);
  transition: color var(--transition);
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(217, 230, 238, 0.12);
  padding: 18px 0 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(217, 230, 238, 0.6);
}

@media (max-width: 1080px) {
  .hero-grid,
  .founder-preview-grid,
  .booking-grid,
  .trust-grid,
  .split-layout,
  .founder-wrapper,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .founder-image-card {
    position: static;
    max-width: 420px;
  }

  .hero-home {
    min-height: auto;
    padding-top: 70px;
  }

  .app-download-panel,

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .card-grid.three,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(98, 94, 94, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-copy h1,
  .page-hero h1,
  .founder-hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .section,
  .founder-page {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .header-inner {
    min-height: 76px;
  }

  .site-nav a.active::after,
  .site-nav a:hover::after {
    bottom: -4px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .hero-home,
  .page-hero {
    padding-top: 56px;
  }

  .hero-actions,
  .store-buttons {
    width: 100%;
  }

  .hero-actions .btn,
  .store-btn,
  .btn-light {
    width: 100%;
  }

  .hero-panel,
  .content-panel,
  .info-card,
  .pricing-card,
  .quote-card,
  .form-card,
  .legal-card,
  .founder-story-card {
    padding: 22px;
  }

  .founder-image-card {
    padding: 14px;
  }

  .price {
    font-size: 2rem;
  }
}