:root {
  --color-blue: #24478f;
  --color-blue-950: #06152f;
  --color-blue-900: #0a2251;
  --color-blue-800: #15356f;
  --color-blue-100: #dfe9fa;
  --color-gold: #d4a821;
  --color-gold-700: #a77d16;
  --color-copper: #c7772b;
  --color-steel: #758398;
  --color-mist: #edf2f8;
  --color-paper: #f7f4ee;
  --color-ink: #111827;
  --color-muted: #637083;
  --color-white: #ffffff;
  --shadow-deep: 0 28px 90px rgba(6, 21, 47, 0.28);
  --shadow-soft: 0 18px 54px rgba(6, 21, 47, 0.12);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    linear-gradient(115deg, rgba(212, 168, 33, 0.08) 0 18%, transparent 18% 100%),
    linear-gradient(90deg, rgba(36, 71, 143, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 21, 47, 0.06) 1px, transparent 1px),
    var(--color-paper);
  background-size: auto, 74px 74px, 74px 74px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 18%, rgba(212, 168, 33, 0.16), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(36, 71, 143, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: var(--progress, 0%);
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), #f5d870, var(--color-blue));
  box-shadow: 0 0 20px rgba(212, 168, 33, 0.52);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(212, 168, 33, 0.2);
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(168px, 18vw, 252px);
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--color-blue-900);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::before {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-copper));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: clamp(680px, 88vh, 940px);
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
}

.hero-media,
.hero-shade,
.hero-grid,
.hero-scan {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-graphic {
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(6, 21, 47, 0.98) 0 42%, rgba(10, 34, 81, 0.94) 42% 63%, rgba(212, 168, 33, 0.18) 63% 100%),
    var(--color-blue-950);
  transform: scale(1.03);
  animation: heroDrift 28s ease-in-out infinite alternate;
}

.hero-graphic::before,
.hero-graphic::after,
.graphic-line {
  position: absolute;
  display: block;
  content: "";
}

.hero-graphic::before {
  inset: -18% auto auto -8%;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(212, 168, 33, 0.25);
  transform: rotate(18deg);
}

.hero-graphic::after {
  right: -12vw;
  bottom: -8vw;
  width: 54vw;
  aspect-ratio: 1.25;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  clip-path: polygon(14% 0, 100% 0, 84% 100%, 0 100%);
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-deep);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 47, 0.08), rgba(6, 21, 47, 0.62)),
    linear-gradient(90deg, rgba(212, 168, 33, 0.12), transparent 45%);
  content: "";
}

.hero-photo-main {
  right: clamp(22px, 7vw, 112px);
  top: clamp(96px, 17vh, 164px);
  width: min(44vw, 620px);
  aspect-ratio: 1.38;
  background-image: url("assets/taleron-hero-park.jpg");
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.hero-photo-industrial {
  right: clamp(260px, 35vw, 560px);
  bottom: clamp(84px, 13vh, 148px);
  width: min(25vw, 340px);
  aspect-ratio: 1.08;
  background-image: url("assets/taleron-hero-industrial.jpg");
  clip-path: polygon(0 0, 100% 10%, 90% 100%, 0 88%);
}

.hero-photo-energy {
  right: clamp(34px, 8vw, 126px);
  bottom: clamp(42px, 7vh, 84px);
  width: min(26vw, 380px);
  aspect-ratio: 1.58;
  background-image: url("assets/taleron-hero-energy.jpg");
  clip-path: polygon(8% 0, 100% 0, 100% 86%, 0 100%);
}

.graphic-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 33, 0.95), rgba(255, 255, 255, 0.55), transparent);
  transform-origin: right;
}

.graphic-line-one {
  top: 24%;
  right: 8%;
  width: 52%;
  transform: rotate(-10deg);
}

.graphic-line-two {
  top: 54%;
  right: 0;
  width: 46%;
  transform: rotate(14deg);
}

.graphic-line-three {
  top: 73%;
  right: 16%;
  width: 34%;
  transform: rotate(-5deg);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 21, 47, 0.98) 0%, rgba(6, 21, 47, 0.9) 42%, rgba(6, 21, 47, 0.26) 78%, rgba(6, 21, 47, 0.52) 100%),
    linear-gradient(0deg, rgba(6, 21, 47, 0.82) 0%, rgba(6, 21, 47, 0) 50%);
}

