@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=DM+Mono:wght@400;500&display=swap');

:root {
  --water: #0a1628;
  --deep: #060e1c;
  --surface: #0f2040;
  --ripple: #1a3a6e;
  --oar: #c8a96e;
  --oar-light: #e2c98a;
  --foam: #e8f4f8;
  --mist: #a8c4d4;
  --white: #f5f9fc;
  --accent: #4fc3e8;
  --accent-dim: #2a7fa8;
  --text: #d0e8f0;
  --text-dim: #7aa0b8;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--deep);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── WATER TEXTURE BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      170deg,
      transparent,
      transparent 40px,
      rgba(79,195,232,0.015) 40px,
      rgba(79,195,232,0.015) 41px
    ),
    repeating-linear-gradient(
      10deg,
      transparent,
      transparent 80px,
      rgba(79,195,232,0.01) 80px,
      rgba(79,195,232,0.01) 81px
    );
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(6, 14, 28, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(79,195,232,0.08);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--oar);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

/* ── PAGE WRAPPER ── */
.page {
  position: relative;
  z-index: 1;
  padding-top: 72px;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,195,232,0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oar);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 11rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 0.2em;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

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

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--mist);
  max-width: 480px;
  margin: 1.5rem auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--oar);
  color: var(--deep);
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--oar-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(79,195,232,0.3);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(79,195,232,0.06);
  transform: translateY(-2px);
}

/* ── DIVIDER ── */
.stroke-divider {
  width: 60px;
  height: 2px;
  background: var(--oar);
  margin: 3rem auto;
}

/* ── SECTIONS ── */
.section {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oar);
  margin-bottom: 1rem;
}

.section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.section p {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 1.2rem;
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(15, 32, 64, 0.6);
  border: 1px solid rgba(79,195,232,0.1);
  padding: 2rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(79,195,232,0.3);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin: 0;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(79,195,232,0.06);
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.page-hero p {
  color: var(--mist);
  font-size: 1rem;
  margin-top: 0.75rem;
}

/* ── CONTENT BLOCK ── */
.content-block {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin: 2.5rem 0 0.75rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p,
.content-block li {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.content-block ul, .content-block ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-block a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(79,195,232,0.3);
  transition: border-color 0.2s;
}

.content-block a:hover {
  border-color: var(--accent);
}

.meta-date {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: block;
}

/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(15, 32, 64, 0.7);
  border: 1px solid rgba(79,195,232,0.15);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

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

.form-group select option {
  background: var(--water);
}

/* ── APP STORE BADGE ── */
.appstore-section {
  text-align: center;
  padding: 5rem 2rem;
}

.appstore-badge {
  display: inline-block;
  margin-top: 2rem;
  transition: transform 0.2s, opacity 0.2s;
}

.appstore-badge:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.appstore-badge img {
  height: 54px;
}

.coming-soon-badge {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oar);
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(79,195,232,0.07);
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}

.footer-logo span { color: var(--oar); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.65rem; }
  footer { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}
