:root {
  --bg: #f5f8fa;
  --surface: #ffffff;
  --surface-soft: #edf4f5;
  --text: #092626;
  --secondary: #526466;
  --muted: #809092;
  --teal: #006d6f;
  --petrol: #003f42;
  --mint: #3cc9a7;
  --blue: #68a9d8;
  --border: rgba(9, 38, 38, .10);
  --shadow: 0 24px 70px rgba(9, 38, 38, .10);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 7% 0%, rgba(60,201,167,.18), transparent 34rem),
    linear-gradient(180deg, #fbfdfe 0%, var(--bg) 40%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  width: min(1440px, calc(100% - 32px));
  margin: 16px auto 0;
  min-height: 72px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 38px rgba(9,38,38,.07);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 12px;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0; }
.brand small { display: block; color: var(--teal); font-size: 12px; line-height: 1; font-weight: 700; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: conic-gradient(from 120deg, var(--mint), var(--teal), var(--blue), var(--mint));
  box-shadow: inset 9px -6px 0 rgba(255,255,255,.42);
}
.nav { display: flex; gap: 30px; font-size: 14px; color: var(--text); }
.nav a:hover { color: var(--teal); }
.btn, button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 10px; padding: 13px 18px;
  font-weight: 750; font-size: 14px; cursor: pointer;
  min-height: 44px;
}
.btn-dark, button.primary { background: var(--petrol); color: #fff; box-shadow: 0 13px 26px rgba(0,63,66,.22); }
.btn-light { background: #fff; color: var(--text); border: 1px solid var(--border); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.container { width: min(1440px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 58px 0; }
.hero {
  width: min(1480px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 64px 58px 30px;
  border-radius: 30px;
  background: linear-gradient(110deg, rgba(255,255,255,.95) 0 37%, rgba(255,255,255,.68) 54%, rgba(104,169,216,.22) 100%), #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero-grid { display: grid; grid-template-columns: .94fr 1.16fr; gap: 30px; align-items: center; }
.eyebrow { color: var(--teal); text-transform: uppercase; font-weight: 850; font-size: 12px; letter-spacing: .14em; }
h1, h2, h3 { line-height: 1.02; letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(44px, 6vw, 82px); max-width: 760px; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 22px; }
p { color: var(--secondary); margin: 0; }
.lead { font-size: 18px; max-width: 620px; margin: 22px 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { min-height: 560px; position: relative; border-radius: 28px; overflow: hidden; }
.water-scene {
  min-height: 560px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 12%, #446245 0 10%, transparent 10.5%),
    radial-gradient(circle at 82% 24%, #264737 0 17%, transparent 17.5%),
    linear-gradient(180deg, #dff2f7 0 42%, #91d6df 43%, #38aab5 66%, #dff8f4 100%);
  position: absolute; inset: 0;
}
.water-scene:before {
  content: ""; position: absolute; inset: 50% -10% 0;
  background: repeating-linear-gradient(168deg, rgba(255,255,255,.38) 0 2px, transparent 2px 52px);
  transform: skewY(-4deg);
}
.paddle { position: absolute; width: 118px; height: 42px; border-radius: 50%; background: #eaf9fb; box-shadow: inset 0 -8px 0 #50b8c7, 0 18px 30px rgba(0,63,66,.18); }
.paddle span { position: absolute; left: 46px; top: -54px; width: 14px; height: 56px; background: #153f43; border-radius: 8px; }
.paddle.one { left: 17%; bottom: 19%; transform: rotate(-8deg); }
.paddle.two { left: 48%; bottom: 31%; transform: rotate(8deg) scale(1.18); }
.paddle.three { right: 8%; bottom: 23%; transform: rotate(-5deg) scale(.88); }
.overview-card, .floating-booking {
  position: absolute; right: 26px; top: 72px; width: 330px; padding: 22px;
  background: rgba(255,255,255,.88); border: 1px solid var(--border); border-radius: 22px;
  box-shadow: 0 24px 60px rgba(9,38,38,.18); backdrop-filter: blur(12px);
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 16px 0; }
.stat, .metric { padding: 16px; background: #fff; border: 1px solid var(--border); border-radius: 16px; }
.stat strong, .metric strong { display: block; font-size: 24px; }
.bar { height: 7px; background: #dcebed; border-radius: 20px; overflow: hidden; }
.bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--teal), var(--mint)); }
.logo-row, .cards, .feature-grid, .pricing-grid, .flow-grid, .dashboard-grid, .form-grid { display: grid; gap: 18px; }
.logo-row { grid-template-columns: repeat(6, 1fr); margin-top: 28px; color: var(--secondary); font-size: 13px; text-align: center; }
.cards { grid-template-columns: repeat(3, 1fr); }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.card, .panel, .pricing-card, .flow-step, .table-card, .auth-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(9,38,38,.07);
  padding: 24px;
}
.card-visual { height: 145px; border-radius: 16px; margin-top: 18px; background: linear-gradient(135deg, #79c8d8, #edf8f6 48%, #0f6c70); position: relative; overflow: hidden; }
.icon { width: 42px; height: 42px; border-radius: 12px; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 900; margin-bottom: 16px; }
.soft-band { background: linear-gradient(135deg, #eef7f8, #fff); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mini-dashboard { display: grid; grid-template-columns: 220px 1fr; background: #fff; border: 1px solid var(--border); border-radius: 26px; box-shadow: var(--shadow); overflow: hidden; }
.sidebar { background: linear-gradient(180deg, var(--petrol), #00585b); color: #fff; padding: 26px; min-height: 520px; }
.sidebar a, .side-link { display: block; padding: 12px 14px; border-radius: 10px; color: rgba(255,255,255,.82); margin-top: 8px; }
.sidebar a.active, .side-link.active { background: rgba(255,255,255,.15); color: #fff; }
.dash-main { padding: 28px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 20px 0; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 13px 10px; border-bottom: 1px solid var(--border); }
th { color: var(--secondary); font-size: 12px; text-transform: uppercase; }
.status { display: inline-block; padding: 5px 9px; border-radius: 999px; background: #eaf7f1; color: #08724f; font-weight: 750; font-size: 12px; }
.embed-band { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: center; }
.booking-widget { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 20px; box-shadow: var(--shadow); }
.activity-strip { display: grid; grid-template-columns: repeat(9, minmax(100px, 1fr)); gap: 14px; overflow-x: auto; padding-bottom: 8px; }
.activity-tile { min-width: 110px; background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; font-size: 13px; font-weight: 700; }
.activity-tile div { height: 86px; background: linear-gradient(135deg, var(--blue), #fff, var(--teal)); }
.cta-band { min-height: 260px; padding: 48px; border-radius: 24px; color: #fff; background: linear-gradient(110deg, rgba(0,63,66,.92), rgba(0,109,111,.7)), linear-gradient(180deg, #bdebf2, #17818a); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band p { color: rgba(255,255,255,.84); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-card.popular { border-color: var(--teal); transform: translateY(-10px); }
.price { font-size: 36px; font-weight: 850; margin: 16px 0; }
.price small { font-size: 14px; color: var(--secondary); }
ul.clean { padding: 0; list-style: none; margin: 18px 0; }
ul.clean li { padding: 8px 0 8px 26px; position: relative; color: var(--secondary); }
ul.clean li:before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.flow-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.step-number { width: 36px; height: 36px; border-radius: 50%; background: var(--petrol); color: #fff; display: grid; place-items: center; font-weight: 900; margin-bottom: 14px; }
.site-footer { width: min(1440px, calc(100% - 32px)); margin: 28px auto; padding: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; color: var(--secondary); }
.auth-wrap { width: min(980px, calc(100% - 32px)); margin: 42px auto; }
.auth-card { max-width: 740px; margin: 0 auto; }
label { display: block; font-weight: 750; font-size: 14px; margin: 14px 0 7px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 12px; background: #fff;
  padding: 13px 14px; font: inherit; color: var(--text);
}
textarea { min-height: 130px; resize: vertical; }
.form-grid { grid-template-columns: repeat(2, 1fr); }
.notice { width: min(980px, calc(100% - 32px)); margin: 16px auto; padding: 14px 18px; border-radius: 14px; border: 1px solid var(--border); background: #fff; }
.notice-success { border-color: rgba(60,201,167,.5); }
.notice-error { border-color: rgba(194,73,73,.35); color: #8f2525; }
.app-shell { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.app-sidebar { background: linear-gradient(180deg, #003f42, #00595c); color: #fff; padding: 28px; position: sticky; top: 0; height: 100vh; }
.app-content { padding: 30px; }
.app-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.dashboard-grid { grid-template-columns: repeat(4, 1fr); }
.layout-two { display: grid; grid-template-columns: 1.4fr .8fr; gap: 18px; align-items: start; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.codebox { background: #092626; color: #dff8f4; padding: 16px; border-radius: 14px; font-size: 13px; overflow: auto; }
.booking-page { width: min(980px, calc(100% - 32px)); margin: 34px auto; }
.widget-body { background: #fff; }
.widget-body .booking-page { width: 100%; margin: 0; padding: 10px; }
.widget-body .site-header, .widget-body .site-footer { display: none; }
.hidden { display: none !important; }
@media (max-width: 980px) {
  .site-header, .site-footer, .cta-band { flex-direction: column; align-items: flex-start; }
  .nav { flex-wrap: wrap; gap: 14px; }
  .hero { padding: 34px 22px; }
  .hero-grid, .embed-band, .mini-dashboard, .app-shell, .layout-two { grid-template-columns: 1fr; }
  .hero-art, .water-scene { min-height: 420px; }
  .overview-card { width: calc(100% - 36px); right: 18px; }
  .cards, .feature-grid, .pricing-grid, .flow-grid, .dashboard-grid, .metric-grid, .form-grid { grid-template-columns: 1fr; }
  .logo-row { grid-template-columns: repeat(2, 1fr); }
  .app-sidebar { position: static; height: auto; }
  .pricing-card.popular { transform: none; }
}

