:root {
  --bg: #0F1016;
  --bg-soft: #151624;
  --bg-elevated: #1B1C2C;
  --bg-card: #16172A;
  --text: #EDEBF4;
  --text-strong: #FFFFFF;
  --muted: #A9A6BF;
  --accent: #8B5CF6;
  --accent-deep: #7C3AED;
  --accent-light: #C4B5FD;
  --accent-dark: #221638;
  --border: #2A2C40;
  --green: #34D399;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section[id] {
  scroll-margin-top: 88px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--accent-light);
  border-color: var(--accent);
}

.btn-ghost:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

/* ============ STAR NAVIGATION ============ */
.star-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #0F1016;
  border-bottom: 1px solid var(--border);
}

.star-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.star-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.star-mark {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #C4B5FD 0%, #8B5CF6 55%, #7C3AED 100%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.star-nav-word {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-strong);
}

.star-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
}

.star-nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}

.star-nav-links a:hover {
  color: var(--accent-light);
}

.star-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.25s ease;
}

.star-nav-links a:hover::after {
  width: 100%;
}

.star-nav-cta {
  flex-shrink: 0;
  padding: 11px 22px;
  border-radius: 9px;
  background-color: var(--accent);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.star-nav-cta:hover {
  background-color: var(--accent-deep);
  transform: translateY(-2px);
}

.star-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.star-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--accent-light);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.star-nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.star-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.star-nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ SAILBOAT HERO ============ */
.sailboat-hero {
  padding: 152px 0 96px;
  background:
    radial-gradient(circle at 78% 42%, rgba(124, 58, 237, 0.22) 0%, rgba(15, 16, 22, 0) 55%),
    radial-gradient(circle at 12% 10%, rgba(139, 92, 246, 0.12) 0%, rgba(15, 16, 22, 0) 50%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.sailboat-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  background-color: var(--accent-dark);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.sailboat-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.sailboat-hero h1 span {
  color: var(--accent-light);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}

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

.hero-proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--muted);
}

.hero-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}

/* Sailboat artwork */
.sailboat-hero-art {
  display: flex;
  justify-content: center;
}

.sailboat {
  position: relative;
  width: 460px;
  height: 380px;
}

.boat-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.28) 0%, rgba(124, 58, 237, 0.10) 45%, rgba(15, 16, 22, 0) 70%);
  border-radius: 50%;
}

.boat-mast {
  position: absolute;
  left: 190px;
  top: 42px;
  width: 6px;
  height: 230px;
  background: linear-gradient(180deg, #C4B5FD 0%, #8B5CF6 55%, #7C3AED 100%);
  border-radius: 3px;
}

.boat-flag {
  position: absolute;
  left: 193px;
  top: 42px;
  width: 44px;
  height: 24px;
  background: linear-gradient(90deg, #C4B5FD, #8B5CF6);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.boat-mainsail {
  position: absolute;
  left: 190px;
  top: 48px;
  width: 244px;
  height: 218px;
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 70%, #5B21B6 100%);
  clip-path: polygon(6% 0%, 40% 18%, 72% 48%, 100% 88%, 58% 100%, 6% 100%);
  filter: drop-shadow(0 0 14px rgba(139, 92, 246, 0.35));
}

.boat-jib {
  position: absolute;
  left: 92px;
  top: 48px;
  width: 104px;
  height: 218px;
  background: linear-gradient(135deg, #C4B5FD 0%, #8B5CF6 100%);
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.28));
}

.boat-bowsprit {
  position: absolute;
  left: 34px;
  top: 268px;
  width: 62px;
  height: 4px;
  background: #C4B5FD;
  border-radius: 2px;
  transform: rotate(-9deg);
}

.boat-hull {
  position: absolute;
  left: 60px;
  bottom: 52px;
  width: 360px;
  height: 64px;
  background: linear-gradient(180deg, #7C3AED 0%, #221638 100%);
  clip-path: polygon(0% 55%, 12% 28%, 34% 8%, 60% 0%, 84% 10%, 100% 45%, 96% 78%, 55% 100%, 8% 85%);
}

.boat-wave {
  position: absolute;
  border-radius: 50%;
}

.boat-wave-1 {
  left: 42px;
  bottom: 22px;
  width: 200px;
  height: 46px;
  border-top: 3px solid #8B5CF6;
}

.boat-wave-2 {
  left: 130px;
  bottom: 8px;
  width: 280px;
  height: 44px;
  border-top: 3px solid #7C3AED;
}

.boat-wave-3 {
  left: 66px;
  bottom: 0px;
  width: 230px;
  height: 38px;
  border-top: 2px solid #C4B5FD;
}

/* ============ STATEMENT ============ */
.statement-section {
  padding: 88px 0;
  background-color: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.statement-lede {
  font-size: 30px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--text);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.statement-lede strong {
  color: var(--accent-light);
}

/* ============ STATS ============ */
.stats-section {
  padding: 72px 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat {
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background-color: var(--bg-elevated);
}

.stat-num {
  display: block;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-light);
  letter-spacing: -1px;
}

.stat-suffix {
  font-size: 34px;
  color: var(--accent);
}

.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

/* ============ ABOUT ============ */
.about-section {
  padding: 96px 0;
  background-color: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.about-copy h2,
.section-head h2,
.contact-copy h2,
.cta-left h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}

.about-copy p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 18px;
}

.about-points {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.about-point-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-dark);
  border: 2px solid var(--accent);
  position: relative;
}

.about-point-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
  transform: rotate(45deg);
}

