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

:root {
  --royal:  #1e4ba3;
  --royal2: #163a80;
  --royal3: #0f2a5e;
  --sky:    #4f9ed4;
  --pale:   #ddeaf8;
  --pale2:  #eef5fc;
  --white:  #ffffff;
  --text:   #0f1e33;
  --muted:  #476080;
  --fh: 'Oswald', sans-serif;
  --fs: 'Source Serif 4', Georgia, serif;
  --fb: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--royal3);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw; height: 64px;
}
.nav-left { display: flex; flex-direction: column; line-height: 1.25; }
.nav-left strong { font-family: var(--fh); font-size: 16px; font-weight: 500; color: #fff; letter-spacing: 0.04em; }
.nav-left span { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-call {
  background: var(--white); color: var(--royal2);
  padding: 0.5rem 1.25rem; border-radius: 5px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  letter-spacing: 0.01em;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--royal2);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-photo {
  position: relative; overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--royal2) 100%);
}

.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 8vw 5rem 3rem;
  position: relative; z-index: 2;
}
.hero-kicker {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sky); font-weight: 500; margin-bottom: 1.25rem;
}
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.hero-h1 .accent { color: var(--pale); display: block; font-size: 0.55em; font-weight: 400; letter-spacing: 0.06em; margin-bottom: 0.1em; }
.hero-divider {
  width: 48px; height: 3px; background: var(--sky);
  margin: 1.25rem 0;
}
.hero-sub {
  font-family: var(--fs); font-style: italic;
  font-size: clamp(1rem, 1.75vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.65; max-width: 380px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  background: var(--white); color: var(--royal2);
  padding: 0.85rem 2rem; border-radius: 5px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  letter-spacing: 0.01em; transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-secondary {
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.85rem 2rem; border-radius: 5px;
  font-size: 14px; font-weight: 400; text-decoration: none;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.hero-contact { display: flex; flex-direction: column; gap: 5px; }
.hero-contact a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.hero-contact a:hover { color: #fff; }

/* ── SHOWS UP BAR ── */
.shows-up-bar {
  background: var(--royal);
  padding: 1.5rem 6vw;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
}
.shows-up-bar .su-inner {
  display: flex; align-items: center;
  max-width: 900px; width: 100%; gap: 3rem; flex-wrap: wrap;
}
.su-headline {
  font-family: var(--fh);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.03em;
  flex-shrink: 0;
}
.su-headline em { color: var(--pale); font-style: normal; }
.su-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.su-pill {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 400;
  padding: 0.35rem 0.875rem; border-radius: 20px; white-space: nowrap;
}

/* ── SHOWS UP PROOF ── */
.proof { padding: 5rem 6vw; background: var(--white); }
.proof-inner { max-width: 1060px; margin: 0 auto; }
.section-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sky); font-weight: 500; margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--royal); display: inline-block; }
.proof h2 {
  font-family: var(--fh); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--royal2); letter-spacing: 0.03em;
  line-height: 1.1; margin-bottom: 3rem;
}
.proof h2 em { font-style: normal; color: var(--sky); }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.proof-card {
  border: 1px solid var(--pale);
  border-top: 3px solid var(--royal);
  border-radius: 8px; padding: 1.75rem;
  background: var(--pale2);
}
.proof-num {
  font-family: var(--fh); font-size: 2.5rem; font-weight: 700;
  color: var(--royal); line-height: 1; margin-bottom: 0.5rem;
}
.proof-card h3 { font-family: var(--fh); font-size: 1rem; font-weight: 500; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.625rem; }
.proof-card p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── WHAT SHOWING UP LOOKS LIKE ── */
.showing-up { background: var(--pale2); padding: 5rem 6vw; }
.showing-up .inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.su-photo { position: relative; border-radius: 10px; overflow: hidden; }
.su-photo img { width: 100%; display: block; border-radius: 10px; }
.su-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--royal2); padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.su-photo-caption strong { font-family: var(--fh); font-size: 15px; font-weight: 500; color: #fff; letter-spacing: 0.04em; }
.su-photo-caption span { font-size: 11px; color: rgba(255,255,255,0.5); }
.su-carousel {
  position: relative;
}
.su-carousel-track {
  position: relative;
}
.su-carousel-slide {
  display: none;
}
.su-carousel-slide.active {
  display: block;
}
.su-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 30, 51, 0.75);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.2s, transform 0.2s;
}
.su-carousel-control:hover {
  background: rgba(15, 30, 51, 0.95);
}
.su-carousel-prev { left: 1rem; }
.su-carousel-next { right: 1rem; }
.su-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.su-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.su-carousel-dot:hover,
.su-carousel-dot.active {
  background: #fff;
  transform: scale(1.1);
}
.su-list-wrap h2 {
  font-family: var(--fh); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--royal2); letter-spacing: 0.03em;
  line-height: 1.15; margin-bottom: 2rem;
}
.su-list-wrap h2 em { font-style: normal; color: var(--sky); }
.su-items { display: flex; flex-direction: column; gap: 1.125rem; }
.su-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border-radius: 8px;
  padding: 1.125rem 1.25rem;
  border-left: 3px solid var(--royal);
}
.su-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--pale); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.su-item h4 { font-size: 14px; font-weight: 500; color: var(--royal2); margin-bottom: 3px; }
.su-item p { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ── BUYERS & SELLERS ── */
.two-col { padding: 5rem 6vw; background: var(--white); }
.two-col .inner { max-width: 1060px; margin: 0 auto; }
.two-col h2 {
  font-family: var(--fh); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--royal2); letter-spacing: 0.03em;
  line-height: 1.1; margin-bottom: 2.5rem;
}
.two-col h2 em { font-style: normal; color: var(--sky); }
.bs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.bs-panel {
  background: var(--royal2);
  border-radius: 10px; padding: 2.25rem;
  position: relative; overflow: hidden;
}
.bs-panel.light { background: var(--pale2); border: 1px solid var(--pale); }
.bs-tag {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 1rem;
}
.bs-panel:not(.light) .bs-tag { color: rgba(255,255,255,0.55); }
.bs-panel.light .bs-tag { color: var(--sky); }
.bs-panel h3 {
  font-family: var(--fh); font-size: 1.375rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  line-height: 1.2; margin-bottom: 1.25rem;
}
.bs-panel:not(.light) h3 { color: #fff; }
.bs-panel.light h3 { color: var(--royal2); }
.bs-points { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.5rem; }
.bs-points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 300; line-height: 1.5;
}
.bs-panel:not(.light) .bs-points li { color: rgba(255,255,255,0.8); }
.bs-panel.light .bs-points li { color: var(--muted); }
.bs-points li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bs-panel.light .bs-points li::before { background: var(--royal); }
.bs-callout {
  font-family: var(--fs); font-style: italic;
  font-size: 13px; line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem;
}
.bs-panel:not(.light) .bs-callout { color: rgba(255,255,255,0.55); }
.bs-panel.light .bs-callout { color: var(--muted); border-color: var(--pale); }