.hero-grid {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(212, 168, 33, 0.1) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, black 0%, black 56%, transparent 92%);
  opacity: 0.52;
}

.hero-scan {
  z-index: 3;
  height: 34%;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 33, 0.24) 49%, transparent 52%);
  opacity: 0.32;
  animation: scanMove 8s linear infinite;
}

.hero-vision-map {
  position: absolute;
  right: clamp(20px, 5vw, 88px);
  bottom: clamp(96px, 14vh, 180px);
  z-index: 4;
  width: clamp(240px, 30vw, 430px);
  aspect-ratio: 1.55;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(6, 21, 47, 0.28);
  background-size: 34px 34px;
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
  opacity: 0.86;
}

.hero-vision-map::before,
.hero-vision-map::after {
  position: absolute;
  content: "";
}

.hero-vision-map::before {
  inset: 14px;
  border: 1px solid rgba(212, 168, 33, 0.34);
  clip-path: polygon(0 0, 86% 0, 100% 22%, 100% 100%, 14% 100%, 0 78%);
}

.hero-vision-map::after {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 4px;
  background: var(--color-gold);
  box-shadow: 0 0 20px rgba(212, 168, 33, 0.58);
}

.map-node,
.map-route {
  position: absolute;
  display: block;
}

.map-node {
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-gold);
  background: var(--color-blue-900);
  box-shadow: 0 0 18px rgba(212, 168, 33, 0.62);
  transform: rotate(45deg);
}

.node-tech { top: 22%; left: 18%; }
.node-energy { top: 26%; right: 24%; }
.node-space { bottom: 22%; left: 30%; }
.node-capital { right: 16%; bottom: 30%; }

.map-route {
  height: 1px;
  background: linear-gradient(90deg, transparent, #f4d56c, var(--color-gold), transparent);
  transform-origin: left;
  animation: routePulse 2.8s ease-in-out infinite;
}

.route-one { top: 30%; left: 21%; width: 55%; transform: rotate(6deg); }
.route-two { top: 49%; left: 31%; width: 46%; transform: rotate(-26deg); animation-delay: 0.5s; }
.route-three { bottom: 31%; left: 34%; width: 50%; transform: rotate(10deg); animation-delay: 1.1s; }

.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--max-width));
  min-height: inherit;
  margin: 0 auto;
  padding: 112px 0 92px;
}

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

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--color-white);
  font-size: clamp(4.2rem, 12vw, 10.7rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2.1vw, 1.46rem);
  line-height: 1.45;
}

.vision-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 660px;
  margin-top: 24px;
}

.vision-tags span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px 7px 25px;
  border: 1px solid rgba(212, 168, 33, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 850;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.vision-tags span::before {
  position: absolute;
  left: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  content: "";
  transform: rotate(45deg);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #f2d064, var(--color-gold));
  color: var(--color-blue-950);
  box-shadow: 0 0 32px rgba(212, 168, 33, 0.26);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--color-white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(54px, 9vh, 96px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof span {
  position: relative;
  padding-left: 28px;
}

.hero-proof span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--color-gold);
  content: "";
}

.snapshot {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - 40px, var(--max-width));
  margin: -64px auto 0;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 33, 0.3);
  background:
    linear-gradient(115deg, rgba(212, 168, 33, 0.18), transparent 26%),
    linear-gradient(180deg, var(--color-blue-900), var(--color-blue-950));
  box-shadow: var(--shadow-deep);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}

.snapshot::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  content: "";
}

.snapshot-item {
  min-height: 138px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.snapshot-item:last-child {
  border-right: 0;
}

.snapshot-item span {
  display: block;
  color: var(--color-white);
  font-size: clamp(1.45rem, 3vw, 2.24rem);
  font-weight: 950;
  line-height: 1;
}

.snapshot-item p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.section {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: clamp(84px, 10vw, 132px) 0;
}

.intro-section,
.vision-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.section h2,
.focus-band h2,
.contact-section h2 {
  margin: 0;
  color: var(--color-blue-950);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-text,
.vision-copy {
  position: relative;
  padding: 26px 0 26px clamp(22px, 4vw, 36px);
  color: #344054;
  font-size: 1.08rem;
}

.intro-text::before,
.vision-copy::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-blue));
  content: "";
}