.about-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--accent-dark) 130%);
  padding: 32px;
}

.about-card-head {
  margin-bottom: 20px;
}

.about-card-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
}

.about-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.about-card-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.about-card-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 4px;
  background-color: var(--accent);
  position: relative;
}

.about-card-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(45deg);
}

.about-card-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-light);
  transition: color 0.2s ease;
}

.about-card-link:hover {
  color: #FFFFFF;
}

/* ============ SERVICES ============ */
.services-section {
  padding: 96px 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 32px 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background-color: var(--bg-elevated);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.service-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-light);
  background-color: var(--accent-dark);
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ PROCESS ============ */
.process-section {
  padding: 96px 0;
  background-color: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.process-list {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 44px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.process-step:last-child::before {
  display: none;
}

.process-marker {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.process-body {
  padding-top: 4px;
}

.process-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 8px;
}

.process-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
}

/* ============ COMPARISON ============ */
.compare-section {
  padding: 96px 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background-color: var(--bg-elevated);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare-table th,
.compare-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}

.compare-table thead th {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  background-color: var(--bg-soft);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-tier-highlight {
  color: var(--accent-light) !important;
  background-color: var(--accent-dark);
}

.compare-feature-col {
  color: var(--muted) !important;
  font-weight: 500;
}

.mark-check {
  color: var(--green);
  font-weight: 700;
}

.mark-x {
  color: #6B6880;
  font-weight: 700;
}

/* ============ PRODUCTS ============ */
.products-section {
  padding: 96px 0;
  background-color: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.product-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-tab:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.product-tab.is-active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

.product-panel {
  display: none;
}

.product-panel.is-active {
  display: block;
}

.product-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
}

.product-scroll::-webkit-scrollbar {
  height: 8px;
}

.product-scroll::-webkit-scrollbar-track {
  background: var(--bg-elevated);
  border-radius: 8px;
}

.product-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-deep);
  border-radius: 8px;
}

.product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 16px;
  background-color: var(--bg-elevated);
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.product-card-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-light);
  background: var(--accent-dark);
  border: 1px solid var(--accent);
  margin-bottom: 18px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ CONTACT ============ */
.contact-section {
  padding: 96px 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
}

.contact-detail a,
.contact-detail span {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--accent-light);
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: 18px;
  background-color: var(--bg-elevated);
  padding: 32px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background-color: var(--bg-soft);
  color: var(--text-strong);
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 20px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6B6880;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  display: none;
  margin-top: 16px;
  font-size: 14px;
  color: var(--accent-light);
}

.form-status.visible {
  display: block;
}

/* ============ CTA SPLIT BAND ============ */
.cta-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.22) 0%, rgba(15, 16, 22, 0) 55%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.cta-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.cta-left h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-left p {
  font-size: 16px;
  color: var(--muted);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* ============ FOOTER ============ */
.site-footer {
  background-color: var(--bg);
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 44px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid var(--border);
}

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

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

.footer-legal-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--accent-light);
}

/* ============ SCROLL REVEAL ============ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .sailboat-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sailboat-hero h1 {
    font-size: 40px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-split {
    grid-template-columns: 1fr;
  }

  .cta-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .star-nav-inner {
    gap: 14px;
  }

  .star-nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .star-nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    background-color: #0F1016;
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
    display: none;
  }

  .star-nav-links.open {
    display: flex;
  }

  .star-nav-links a {
    display: block;
    padding: 12px 0;
    width: 100%;
    font-size: 16px;
  }

  .star-nav-cta {
    margin-left: 0;
    padding: 10px 18px;
  }

  .sailboat-hero {
    padding: 124px 0 72px;
  }

  .sailboat-hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .sailboat {
    transform: scale(0.82);
  }

  .statement-lede {
    font-size: 22px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-copy h2,
  .section-head h2,
  .contact-copy h2,
  .cta-left h2 {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
