/* TAZ Connect — standalone landing page.
   Shares the TAZ design tokens (Inter, pill buttons, red accent) with the main
   site, plus a Connect-specific coral accent taken from the TAZ Connect logo. */

:root {
  --taz-blue: #164a9b;
  --taz-red: #e31f2f;
  --taz-red-2: #b91523;
  --connect: #f85060;
  --connect-2: #d8394a;
  --ink: #111827;
  --ink-deep: #0a0f18;
  --panel: #131b26;
  --muted: #64748b;
  --muted-light: #9aa8bd;
  --line: #dbe3ee;
  --line-dark: rgba(255, 255, 255, 0.12);
  --soft: #f4f7fb;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; }
img { max-width: 100%; }

::selection { background: var(--connect); color: #fff; }

/* ---------------------------------------------------------------- nav ---- */

.site-nav {
  padding: 16px 0;
  background: rgba(10, 15, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 180ms ease, background 180ms ease;
}

.site-nav.is-scrolled {
  padding: 9px 0;
  background: rgba(10, 15, 24, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.brand-lockup { display: flex; align-items: center; gap: 14px; }
.brand-lockup .brand-connect { width: 152px; height: auto; }
.brand-lockup .brand-sep { width: 1px; height: 26px; background: rgba(255, 255, 255, 0.22); }
.brand-lockup .brand-taz { width: 62px; height: auto; opacity: 0.85; }

.site-nav .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 14px;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus { color: #fff; }

.nav-cta,
.btn-primary {
  --bs-btn-bg: var(--connect);
  --bs-btn-border-color: var(--connect);
  --bs-btn-hover-bg: var(--connect-2);
  --bs-btn-hover-border-color: var(--connect-2);
  --bs-btn-active-bg: var(--connect-2);
  --bs-btn-active-border-color: var(--connect-2);
  border-radius: 999px;
  font-weight: 800;
}

.btn-light, .btn-outline-light, .btn-outline-primary {
  border-radius: 999px;
  font-weight: 800;
}

.btn-outline-primary {
  --bs-btn-color: var(--connect);
  --bs-btn-border-color: var(--connect);
  --bs-btn-hover-bg: var(--connect);
  --bs-btn-hover-border-color: var(--connect);
  --bs-btn-hover-color: #fff;
}

.btn-lg { padding: 13px 30px; }

/* mobile off-canvas */
.nav-toggler {
  display: none;
  position: fixed;
  top: 14px;
  right: 16px;
  z-index: 1080;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(10, 15, 24, 0.9);
  backdrop-filter: blur(12px);
  padding: 0 12px;
}

.nav-toggler-bar {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 160ms ease;
}

.nav-toggler.is-open .nav-toggler-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggler.is-open .nav-toggler-bar:nth-child(2) { opacity: 0; }
.nav-toggler.is-open .nav-toggler-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(5, 9, 16, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-nav-backdrop.is-open { opacity: 1; visibility: visible; }

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1070;
  width: min(330px, 86vw);
  padding: 86px 26px 32px;
  background: var(--ink-deep);
  border-left: 1px solid var(--line-dark);
  transform: translateX(102%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-nav-panel.is-open { transform: translateX(0); }

.mobile-nav-panel a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav-panel a:hover { color: var(--connect); }
.mobile-nav-panel .mobile-nav-cta { margin-top: 22px; color: #fff; text-align: center; border: 0; }

/* -------------------------------------------------------------- hero ---- */

.tc-hero {
  position: relative;
  background: var(--ink-deep);
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) 0 clamp(60px, 7vw, 104px);
}

.tc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 620px at 88% 42%, rgba(248, 80, 96, 0.22), transparent 62%),
    radial-gradient(760px 520px at 8% 0%, rgba(22, 74, 155, 0.24), transparent 66%);
  pointer-events: none;
}

.tc-hero .container { position: relative; z-index: 2; }

.tc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 7px 15px;
  border: 1px solid rgba(248, 80, 96, 0.42);
  border-radius: 999px;
  background: rgba(248, 80, 96, 0.1);
  color: #ffb3bb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tc-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--connect);
  box-shadow: 0 0 0 0 rgba(248, 80, 96, 0.7);
  animation: tc-pulse 2.4s infinite;
}

@keyframes tc-pulse {
  70% { box-shadow: 0 0 0 9px rgba(248, 80, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(248, 80, 96, 0); }
}

.tc-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.tc-hero h1 .accent { color: var(--connect); }

.tc-hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  line-height: 1.68;
}

.tc-hero-tagline {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tc-hero-visual {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.tc-hero-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }

.tc-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
}

.tc-hero-stats div { background: rgba(255, 255, 255, 0.035); padding: 22px 20px; }
.tc-hero-stats strong { display: block; color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; line-height: 1; }
.tc-hero-stats span { display: block; margin-top: 8px; color: rgba(255, 255, 255, 0.6); font-size: 0.84rem; font-weight: 600; }

/* ------------------------------------------------------------ sections -- */

.section-pad { padding: clamp(62px, 8vw, 110px) 0; }
.bg-soft { background: var(--soft); }
.bg-ink { background: var(--ink-deep); color: rgba(255, 255, 255, 0.78); }

.section-heading { max-width: 760px; margin: 0 auto clamp(38px, 5vw, 62px); text-align: center; }
.section-heading.text-start { margin-left: 0; text-align: left; }

.eyebrow {
  margin-bottom: 14px;
  color: var(--connect);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
  margin-bottom: 16px;
}

.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; line-height: 1.7; margin: 0; }
.bg-ink .section-heading h2 { color: #fff; }
.bg-ink .section-heading p:not(.eyebrow) { color: rgba(255, 255, 255, 0.66); }

/* verticals strip */
.vertical-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.vertical-chip {
  display: block;
  color: var(--ink);
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.vertical-chip i { font-size: 1.5rem; color: var(--taz-blue); }
.vertical-chip strong { display: block; margin-top: 12px; font-size: 1rem; font-weight: 800; }
.vertical-chip span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.8rem; }

.vertical-chip:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09); }

.vertical-chip.is-new {
  border-color: var(--connect);
  background: linear-gradient(180deg, rgba(248, 80, 96, 0.08), rgba(248, 80, 96, 0.02));
}

.vertical-chip.is-new i { color: var(--connect); }

.vertical-chip .badge-new {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--connect);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* pillars 01..05 */
.pillar-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }

.pillar-card {
  position: relative;
  padding: 28px 22px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pillar-card:hover { transform: translateY(-6px); border-color: rgba(248, 80, 96, 0.4); box-shadow: 0 26px 54px rgba(15, 23, 42, 0.1); }

.pillar-num {
  display: block;
  margin-bottom: 16px;
  color: rgba(248, 80, 96, 0.45);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pillar-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.pillar-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.66; margin: 0; }

/* why-now list */
.why-list { list-style: none; margin: 0; padding: 0; }

.why-list li {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.why-list li:last-child { border-bottom: 0; }
.why-list i { flex: none; margin-top: 2px; color: var(--connect); font-size: 1.3rem; }
.why-list strong { display: block; font-size: 1.2rem; font-weight: 800; margin-bottom: 5px; }
.why-list p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.66; }

.media-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.media-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* operators */
.operator-card {
  height: 100%;
  padding: 34px 30px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.operator-name {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}

.operator-card h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin: 14px 0 10px; }
.operator-card p:not(.operator-name) { color: rgba(255, 255, 255, 0.64); font-size: 0.95rem; line-height: 1.68; margin: 0; }

.operator-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(248, 80, 96, 0.14);
  border: 1px solid rgba(248, 80, 96, 0.34);
  color: #ffb3bb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* capacity numbers */
.capacity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.capacity-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  text-align: center;
}

.capacity-card .big {
  display: block;
  color: var(--connect);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.capacity-card p { margin: 12px 0 0; color: var(--muted); font-size: 0.95rem; font-weight: 600; line-height: 1.6; }

.photo-mosaic { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.photo-mosaic figure { margin: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; }
.photo-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.photo-mosaic figure:hover img { transform: scale(1.06); }

/* execution steps */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.step-card {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--connect);
  color: #fff;
  font-weight: 800;
}

.step-card h3 { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { color: rgba(255, 255, 255, 0.62); font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* advantages */
.adv-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }

.adv-card {
  flex: 1 1 380px;
  max-width: calc(33.333% - 14px);
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.adv-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1); }
.adv-card i { font-size: 1.6rem; color: var(--connect); }
.adv-card h3 { font-size: 1.2rem; font-weight: 800; margin: 14px 0 8px; }
.adv-card p { color: var(--muted); line-height: 1.65; margin: 0; font-size: 0.95rem; }

/* closing CTA */
.tc-cta {
  position: relative;
  padding: clamp(60px, 8vw, 104px) 0;
  background: var(--ink-deep);
  overflow: hidden;
}

.tc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 460px at 78% 20%, rgba(248, 80, 96, 0.26), transparent 62%),
    radial-gradient(620px 420px at 10% 90%, rgba(22, 74, 155, 0.24), transparent 66%);
}

.tc-cta .container { position: relative; z-index: 2; }
.tc-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.tc-cta p:not(.tc-eyebrow) { color: rgba(255, 255, 255, 0.72); font-size: 1.08rem; line-height: 1.7; }

.cta-contact { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 28px; }

.cta-contact a, .cta-contact span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.cta-contact a:hover { color: var(--connect); }
.cta-contact i { color: var(--connect); }

/* footer */
.site-footer { background: #070b12; color: rgba(255, 255, 255, 0.62); padding: 58px 0 26px; }
.site-footer h2 { color: #fff; font-size: 0.84rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { display: block; padding: 5px 0; color: rgba(255, 255, 255, 0.62); font-size: 0.95rem; }
.site-footer a:hover { color: var(--connect); }
.site-footer p { line-height: 1.7; font-size: 0.95rem; }
.footer-logo { width: 150px; margin-bottom: 18px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.84rem;
}

/* reveal-on-scroll — matches the main site's motion language */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .tc-eyebrow .dot { animation: none; }
  .photo-mosaic img { transition: none; }
}

/* ---------------------------------------------------------- responsive -- */

@media (max-width: 1199.98px) {
  .vertical-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pillar-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .adv-card { max-width: calc(50% - 10px); }
}

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse { display: none !important; }
  .nav-toggler { display: block; }
  .photo-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tc-hero-visual { margin-top: 42px; max-height: 420px; }
  .pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .vertical-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillar-grid { grid-template-columns: 1fr; }
  .adv-card { max-width: 100%; }
  .tc-hero-stats { grid-template-columns: 1fr; }
  .brand-lockup .brand-connect { width: 128px; }
  .brand-lockup .brand-sep, .brand-lockup .brand-taz { display: none; }
}

/* --------------------------------------------------- language switch ---- */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.lang-btn {
  padding: 5px 11px;
  border: none;
  background: transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
}

.lang-btn.is-active { background: var(--connect); color: #fff; }

a.lang-btn:not(.is-active):hover,
a.lang-btn:not(.is-active):focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-lang { margin-bottom: 22px; }

/* footer address block keeps the muted body tier, not the link tier */
.site-footer .footer-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-bottom a { display: inline; color: rgba(255, 255, 255, 0.62); }
.footer-bottom a:hover { color: var(--connect); }