.intro-text p,
.vision-copy p {
  margin: 0;
}

.principle-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.principle-list span {
  position: relative;
  padding: 13px 14px 13px 36px;
  border: 1px solid rgba(36, 71, 143, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: var(--color-blue-950);
  font-weight: 900;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.principle-list span::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.intro-photo-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 16px;
  margin-top: -28px;
}

.intro-photo {
  min-height: clamp(190px, 28vw, 330px);
  border: 1px solid rgba(36, 71, 143, 0.14);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-soft);
}

.intro-photo-one {
  background-image:
    linear-gradient(90deg, rgba(6, 21, 47, 0.34), rgba(6, 21, 47, 0.08)),
    url("assets/taleron-hero-industrial.jpg");
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.intro-photo-two {
  background-image:
    linear-gradient(120deg, rgba(212, 168, 33, 0.14), rgba(6, 21, 47, 0.22)),
    url("assets/taleron-hero-park.jpg");
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.intro-photo-note {
  align-self: start;
  justify-self: end;
  margin-top: -54px;
  padding: 10px 14px;
  border: 1px solid rgba(212, 168, 33, 0.42);
  background: var(--color-blue-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.section-heading {
  max-width: 740px;
  margin-bottom: 42px;
}

.pillars-section {
  position: relative;
}

.pillars-section::before {
  position: absolute;
  inset: 8% -6vw auto auto;
  z-index: -1;
  width: 42vw;
  height: 56%;
  border: 1px solid rgba(212, 168, 33, 0.22);
  content: "";
  transform: skewX(-18deg);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 0.76fr) minmax(0, 1fr);
  min-height: 330px;
  border: 1px solid rgba(36, 71, 143, 0.16);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pillar-card:hover,
.company-card:hover {
  border-color: rgba(212, 168, 33, 0.44);
  box-shadow: 0 20px 60px rgba(6, 21, 47, 0.16);
  transform: translateY(-2px);
}

.pillar-visual {
  position: relative;
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.pillar-visual::before,
.pillar-visual::after {
  position: absolute;
  content: "";
}

.pillar-visual::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 47, 0.08), rgba(6, 21, 47, 0.66)),
    linear-gradient(120deg, rgba(212, 168, 33, 0.22), transparent 56%);
}

.pillar-visual::after {
  right: 0;
  bottom: 28px;
  width: 74%;
  height: 4px;
  background: var(--color-gold);
}

.visual-industry { background-image: url("assets/pillar-industry-thumb.jpg"); }
.visual-energy { background-image: url("assets/pillar-energy-thumb.jpg"); }
.visual-estate { background-image: url("assets/pillar-real-estate-thumb.jpg"); }
.visual-investment { background-image: url("assets/pillar-investments-thumb.jpg"); }

.pillar-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 330px;
  padding: 30px;
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--color-gold-700);
  font-size: 0.8rem;
  font-weight: 950;
}

.pillar-number::after {
  width: 44px;
  height: 2px;
  background: var(--color-gold);
  content: "";
}

.pillar-card h3,
.company-card h3 {
  margin: 0;
  color: var(--color-blue-950);
  font-size: 1.34rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.pillar-card p,
.company-card p {
  margin: 14px 0 0;
  color: var(--color-muted);
}

.company-section {
  padding-top: 0;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.company-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 318px;
  padding: 24px;
  border: 1px solid rgba(36, 71, 143, 0.15);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(237, 242, 248, 0.64)),
    var(--color-white);
  transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.company-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
  content: "";
}

.company-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(36, 71, 143, 0.12);
  content: "";
  transform: rotate(23deg);
}

.company-card-wide {
  grid-column: span 12;
  min-height: 210px;
}

.company-logo {
  display: flex;
  align-items: center;
  min-height: 66px;
  margin-bottom: 24px;
}

.company-logo img {
  width: auto;
  max-width: min(220px, 100%);
  max-height: 66px;
  object-fit: contain;
}

.company-card a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: var(--color-blue);
  font-weight: 900;
}

.company-card a::after {
  color: var(--color-gold-700);
  content: " ->";
}

.focus-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto clamp(82px, 10vw, 128px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(212, 168, 33, 0.3);
  background:
    linear-gradient(120deg, rgba(212, 168, 33, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(237, 242, 248, 0.78));
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
}

.focus-band::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-blue));
  content: "";
}

