:root {
  --bg: #f4f3f0;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #5f5b55;
  --line: #ded9d0;
  --accent: #ff7a00;
  --accent-dark: #c95100;
  --accent-soft: #fff0df;
  --green: #ff7a00;
  --dark: #101010;
  --dark-2: #1b1b1b;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ECU Jobs inspired dark performance theme */
:root {
  color-scheme: dark;
  --bg: #070b0e;
  --bg-soft: #0b1115;
  --paper: rgba(15, 23, 28, 0.82);
  --ink: #f6f7f9;
  --muted: #aab4bd;
  --muted-strong: #d5d9de;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 111, 15, 0.42);
  --accent: #ff6a13;
  --accent-dark: #ff8a2a;
  --accent-soft: rgba(255, 106, 19, 0.08);
  --green: #ff6a13;
  --dark: #070b0e;
  --dark-2: #111b21;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 106, 19, 0.18), transparent 30rem),
    radial-gradient(circle at 12% 24%, rgba(255, 106, 19, 0.08), transparent 24rem),
    linear-gradient(180deg, #06090c 0%, #0a1014 42%, #06090c 100%);
  color: var(--ink);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 106, 19, 0.08) 46% 46.3%, transparent 46.3%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 106, 19, 0.05) 62% 62.2%, transparent 62.2%),
    radial-gradient(circle at 50% 0, transparent, rgba(0, 0, 0, 0.38) 68%);
}

main,
section,
header,
footer,
.section-inner,
.hero-inner,
.split,
.grid,
.footer-grid,
.card,
.project-card,
.contact-card,
.contact-copy,
.prose {
  min-width: 0;
}

p {
  color: var(--muted-strong);
}

a {
  text-decoration: none;
}

.site-header {
  top: env(safe-area-inset-top, 0);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 9, 12, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 40px, 1180px);
  min-height: 78px;
}

.brand {
  width: clamp(210px, 23vw, 286px);
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px var(--line-strong), 0 12px 30px rgba(0, 0, 0, 0.34);
}

.brand strong {
  color: #fff;
  font-weight: 900;
}

.brand span {
  color: var(--muted);
}

.nav-links {
  gap: clamp(12px, 1.4vw, 20px);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  border-radius: 0;
  color: #eef1f4;
  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: transparent;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), #ff7b17 52%, var(--accent-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 106, 19, 0.26);
}

.btn,
.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), #ff7b17 52%, var(--accent-dark));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(255, 106, 19, 0.26);
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(255, 106, 19, 0.34);
}

.btn.light,
.btn.ghost,
.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  box-shadow: none;
}

.btn.light:hover,
.btn.ghost:hover,
.btn.secondary:hover {
  border-color: rgba(255, 106, 19, 0.55);
  background: rgba(255, 106, 19, 0.08);
  color: #fff;
  box-shadow: none;
}

.hero {
  display: grid;
  align-items: center;
  min-height: min(690px, calc(100vh - 78px));
  padding: clamp(32px, 4.5vw, 72px) 0 clamp(36px, 4.8vw, 64px);
  overflow: hidden;
  background: transparent;
  color: var(--ink);
}

.hero.compact {
  min-height: 560px;
}

.hero::before {
  display: none;
}

.hero::after {
  position: absolute;
  inset: auto max(20px, calc((100vw - 1180px) / 2)) 8% auto;
  z-index: -1;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 19, 0.16), transparent 68%);
}

.hero > img {
  position: absolute;
  inset: 50% max(20px, calc((100vw - 1180px) / 2)) auto auto;
  z-index: 0;
  width: min(43vw, 540px);
  height: min(52vw, 530px);
  max-height: calc(100% - 72px);
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.52);
}

.hero > img::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100% - 40px, 1180px);
  min-height: auto;
  padding: 0 min(48vw, 610px) 0 0;
}

.hero-inner::after {
  position: absolute;
  right: min(10vw, 120px);
  top: 50%;
  z-index: -1;
  width: min(34vw, 420px);
  height: min(28vw, 330px);
  content: "";
  transform: translateY(-50%) rotate(-10deg);
  border: 1px solid rgba(255, 106, 19, 0.22);
  border-radius: 18px;
  pointer-events: none;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.06;
  font-weight: 900;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 3.55vw, 3.55rem);
}

