/* SailGates — Coming Soon */

:root {
  --navy: #0a2540;
  --navy-dark: #061829;
  --navy-mid: #123a5c;
  --orange: #e87722;
  --orange-dark: #c96212;
  --orange-glow: rgba(232, 119, 34, 0.35);
  --cream: #fafaf7;
  --white: #ffffff;
  --grey: #5a6472;
  --grey-light: #efefec;
  --border: rgba(10, 37, 64, 0.1);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 24px 48px -12px rgba(10, 37, 64, 0.18);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Layout ── */

.top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: grid;
  place-items: center;
  color: var(--orange);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.2);
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.header-cta:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

main {
  overflow-x: hidden;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Hero ── */

.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, var(--orange-glow), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(10, 37, 64, 0.06), transparent 45%),
    var(--cream);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero {
    padding: 6rem 0 7rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-lead {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--grey);
  max-width: 36rem;
  line-height: 1.7;
}

.hero-tagline {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--navy-mid);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  box-shadow: 0 8px 24px var(--orange-glow);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--orange-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--navy);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% -20%, rgba(232, 119, 34, 0.25), transparent),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05), transparent 50%);
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
}

.hero-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.hero-card p {
  margin-top: 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
}

.stat-row {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat {
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Sections ── */

section {
  padding: 4.5rem 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
}

.section-title {
  margin-top: 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-lead {
  margin-top: 0.75rem;
  color: var(--grey);
  max-width: 40rem;
  font-size: 1.05rem;
}

.services {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(232, 119, 34, 0.35);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--orange);
  font-size: 1.25rem;
}

.service-card h3 {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.service-card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.55;
}

.service-card--featured {
  background: linear-gradient(160deg, var(--navy), var(--navy-dark));
  border-color: transparent;
  color: var(--white);
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card--featured .service-icon {
  background: rgba(255, 255, 255, 0.12);
}

/* ── Routes ── */

.routes {
  background: var(--navy);
  color: var(--white);
}

.routes .section-eyebrow {
  color: var(--orange);
}

.routes .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.route-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .route-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.route-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  transition: background 0.2s;
}

.route-pill:hover {
  background: rgba(255, 255, 255, 0.12);
}

.route-pill span:last-child {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

/* ── Features ── */

.features-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 1.5rem 0;
  border-top: 3px solid var(--orange);
}

.feature h3 {
  font-size: 1rem;
  font-weight: 800;
}

.feature p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--grey);
}

/* ── Notify ── */

.notify {
  background:
    radial-gradient(ellipse 80% 80% at 50% 120%, var(--orange-glow), transparent 60%),
    var(--cream);
}

.notify-box {
  margin-top: 2rem;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.notify-box p {
  color: var(--grey);
  max-width: 28rem;
  margin: 0.75rem auto 0;
}

.notify-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.contact-chips {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--grey-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s;
}

.chip:hover {
  background: rgba(232, 119, 34, 0.15);
  color: var(--orange-dark);
}

/* ── Footer ── */

.site-footer {
  padding: 2.5rem 0;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand strong {
  color: var(--white);
  font-size: 1rem;
}

.footer-brand p {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.7;
}