.focus-graphic {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 21, 47, 0.18), rgba(6, 21, 47, 0.68)),
    url("assets/taleron-hero-energy.jpg");
  background-position: center;
  background-size: 38px 38px, 38px 38px, auto, cover;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.focus-graphic::before,
.focus-graphic::after,
.focus-graphic span {
  position: absolute;
  display: block;
  content: "";
}

.focus-graphic::before {
  inset: 16% 12%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  transform: skewX(-16deg);
}

.focus-graphic::after {
  right: 13%;
  bottom: 18%;
  width: 48%;
  height: 4px;
  background: var(--color-gold);
}

.focus-graphic span {
  left: 16%;
  width: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
}

.focus-graphic span:nth-child(1) { top: 32%; }
.focus-graphic span:nth-child(2) { top: 50%; left: 24%; }
.focus-graphic span:nth-child(3) { top: 68%; left: 12%; }

.focus-band p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #344054;
  font-size: 1.08rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(212, 168, 33, 0.16), transparent 34%),
    linear-gradient(180deg, var(--color-blue-900), var(--color-blue-950));
  color: var(--color-white);
}

.contact-section::before {
  position: absolute;
  inset: auto -12vw -20vw auto;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  transform: rotate(24deg);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: clamp(30px, 8vw, 96px);
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 108px) 0;
}

.contact-section h2 {
  color: var(--color-white);
}

.contact-lead {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: var(--color-gold);
}

.company-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.company-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 64px);
  background: var(--color-blue-950);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--color-white);
  font-weight: 850;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1%, -1%, 0);
  }
}

@keyframes scanMove {
  from {
    transform: translateY(-40%);
  }

  to {
    transform: translateY(260%);
  }
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.18;
  }

  45% {
    opacity: 0.95;
  }
}

@media (max-width: 1060px) {
  .pillar-card {
    grid-template-columns: 1fr;
  }

  .pillar-visual {
    min-height: 220px;
  }

  .pillar-content {
    min-height: auto;
  }
}

@media (max-width: 960px) {
  .snapshot,
  .vision-section,
  .pillar-grid,
  .intro-section,
  .focus-band,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .snapshot {
    margin-top: 0;
    width: 100%;
    clip-path: none;
  }

  .snapshot-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .snapshot-item:last-child {
    border-bottom: 0;
  }

  .company-card,
  .company-card-wide {
    grid-column: span 6;
  }

  .hero-photo-main {
    width: min(58vw, 560px);
    opacity: 0.78;
  }

  .hero-photo-industrial,
  .hero-photo-energy,
  .hero-vision-map {
    opacity: 0.48;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
  }

  .main-nav {
    align-self: stretch;
    width: calc(100vw - 40px);
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 18px;
    font-size: 0.76rem;
  }

  .main-nav a {
    min-width: 0;
    text-align: left;
  }

  .hero {
    min-height: 690px;
  }

  .hero-photo-main {
    top: auto;
    right: -80px;
    bottom: 36px;
    width: 420px;
    opacity: 0.36;
  }

  .hero-photo-industrial,
  .hero-photo-energy,
  .hero-vision-map {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 21, 47, 0.96) 0%, rgba(6, 21, 47, 0.88) 58%, rgba(6, 21, 47, 0.54) 100%);
  }

  .hero-grid {
    mask-image: none;
    opacity: 0.32;
  }

  .hero-inner {
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 78px 16px 88px;
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.35;
    overflow-wrap: normal;
  }

  .hero-lead {
    width: 100%;
    max-width: 335px;
    font-size: 1.03rem;
    overflow-wrap: normal;
  }

  .vision-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 340px;
  }

  .vision-tags span {
    width: 100%;
    min-height: 31px;
    padding: 6px 10px 6px 22px;
    font-size: 0.78rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .intro-photo-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .intro-photo-two {
    display: none;
  }

  .intro-photo-note {
    justify-self: start;
    margin-top: -38px;
    margin-left: 14px;
  }

  .pillar-content,
  .company-card {
    padding: 22px;
  }

  .company-card,
  .company-card-wide {
    grid-column: span 12;
  }

  .contact-inner,
  .section,
  .focus-band {
    width: min(100% - 32px, var(--max-width));
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
