/* GetStateside — Deep Navy + Gold/Amber design system */
:root {
  --navy: #0d1b2a;
  --navy-mid: #162435;
  --navy-light: #1e3148;
  --gold: #c9a84c;
  --gold-bright: #e8c063;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-border: rgba(201, 168, 76, 0.3);
  --fg: #f0ece4;
  --fg-muted: #9ba8b4;
  --fg-dim: #5a6470;
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-bg-hover: rgba(255, 255, 255, 0.07);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Satoshi', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
}

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

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

body {
  background: var(--navy);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fg);
}
.nav-logo-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
}
.nav-logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

/* ========== SECTION LABELS ========== */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 10rem 2rem 6rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Subtle Atlantic/bridge grid texture */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial glow from top */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.eyebrow-flag { font-size: 1rem; }
.eyebrow-arrow { color: var(--gold); font-weight: 700; }
.eyebrow-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  color: var(--fg);
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-lede {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.35);
}

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.2);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; gap: 0.2rem; }
.proof-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 0.78rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ========== PROBLEM ========== */
.problem {
  padding: 6rem 2rem;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.problem-header {
  margin-bottom: 3.5rem;
  max-width: 680px;
}
.problem-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.problem-card {
  background: var(--navy-mid);
  padding: 2.5rem;
  transition: background 0.2s;
}
.problem-card:hover { background: var(--navy-light); }
.problem-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.problem-card p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 6rem 2rem;
}
.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.how-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 4rem;
  max-width: 700px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  position: relative;
}
.step-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  padding-top: 0.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.step-content {
  border-left: 1px solid var(--border);
  padding: 0 0 3.5rem 2.5rem;
  position: relative;
}
.step-content::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.step-icon {
  color: var(--gold);
  margin-bottom: 1rem;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 1.25rem;
}
.step-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.step-deliverables li {
  font-size: 0.85rem;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.step-deliverables li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
}
.step-connector { display: none; }

/* Last step: no border continuation */
.step:last-child .step-content {
  padding-bottom: 0;
}

/* ========== SERVICES ========== */
.services {
  padding: 6rem 2rem;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.services-subtitle {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 3.5rem;
}
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.tier {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.tier:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.tier-featured {
  border-color: var(--gold-border);
  background: rgba(201, 168, 76, 0.06);
}
.tier-featured:hover {
  border-color: var(--gold);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}
.tier-header { margin-bottom: 0.75rem; }
.tier-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.tier-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.tier-period {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.tier-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.feature-check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.tier-cta {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.tier-cta-primary {
  background: var(--gold);
  color: var(--navy);
}
.tier-cta-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}
.tier-cta-secondary {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.tier-cta-secondary:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.2);
}

/* ========== WHO WE HELP ========== */
.who-we-help {
  padding: 6rem 2rem;
}
.who-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.who-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.who-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.who-criteria {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.criterion {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.criterion-icon {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.vertical {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.vertical:hover {
  background: var(--card-bg-hover);
  border-color: rgba(255,255,255,0.15);
}
.vertical-icon {
  font-size: 1.1rem;
  color: var(--gold);
  width: 28px;
  text-align: center;
}
.client-logos {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.logos-label {
  font-size: 0.75rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.logos-placeholder {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.logos-placeholder span {
  height: 28px;
  width: 80px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* ========== CONTACT ========== */
.contact {
  padding: 6rem 2rem;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.contact-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.detail-icon { color: var(--gold); font-weight: 700; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-dim); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-border);
  background: rgba(201, 168, 76, 0.06);
}
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}
.form-submit:hover:not(:disabled) {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.35);
}
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.form-submit.loading .submit-arrow { animation: spin 1s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-message {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  display: none;
}
.form-message--success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}
.form-message--error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo-arrow { color: var(--gold); font-size: 1rem; }
.footer-logo-text { font-weight: 700; font-size: 0.95rem; }
.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-dim);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .tiers {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .who-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 8rem 1.5rem 4rem;
    min-height: auto;
  }
  .nav-inner { padding: 1rem 1.5rem; }
  .nav-links .nav-link { display: none; }
  .problem, .how-it-works, .services, .who-we-help, .contact {
    padding: 4rem 1.5rem;
  }
  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .proof-divider { width: 40px; height: 1px; }
  .step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
  .verticals-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
