﻿/* ============================================================
   Top Sky Football Club — Academy & Foundation
   Accra, Ghana · Presented by JOI Daddi
   ============================================================ */

:root {
  --sky: #1131ee;           /* TOPSKY royal blue (crest) */
  --sky-light: #7df3ff;     /* crest cyan, light */
  --sky-dark: #0d24b8;
  --cyan: #4fe3f7;          /* crest cyan accent */
  --navy: #06080f;          /* near-black (crest black) */
  --navy-2: #101a44;
  --gold: #fcd116;          /* Ghana star gold (flag only) */
  --green: #006b3f;         /* Ghana green */
  --red: #ce1126;           /* Ghana red */
  --ink: #10233b;
  --muted: #5b6b80;
  --bg: #f4f8fb;
  --card: #ffffff;
  --line: #dde7f0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(7, 32, 63, 0.10);
  --shadow-lg: 0 18px 50px rgba(7, 32, 63, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

a { color: var(--sky-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy);
  color: #cfe4f5;
  font-size: 13px;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 16px;
}
.topbar .flag {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.topbar .flag .stripes {
  display: inline-block; width: 22px; height: 14px; border-radius: 2px; overflow: hidden;
  background: linear-gradient(to bottom, #ce1126 33.3%, #fcd116 33.3%, #fcd116 66.6%, #006b3f 66.6%);
  position: relative;
}
.topbar .sponsor-note { color: #9fc3e0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar .sponsor-note strong { color: var(--cyan); font-weight: 700; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  color: #fff;
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 4px 18px rgba(7, 32, 63, .35);
}
.site-header .container {
  display: flex; align-items: center; gap: 28px; height: 74px;
}
.brand {
  display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand .crest { width: 46px; height: 52px; }
.brand .name { line-height: 1.15; }
.brand .name .top { font-size: 17px; font-weight: 800; letter-spacing: .04em; }
.brand .name .sub { font-size: 9px; letter-spacing: .08em; color: var(--sky-light); text-transform: uppercase; }

.main-nav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.main-nav a {
  color: #dcecf8; font-size: 14px; font-weight: 600; letter-spacing: .02em;
  padding: 8px 13px; border-radius: 8px; text-decoration: none;
  text-transform: uppercase;
}
.main-nav a:hover { background: rgba(125, 211, 252, .14); color: #fff; }
.main-nav a.active { background: var(--sky); color: #ffffff; }

.nav-cta {
  background: var(--cyan); color: #06333c !important; font-weight: 800 !important;
}
.nav-cta:hover { background: #86f0ff !important; color: #06333c !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(17,49,238,.55), transparent 60%),
    radial-gradient(800px 420px at -10% 110%, rgba(79,227,247,.16), transparent 60%),
    linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 55%, #04050c 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center;
  padding-top: 72px; padding-bottom: 72px;
}
.hero .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sky-light); margin-bottom: 18px;
}
.hero .kicker::before { content: ""; width: 34px; height: 2px; background: var(--cyan); }
.hero h1 {
  font-size: clamp(34px, 5vw, 56px); line-height: 1.05; font-weight: 900;
  letter-spacing: -0.01em; margin-bottom: 18px; text-transform: uppercase;
}
.hero h1 .accent { color: var(--sky-light); }
.hero p.lead { font-size: 18px; color: #c9dcec; max-width: 560px; margin-bottom: 30px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 10px;
  font-weight: 800; font-size: 14.5px; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary { background: var(--sky); color: #ffffff; }
.btn-gold { background: var(--cyan); color: #06333c; }
.btn-outline { border: 2px solid rgba(255,255,255,.55); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }

.hero .crest-big { width: min(300px, 70%); margin: 0 auto; filter: drop-shadow(0 22px 40px rgba(0,0,0,.45)); }

/* ---------- Sponsor banner ---------- */
.sponsor-banner {
  background: linear-gradient(90deg, #0a1030 0%, #12225e 50%, #0a1030 100%);
  border-top: 3px solid var(--cyan);
  border-bottom: 3px solid var(--cyan);
  color: #fff;
}
.sponsor-banner .container {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  padding: 20px 24px; flex-wrap: wrap; text-align: center;
}
.sponsor-banner .label {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: #9fc3e0;
}
.sponsor-banner .sponsor-logo {
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; letter-spacing: .06em;
  color: var(--cyan); text-transform: uppercase; line-height: 1;
  text-shadow: 0 2px 14px rgba(79, 227, 247, .4);
}
.sponsor-banner .sponsor-logo span { color: #fff; }
.sponsor-banner .tag { font-size: 13.5px; color: #c9dcec; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section.alt { background: #eaf2f9; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head .eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sky-dark); margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.section-head .eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--cyan); }
.section-head h2 {
  font-size: clamp(26px, 3.6vw, 38px); font-weight: 900; text-transform: uppercase;
  color: var(--navy); line-height: 1.12; margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 16.5px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Card grid (academy hub) ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hub-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 240px; display: flex; align-items: flex-end;
  color: #fff; text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  background: var(--navy);
}
.hub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); text-decoration: none; }
.hub-card .art {
  position: absolute; inset: 0;
}
.hub-card .art svg { position: absolute; right: -20px; top: -14px; width: 55%; opacity: .2; }
.hub-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,18,38,.92) 0%, rgba(4,18,38,.25) 55%, transparent 100%);
}
.hub-card .body { position: relative; padding: 22px; width: 100%; }
.hub-card .body .tag {
  font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--sky-light); margin-bottom: 6px;
}
.hub-card .body h3 {
  font-size: 21px; font-weight: 900; text-transform: uppercase; line-height: 1.15; margin-bottom: 6px;
}
.hub-card .body p { font-size: 13.5px; color: #c3d6e6; margin-bottom: 10px; }
.hub-card .body .go {
  font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan);
}
.hub-card.c-sky   .art { background: linear-gradient(150deg, #0a1c9e, #2b4bff); }
.hub-card.c-navy  .art { background: linear-gradient(150deg, #05070f, #1c2f6b); }
.hub-card.c-green .art { background: linear-gradient(150deg, #064e3b, #059669); }
.hub-card.c-gold  .art { background: linear-gradient(150deg, #0e7490, #3ce0f7); }
.hub-card.c-red   .art { background: linear-gradient(150deg, #7f1d1d, #dc2626); }
.hub-card.c-steel { background: #33475e; }
.hub-card.c-steel .art { background: linear-gradient(150deg, #22334a, #4a6076); }

/* ---------- Pillars / stats ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.pillar .icon {
  width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--sky-dark), var(--sky)); margin-bottom: 16px;
}
.pillar .icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; }
.pillar p { color: var(--muted); font-size: 14.5px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  background: var(--navy); border-radius: var(--radius); color: #fff; text-align: center;
  padding: 30px 16px; border-bottom: 4px solid var(--cyan);
}
.stat .num { font-size: 40px; font-weight: 900; color: var(--sky-light); line-height: 1; }
.stat .lbl { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: #b9d2e6; margin-top: 8px; }

/* ---------- Content pages ---------- */
.page-hero {
  background:
    radial-gradient(900px 380px at 90% -20%, rgba(17,49,238,.5), transparent 60%),
    linear-gradient(160deg, var(--navy-2), var(--navy));
  color: #fff; padding: 56px 0 48px;
}
.page-hero .crumb { font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--sky-light); margin-bottom: 10px; }
.page-hero .crumb a { color: var(--sky-light); }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 900; text-transform: uppercase; line-height: 1.08; }
.page-hero p { color: #c9dcec; max-width: 640px; margin-top: 12px; font-size: 17px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split .panel {
  border-radius: var(--radius); overflow: hidden; min-height: 320px; position: relative;
  box-shadow: var(--shadow-lg);
}
.split .panel svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; }

.prose h3 { color: var(--navy); font-size: 20px; font-weight: 800; margin: 26px 0 8px; text-transform: uppercase; }
.prose p { color: #33475e; margin-bottom: 14px; font-size: 15.5px; }
.prose ul { margin: 0 0 14px 20px; color: #33475e; font-size: 15.5px; }
.prose li { margin-bottom: 6px; }

/* ---------- Team cards ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.team-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.team-card .band {
  padding: 26px 24px; color: #fff; position: relative; overflow: hidden;
}
.team-card .band .age { font-size: 44px; font-weight: 900; line-height: 1; }
.team-card .band .cat { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; opacity: .85; margin-top: 4px; }
.team-card .band svg { position: absolute; right: -14px; bottom: -18px; width: 130px; opacity: .18; }
.team-card .band.b-sky   { background: linear-gradient(140deg, #0a1c9e, #2b4bff); }
.team-card .band.b-navy  { background: linear-gradient(140deg, #05070f, #2440d8); }
.team-card .band.b-green { background: linear-gradient(140deg, #064e3b, #059669); }
.team-card .band.b-gold  { background: linear-gradient(140deg, #0e7490, #3ce0f7); }
.team-card .info { padding: 22px 24px; }
.team-card .info p { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; }
.team-card .info .meta { display: flex; gap: 10px; flex-wrap: wrap; }
.team-card .info .chip {
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px;
  background: #e5f2fb; color: var(--sky-dark);
}

/* ---------- Staff ---------- */
.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.staff-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-align: center; box-shadow: var(--shadow);
}
.staff-card .avatar {
  height: 120px; display: flex; align-items: flex-end; justify-content: center;
  background: linear-gradient(150deg, var(--navy-2), var(--sky-dark));
}
.staff-card .avatar svg { width: 84px; height: 84px; }
.staff-card .who { padding: 16px 14px 20px; }
.staff-card .who .nm { font-weight: 800; color: var(--navy); font-size: 15.5px; }
.staff-card .who .rl { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ---------- Steps (tryouts) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow); position: relative;
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-size: 34px; font-weight: 900; color: var(--sky); display: block; margin-bottom: 10px;
}
.step h3 { font-size: 16px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- Schedule table ---------- */
.sched {
  width: 100%; border-collapse: collapse; background: var(--card);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.sched th {
  background: var(--navy); color: #fff; text-align: left; font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase; padding: 14px 18px;
}
.sched td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 14.5px; color: #33475e; }
.sched tr:last-child td { border-bottom: none; }
.sched .pill {
  display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: .06em;
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase;
}
.pill-open { background: #dcfce7; color: #166534; }
.pill-soon { background: #fef9c3; color: #854d0e; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 800; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--sky); font-weight: 900; flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .ans { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--card); border-radius: var(--radius); border-top: 4px solid var(--sky);
  padding: 28px; box-shadow: var(--shadow); text-align: center;
}
.contact-card h3 { color: var(--navy); font-size: 16.5px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.contact-card a.mail { font-weight: 800; color: var(--sky-dark); font-size: 15px; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background:
    radial-gradient(700px 300px at 15% 120%, rgba(79,227,247,.22), transparent 60%),
    linear-gradient(120deg, var(--sky-dark), var(--navy));
  color: #fff; text-align: center; padding: 64px 0;
}
.cta-strip h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.cta-strip p { color: #cfe4f5; max-width: 620px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.site-footer { background: #04050c; color: #9db4c9; }
.footer-partners {
  border-bottom: 1px solid rgba(255,255,255,.08); padding: 34px 0;
}
.footer-partners .container {
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.footer-partners .p-label { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: #5f7a94; }
.partner-logo { font-weight: 900; letter-spacing: .08em; font-size: 20px; color: #e8f2fa; text-transform: uppercase; }
.partner-logo.main { color: var(--cyan); font-size: 24px; }
.partner-logo small { display: block; font-size: 9.5px; letter-spacing: .28em; color: #5f7a94; font-weight: 600; }

.footer-main .container {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding: 46px 24px;
}
.footer-main h4 {
  color: #fff; font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-main a { display: block; color: #9db4c9; font-size: 14px; margin-bottom: 8px; }
.footer-main a:hover { color: var(--sky-light); }
.footer-main .about p { font-size: 13.5px; margin: 12px 0 0; line-height: 1.7; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; }
.footer-brand .crest { width: 36px; height: 41px; }

.footer-legal { border-top: 1px solid rgba(255,255,255,.08); }
.footer-legal .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 24px; font-size: 12.5px; flex-wrap: wrap;
}
.footer-legal .links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: #7b93ab; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding-top: 54px; padding-bottom: 54px; }
  .hero .kicker { justify-content: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero .cta-row { justify-content: center; }
  .hero .crest-big { width: 200px; margin-top: 8px; }
  .card-grid, .pillars, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .stats, .steps, .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .team-grid { grid-template-columns: 1fr; }
  .footer-main .container { grid-template-columns: 1fr 1fr; }
  .main-nav { gap: 0; }
  .main-nav a { padding: 8px 9px; font-size: 12.5px; }
}
@media (max-width: 640px) {
  .card-grid, .pillars, .contact-cards, .stats, .steps, .staff-grid { grid-template-columns: 1fr; }
  .site-header .container { height: auto; flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
  .main-nav { margin-left: 0; }
  .topbar .sponsor-note { display: none; }
  .footer-main .container { grid-template-columns: 1fr; }
}

/* Presented-by line in hero (CF Montreal style) */
.hero .presented { display: flex; align-items: baseline; gap: 12px; margin: -8px 0 28px; font-size: 12.5px; letter-spacing: .26em; text-transform: uppercase; color: #9fb6d8; }
.hero .presented strong { color: var(--cyan); font-size: 22px; letter-spacing: .12em; font-weight: 900; }


/* ============ CFM-style academy template ============ */

/* Blue title band (replaces hero) */
.title-band { background: var(--sky); color: #fff; padding: 30px 0 34px; }
.title-band h1 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 900; line-height: 1.05; }
.title-band p { color: #d9e6ff; margin-top: 8px; max-width: 760px; font-size: 15.5px; }

/* Black sub-nav ribbon */
.subnav { background: #000; }
.subnav .container { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: thin; }
.subnav a {
  color: #c7d2e2; font-size: 13px; font-weight: 700; padding: 13px 14px;
  white-space: nowrap; text-decoration: none; flex-shrink: 0;
}
.subnav a:hover { color: #fff; background: #161616; text-decoration: none; }
.subnav a.active { color: #fff; box-shadow: inset 0 -3px 0 #fff; }

/* Founding partner banner (BMO-style) */
.founding-wrap { padding: 28px 0 6px; }
.founding-banner {
  background: var(--sky); border-radius: 6px; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 30px;
  padding: 30px 34px; flex-wrap: wrap; text-align: center;
  box-shadow: var(--shadow);
}
.founding-banner .jd { font-size: clamp(30px, 4vw, 46px); font-weight: 900; letter-spacing: .03em; white-space: nowrap; line-height: 1; }
.founding-banner .jd span { color: var(--cyan); }
.founding-banner .sep { width: 2px; height: 52px; background: rgba(255,255,255,.55); }
.founding-banner .txt {
  font-size: clamp(15px, 1.9vw, 23px); font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; line-height: 1.3; text-align: left;
}

/* Contact link rows (CFM-style) */
.contact-sec { padding: 40px 0 10px; }
.contact-sec h2 { font-size: 26px; font-weight: 900; color: #0b1220; margin-bottom: 16px; }
.contact-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.contact-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 4px; border-bottom: 1px solid var(--line);
  color: #16233a; font-size: 14.5px; font-weight: 600; text-decoration: none;
}
.contact-rows .contact-row:nth-child(-n+2) { border-top: 1px solid var(--line); }
.contact-row:hover { color: var(--sky-dark); text-decoration: none; }
.contact-row .lft { display: flex; align-items: center; gap: 12px; }
.contact-row .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }
.contact-row .chev { color: var(--sky); font-weight: 900; font-size: 18px; }

/* Tile grid section */
.tiles-sec { padding: 42px 0 70px; }

@media (max-width: 980px) {
  .contact-rows { grid-template-columns: 1fr; }
  .contact-rows .contact-row:nth-child(-n+2) { border-top: none; }
  .contact-rows .contact-row:first-child { border-top: 1px solid var(--line); }
  .founding-banner .sep { display: none; }
  .founding-banner .txt { text-align: center; }
}