h1 span {
  color: #ff6a13;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.35vw, 2.5rem);
}

h3 {
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: #dce2e7;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions,
.actions {
  gap: 12px;
}

.hero-contact {
  gap: 14px 28px;
  max-width: 850px;
  margin-top: 24px;
  color: #f3f5f7;
}

.hero-contact span {
  min-height: 36px;
  border-color: var(--line-strong);
  background: rgba(255, 106, 19, 0.08);
  color: #f3f5f7;
  font-size: 0.9rem;
  font-weight: 800;
}

.section-inner {
  width: min(100% - 40px, 1180px);
}

section,
.page-section {
  padding: clamp(64px, 7vw, 112px) 0;
}

.hero-facts {
  width: min(100% - 40px, 1180px);
  gap: 18px;
  margin-top: 0;
  background: transparent;
  box-shadow: none;
}

.fact,
.card,
.project-card,
.contact-card,
.contact-copy,
.prose,
.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(15, 23, 28, 0.82);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.fact,
.card,
.project-card {
  border-top: 1px solid var(--line);
}

.fact strong,
.project-meta strong,
.badge,
.contact-card a {
  color: var(--accent);
}

.fact span,
.card p,
.card li,
.project-card p,
.project-meta span,
.trust-grid span,
.text-block p,
.prose p,
.prose li,
.step p,
.contact-card strong,
.contact-copy p {
  color: var(--muted-strong);
}

.trust-strip {
  padding-top: 28px;
}

.trust-grid {
  gap: 18px;
}

.trust-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.section-head {
  align-items: flex-end;
}

.section-head p {
  color: var(--muted-strong);
}

.media {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 28, 0.82);
  box-shadow: var(--shadow);
}

.media img {
  opacity: 0.96;
}

.band,
.proof-band,
.contact-section {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(4, 9, 12, 0.36);
}

.card.dark {
  background:
    linear-gradient(145deg, rgba(255, 106, 19, 0.12), rgba(255, 255, 255, 0.026)),
    rgba(17, 27, 33, 0.94);
}

.card.dark p,
.card.dark li,
.band .section-head p,
.band .text-block p {
  color: #dce2e7;
}

.card li::before,
.check-list li::before {
  top: 0.18em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  content: "✓";
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.stats {
  gap: 18px;
  background: transparent;
}

.stat {
  padding: 28px;
}

.stat strong {
  color: #fff;
}

.step {
  border-bottom-color: var(--line);
}

.step::before {
  background: var(--accent);
  color: #fff;
}

.badge {
  border: 1px solid rgba(255, 106, 19, 0.36);
  background: rgba(255, 106, 19, 0.07);
}

.notice {
  border-color: rgba(255, 106, 19, 0.26);
  background: rgba(255, 106, 19, 0.055);
  color: #dce2e7;
}

.contact-copy {
  border-color: var(--line-strong);
}

.contact-card li {
  border-top-color: var(--line);
}

.cta {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 106, 19, 0.18), rgba(255, 255, 255, 0.026)),
    rgba(17, 27, 33, 0.94);
  color: var(--ink);
}

.cta .section-inner {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 106, 19, 0.15), transparent 20rem),
    rgba(15, 23, 28, 0.72);
  box-shadow: var(--shadow);
}

.cta p {
  color: #dce2e7;
}

.partner-hero > img {
  width: min(44vw, 590px);
  padding: clamp(14px, 2vw, 24px);
}

.partner-logo-card {
  display: grid;
  gap: 20px;
  align-content: center;
  min-height: 100%;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 111, 15, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 106, 19, 0.11), rgba(255, 255, 255, 0.026)),
    rgba(15, 23, 28, 0.86);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.partner-logo-card a {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
}

.partner-logo-card img {
  width: min(100%, 420px);
  height: auto;
}

.partner-logo-card p {
  margin: 0;
  color: #dce2e7;
}