/* ── CTA ── */
.cta {
  background: var(--royal3); padding: 5rem 6vw;
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(79,158,212,0.07); pointer-events: none;
}
.cta .inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta h2 {
  font-family: var(--fh); font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700; color: #fff; text-transform: uppercase;
  letter-spacing: 0.03em; line-height: 1.1; margin-bottom: 0.5rem;
}
.cta h2 em { font-style: normal; color: var(--pale); display: block; font-size: 0.58em; font-weight: 400; letter-spacing: 0.08em; margin-bottom: 0.2em; }
.cta .sub {
  font-family: var(--fs); font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin: 1.25rem auto 2.5rem; max-width: 480px;
}
.cta-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto 2rem; flex-wrap: wrap; justify-content: center; }
.cta-form input {
  flex: 1; min-width: 160px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 5px; padding: 0.85rem 1rem;
  color: #fff; font-family: var(--fb); font-size: 14px; font-weight: 300; outline: none;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.38); }
.cta-form input:focus { border-color: var(--sky); }
.cta-form button {
  background: var(--white); color: var(--royal2);
  border: none; padding: 0.85rem 1.75rem; border-radius: 5px;
  font-family: var(--fb); font-size: 14px; font-weight: 500;
  cursor: pointer; white-space: nowrap; transition: opacity 0.2s;
}
.cta-form button:hover { opacity: 0.9; }
.cta-direct { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-direct a {
  font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.cta-direct a:hover { color: #fff; }
.cta-direct span { color: rgba(255,255,255,0.2); }
.dre { margin-top: 1.5rem; font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }

/* CTA-specific rules moved from inline attributes */
.cta .section-label { justify-content: center; color: var(--sky); }
.cta .section-label span { width: 28px; height: 2px; background: var(--pale); display: inline-block; }
#form-success, #form-error { display: none; font-size: 14px; margin-bottom: 1.5rem; }
#form-success { color: #7dd3fc; }
#form-error { color: #fca5a5; }

/* ── FOOTER ── */
footer {
  background: #0a1f3d;
  padding: 1.5rem 6vw;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
footer p { font-size: 12px; color: rgba(255,255,255,0.3); }
.foot-r { display: flex; gap: 1.25rem; }
.foot-r a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }
.foot-r a:hover { color: rgba(255,255,255,0.6); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { height: 340px; }
  .hero-photo::after { background: linear-gradient(to top, var(--royal2) 0%, transparent 60%); }
  .hero-text { padding: 2.5rem 6vw 3.5rem; }
  .showing-up .inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .bs-grid { grid-template-columns: 1fr; }
  .shows-up-bar .su-inner { gap: 1.25rem; }
}
@media (max-width: 520px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .cta-form { flex-direction: column; }
  .cta-form input { min-width: 100%; }
}
