:root {
  --slate: #1a2d3a;
  --slate-light: #2d4a5e;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --sand: #f8f5f0;
  --sand-mid: #ece8e0;
  --ink: #0f1c24;
  --muted: #6b7c8a;
  --white: #ffffff;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 92vh;
  background: var(--slate);
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(13,148,136,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  flex: 1;
  max-width: 680px;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.65;
}
.hero-visual {
  flex: 0 0 420px;
  padding: 80px 80px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.city-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.city-dot.active {
  background: var(--teal-light);
  box-shadow: 0 0 12px rgba(20,184,166,0.5);
}
.hero-stat-row {
  display: flex;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* PROOF */
.proof {
  background: var(--sand-mid);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 56px 80px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proof-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 32px;
}
.proof-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.badge {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 20px 24px;
}
.badge-title {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 6px;
}
.badge-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ETHOS */
.ethos {
  background: var(--white);
  padding: 100px 80px;
}
.ethos-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ethos-claim {
  max-width: 780px;
  margin: 0 auto 72px;
  text-align: center;
}
.ethos-claim p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--slate);
  line-height: 1.45;
  font-style: italic;
}
.ethos-claim cite {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  margin-top: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ethos-pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ethos-card {
  padding: 32px;
  border: 1px solid var(--sand-mid);
  border-radius: 14px;
  background: var(--sand);
}
.ethos-icon {
  color: var(--teal);
  margin-bottom: 20px;
}
.ethos-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 12px;
}
.ethos-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* PILLARS */
.pillars {
  background: var(--slate);
  color: var(--white);
  padding: 100px 80px;
}
.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pillars-header {
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}
.pillars-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.pillar-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pillar {
  display: flex;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-right: 40px;
}
.pillar:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.pillar:nth-child(even) {
  padding-left: 48px;
}
.pillar-number {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar-content p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  background: var(--sand);
  padding: 100px 80px;
  border-top: 1px solid var(--sand-mid);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.closing-stat-block {
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.closing-big {
  display: flex;
  flex-direction: column;
}
.closing-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 12px;
}
.closing-label {
  font-size: 14px;
  color: var(--muted);
  max-width: 180px;
  line-height: 1.5;
}
.closing-statement {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.closing-statement p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--slate);
  line-height: 1.4;
  margin-bottom: 16px;
}
.closing-attribution {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400 !important;
}

/* FOOTER */
footer {
  background: var(--slate);
  color: var(--white);
  padding: 40px 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-inner p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-meta p {
  text-align: right;
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-inner { padding: 72px 48px 40px; }
  .hero-visual { flex: none; width: 100%; padding: 0 48px 64px; }
  .ethos-pillars-row { grid-template-columns: 1fr; gap: 20px; }
  .pillar-list { grid-template-columns: 1fr; }
  .pillar:nth-child(odd) { border-right: none; padding-right: 0; }
  .pillar:nth-child(even) { padding-left: 0; }
  .closing-stat-block { flex-direction: column; gap: 40px; }
}
@media (max-width: 640px) {
  .hero-inner, .hero-visual, .proof, .ethos, .pillars, .closing, footer { padding-left: 24px; padding-right: 24px; }
  .proof-badges { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .footer-meta p { text-align: left !important; }
}