.partner-package .card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.partner-device img {
  padding: clamp(12px, 2vw, 22px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #05090c;
}

.footer-grid {
  width: min(100% - 40px, 1180px);
}

.footer-grid p,
.footer-grid li {
  color: var(--muted);
}

.footer-bottom {
  width: min(100% - 40px, 1180px);
  color: var(--muted);
}

.content-page {
  background: transparent;
}

.prose a {
  color: var(--accent);
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }
}

@media (max-width: 920px) {
  .nav {
    width: min(100% - 32px, 1180px);
    min-height: 72px;
  }

  .nav-links {
    left: 16px;
    right: 16px;
    top: 72px;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(5, 9, 12, 0.96);
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 106, 19, 0.08);
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero,
  .hero.compact {
    min-height: auto;
    padding-top: 36px;
  }

  .hero > img {
    position: relative;
    inset: auto;
    order: 2;
    width: min(100% - 32px, 680px);
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 10;
    margin: 28px auto 0;
    transform: none;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding-right: 0;
  }

  .hero-inner::after,
  .hero::after {
    display: none;
  }

  .section-inner,
  .hero-facts,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 32px, 1180px);
  }

  .hero-facts {
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: auto;
    max-width: calc(100vw - 96px);
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .hero-actions .btn,
  .actions .btn,
  .btn {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .hero > img {
    width: min(100% - 32px, 560px);
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .contact-copy,
  .contact-card,
  .prose,
  .card,
  .fact,
  .project-card {
    padding: 22px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 122, 0, 0.24);
  background: rgba(9, 9, 9, 0.96);
  color: #fff;
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.7);
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.brand span {
  color: #d6d1cb;
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 6px;
  color: #f0ece7;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 122, 0, 0.16);
  color: #fff;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #111;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta:hover,
.btn:hover {
  background: #ff8f22;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(255, 122, 0, 0.32);
}

.btn.secondary {
  background: var(--dark);
  box-shadow: none;
}

.btn.light {
  background: #fff;
  color: var(--dark);
  box-shadow: none;
}

.btn.light:hover {
  background: #f2eee8;
  color: var(--dark);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.18);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.btn.ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--ink);
  box-shadow: none;
}

.btn:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.5);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero.compact {
  min-height: 520px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--dark);
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.94), rgba(10, 10, 10, 0.7) 47%, rgba(10, 10, 10, 0.2)),
    linear-gradient(0deg, rgba(255, 122, 0, 0.18), rgba(255, 122, 0, 0));
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  align-content: center;
  min-height: inherit;
  padding: 76px 0 92px;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 6.6vw, 6.1rem);
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.25rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #eee7de;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: #efe7dd;
  font-size: 0.94rem;
}

.hero-contact span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: -54px;
  background: rgba(255, 122, 0, 0.22);
  box-shadow: var(--shadow);
}

.fact {
  min-height: 132px;
  padding: 24px;
  background: #fff;
  border-top: 3px solid var(--accent);
}

.fact strong {
  display: block;
  color: var(--accent);
  font-size: 1.02rem;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip {
  padding: 32px 0 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--ink);
}

.trust-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

section,
.page-section {
  padding: 92px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
}

.media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-block p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.07);
}

.card.dark {
  border: 1px solid rgba(255, 122, 0, 0.18);
  background: linear-gradient(180deg, #161616, #0f0f0f);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.card p,
.card li {
  color: var(--muted);
}

.card.dark p,
.card.dark li {
  color: #ded7cf;
}

.card ul,
.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
}

.card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.band {
  background: var(--dark);
  color: #fff;
  border-block: 1px solid rgba(255, 122, 0, 0.18);
}

.band .section-head p,
.band .text-block p {
  color: #d8d0c8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.stat {
  padding: 30px;
  background: var(--dark-2);
  border-top: 3px solid var(--accent);
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: #d8d0c8;
}

.steps {
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-weight: 800;
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
}

.cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #ff7a00, #db5d00);
  color: #111;
}

.cta .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #24150a;
}

.site-footer {
  background: #080808;
  color: #fff;
  padding: 56px 0 28px;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-grid a {
  color: #e8eeea;
  text-decoration: none;
}

.footer-grid p,
.footer-grid li {
  color: #d0cac3;
}

.footer-grid ul {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aaa29a;
  font-size: 0.88rem;
}

.content-page {
  padding: 72px 0 96px;
}

.prose {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.prose h1 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.prose h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.project-list {
  display: grid;
  gap: 16px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(20, 23, 22, 0.08);
  border-top: 3px solid var(--accent);
}

.project-card h3 {
  font-size: 1.45rem;
}

.project-card p {
  margin: 0;
  color: var(--muted);
}

.project-power {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.project-power div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.project-power span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.project-power strong {
  display: block;
  color: var(--accent);
  font-size: 1.02rem;
  line-height: 1.1;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.project-meta span {
  color: var(--muted);
}

.project-meta strong {
  color: var(--accent);
}

.project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.project strong {
  font-size: 1.15rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.notice {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  color: #3b220d;
}

.proof-band {
  padding: 64px 0;
  background: #ebe6dd;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
}

.proof-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-section {
  padding: 88px 0;
  background: #ebe6dd;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.contact-copy,
.contact-card {
  padding: 34px;
  border-radius: var(--radius);
}

.contact-copy {
  background: var(--dark);
  color: #fff;
  border-top: 4px solid var(--accent);
}

.contact-copy p {
  color: #ded7cf;
}

.contact-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.contact-card li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-card strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: #111;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-cta {
    justify-content: flex-start;
    width: 100%;
  }

  .hero,
  .hero.compact {
    min-height: 600px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(6, 6, 6, 0.94), rgba(8, 8, 8, 0.78)),
      linear-gradient(0deg, rgba(255, 122, 0, 0.18), rgba(255, 122, 0, 0));
  }

  .hero-facts,
  .trust-grid,
  .grid.three,
  .grid.two,
  .stats,
  .split,
  .split.reverse,
  .project-grid,
  .proof-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta .section-inner,
  .project {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-facts {
    margin-top: 0;
  }

  .cta .section-inner {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand > span {
    display: block;
  }

  .brand > span > span {
    display: none;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .hero-inner {
    padding: 46px 0 64px;
  }

  h1 {
    font-size: clamp(2.15rem, 13vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.7rem, 10vw, 2.35rem);
  }

  .lead {
    font-size: 1.04rem;
  }

  section,
  .page-section {
    padding: 58px 0;
  }

  .fact,
  .card,
  .prose {
    padding: 22px;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
    gap: 10px;
  }

  .project-meta,
  .contact-card li {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .hero-contact {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero,
  .hero.compact {
    min-height: 560px;
  }

  .section-head {
    gap: 16px;
    margin-bottom: 26px;
  }
}

/* Final theme override: close visual match to ecu-jobs.app */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 106, 19, 0.18), transparent 30rem),
    radial-gradient(circle at 12% 24%, rgba(255, 106, 19, 0.08), transparent 24rem),
    linear-gradient(180deg, #06090c 0%, #0a1014 42%, #06090c 100%);
  color: #f6f7f9;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 106, 19, 0.08) 46% 46.3%, transparent 46.3%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 106, 19, 0.05) 62% 62.2%, transparent 62.2%),
    radial-gradient(circle at 50% 0, transparent, rgba(0, 0, 0, 0.38) 68%);
}

p,
.section-head p,
.text-block p,
.card p,
.card li,
.fact span,
.trust-grid span,
.project-card p,
.project-meta span,
.project-power span,
.step p,
.prose p,
.prose li,
.contact-copy p,
.contact-card strong {
  color: #d5d9de;
}

.site-header {
  top: env(safe-area-inset-top, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 9, 12, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 40px, 1180px);
  min-height: 78px;
}

.brand {
  width: clamp(210px, 23vw, 286px);
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(255, 111, 15, 0.42), 0 12px 30px rgba(0, 0, 0, 0.34);
}

.brand strong {
  color: #fff;
  font-weight: 900;
}

.brand span {
  color: #aab4bd;
}

.nav-links {
  gap: clamp(12px, 1.4vw, 20px);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  border-radius: 0;
  color: #eef1f4;
  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: #ff6a13;
  transition: transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: transparent;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.btn,
.nav-links .nav-cta,
.nav-cta {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6a13, #ff7b17 52%, #ff8a2a);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(255, 106, 19, 0.26);
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(255, 106, 19, 0.34);
}

.btn.light,
.btn.ghost,
.btn.secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  box-shadow: none;
}

.btn.light:hover,
.btn.ghost:hover,
.btn.secondary:hover {
  border-color: rgba(255, 106, 19, 0.55);
  background: rgba(255, 106, 19, 0.08);
  color: #fff;
  box-shadow: none;
}

.hero {
  display: grid;
  align-items: center;
  min-height: min(690px, calc(100vh - 78px));
  padding: clamp(32px, 4.5vw, 72px) 0 clamp(36px, 4.8vw, 64px);
  overflow: hidden;
  background: transparent;
  color: #f6f7f9;
}

.hero.compact {
  min-height: 560px;
}

.hero::before {
  display: none;
}

.hero::after {
  position: absolute;
  inset: auto max(20px, calc((100vw - 1180px) / 2)) 8% auto;
  z-index: -1;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 19, 0.16), transparent 68%);
}

.hero > img {
  position: absolute;
  inset: 50% max(20px, calc((100vw - 1180px) / 2)) auto auto;
  z-index: 0;
  width: min(44vw, 560px);
  height: auto;
  max-height: calc(100% - 72px);
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  object-fit: contain;
  background: rgba(5, 9, 12, 0.9);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.52);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100% - 40px, 1180px);
  min-height: auto;
  padding: 0 min(48vw, 610px) 0 0;
}

.hero-inner::after {
  position: absolute;
  right: min(10vw, 120px);
  top: 50%;
  z-index: -1;
  width: min(34vw, 420px);
  height: min(28vw, 330px);
  content: "";
  transform: translateY(-50%) rotate(-10deg);
  border: 1px solid rgba(255, 106, 19, 0.22);
  border-radius: 18px;
  pointer-events: none;
}

.eyebrow {
  margin-bottom: 14px;
  color: #ff6a13;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  color: #f6f7f9;
  line-height: 1.06;
  font-weight: 900;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 3.55vw, 3.55rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.35vw, 2.5rem);
}

h3 {
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: #dce2e7;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-contact {
  gap: 14px 28px;
  max-width: 850px;
  margin-top: 24px;
  color: #f3f5f7;
}

.hero-contact span {
  min-height: 36px;
  border-color: rgba(255, 111, 15, 0.42);
  background: rgba(255, 106, 19, 0.08);
  color: #f3f5f7;
  font-size: 0.9rem;
  font-weight: 800;
}

.section-inner,
.footer-grid,
.footer-bottom {
  width: min(100% - 40px, 1180px);
}

section,
.page-section {
  padding: clamp(64px, 7vw, 112px) 0;
}

.hero-facts {
  width: min(100% - 40px, 1180px);
  gap: 18px;
  margin-top: 0;
  background: transparent;
  box-shadow: none;
}

.fact,
.card,
.project-card,
.contact-card,
.contact-copy,
.prose,
.stat {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 106, 19, 0.08), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(15, 23, 28, 0.82);
  color: #f6f7f9;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.fact::before,
.card::before,
.project-card::before,
.contact-card::before,
.contact-copy::before,
.prose::before,
.stat::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, #ff6a13, rgba(255, 106, 19, 0.18));
  opacity: 0.72;
  pointer-events: none;
}

.fact,
.card,
.project-card {
  border-top-color: rgba(255, 106, 19, 0.24);
}

.fact strong,
.project-meta strong,
.project-power strong,
.badge,
.contact-card a {
  color: #ff6a13;
}

.trust-grid {
  gap: 18px;
}

.trust-grid div {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 106, 19, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 106, 19, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.03);
}

.trust-grid div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, #ff6a13, rgba(255, 106, 19, 0.18));
  opacity: 0.72;
  pointer-events: none;
}

.media {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 23, 28, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.media img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: rgba(5, 9, 12, 0.9);
}

.band,
.proof-band,
.contact-section {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(4, 9, 12, 0.36);
}

.card.dark {
  border-color: rgba(255, 111, 15, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 106, 19, 0.12), rgba(255, 255, 255, 0.026)),
    rgba(17, 27, 33, 0.94);
}

.card.dark p,
.card.dark li,
.band .section-head p,
.band .text-block p {
  color: #dce2e7;
}

.card li::before,
.check-list li::before {
  top: 0.08em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  content: "✓";
  border: 1px solid rgba(255, 111, 15, 0.42);
  border-radius: 50%;
  background: transparent;
  color: #ff6a13;
  font-size: 0.72rem;
  font-weight: 900;
}

.stats {
  gap: 18px;
  background: transparent;
}

.stat {
  padding: 28px;
}

.stat strong {
  color: #fff;
}

.step {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.step::before {
  background: #ff6a13;
  color: #fff;
}

.badge {
  border: 1px solid rgba(255, 106, 19, 0.36);
  background: rgba(255, 106, 19, 0.07);
}

.notice {
  border-color: rgba(255, 106, 19, 0.26);
  background: rgba(255, 106, 19, 0.055);
  color: #dce2e7;
}

.contact-card li {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.cta {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 106, 19, 0.18), rgba(255, 255, 255, 0.026)),
    rgba(17, 27, 33, 0.94);
  color: #f6f7f9;
}

.cta .section-inner {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 111, 15, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 106, 19, 0.15), transparent 20rem),
    rgba(15, 23, 28, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.cta p {
  color: #dce2e7;
}

.internal-links {
  padding: clamp(44px, 6vw, 76px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.006)),
    rgba(5, 9, 12, 0.72);
}

.internal-links-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.9fr 0.9fr;
  gap: 18px;
}

.internal-links-grid > div {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 106, 19, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 106, 19, 0.08), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(15, 23, 28, 0.74);
}

.internal-links-grid > div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, #ff6a13, rgba(255, 106, 19, 0.18));
  opacity: 0.72;
}

.internal-links h2 {
  margin-bottom: 18px;
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
}

.internal-links ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.internal-links a {
  display: inline-flex;
  align-items: center;
  color: #eef1f4;
  font-weight: 800;
  text-decoration: none;
}

.internal-links a::before {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: #ff6a13;
  content: "";
  flex: 0 0 auto;
}

.internal-links a:hover,
.internal-links a:focus-visible {
  color: #ff8a2a;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #05090c;
}

.footer-grid p,
.footer-grid li,
.footer-bottom {
  color: #aab4bd;
}

.prose a {
  color: #ff6a13;
}

.partner-proof {
  padding-top: 0;
}

.partner-proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 111, 15, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 106, 19, 0.15), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(15, 23, 28, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.partner-proof-panel p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #dce2e7;
}

.partner-logo-link {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.partner-logo-link:hover,
.partner-logo-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 19, 0.65);
  box-shadow: 0 24px 80px rgba(255, 106, 19, 0.18);
}

.partner-logo-link img {
  width: min(100%, 360px);
  height: auto;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }
}

@media (max-width: 920px) {
  .nav {
    width: min(100% - 32px, 1180px);
    min-height: 72px;
  }

  .nav-links {
    left: 16px;
    right: 16px;
    top: 72px;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 9, 12, 0.96);
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 106, 19, 0.08);
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero,
  .hero.compact {
    min-height: auto;
    padding-top: 36px;
  }

  .hero > img {
    position: relative;
    inset: auto;
    order: 2;
    width: min(100% - 32px, 680px);
    height: auto;
    max-height: none;
    margin: 28px auto 0;
    transform: none;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding-right: 0;
  }

  .hero-inner::after,
  .hero::after {
    display: none;
  }

  .section-inner,
  .hero-facts,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 32px, 1180px);
  }

  .partner-proof-panel {
    grid-template-columns: 1fr;
  }

  .internal-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    width: auto;
    max-width: calc(100vw - 96px);
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .hero-actions .btn,
  .actions .btn,
  .btn {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .hero > img {
    width: min(100% - 32px, 560px);
    border-radius: 14px;
  }

  .project-power {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .nav {
    width: min(100% - 32px, 1180px);
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(5, 9, 12, 0.96);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 106, 19, 0.08);
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }
}
