:root {
  --background: 220 8% 94%;
  --foreground: 220 26% 4%;
  --primary: 220 28% 8%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 10% 92%;
  --secondary-foreground: 220 18% 10%;
  --muted: 220 10% 95%;
  --muted-foreground: 220 12% 20%;
  --accent: 210 40% 42%;
  --accent-strong: 210 28% 70%;
  --border: 220 5% 28%;
  --surface: 0 0% 99%;
  --surface-strong: 220 12% 93%;
  --surface-light: 0 0% 100%;
  --shadow-sm: 0 8px 20px -14px rgb(15 23 42 / 0.18);
  --shadow: 0 26px 56px -36px rgb(15 23 42 / 0.24);
  --shadow-md: 0 34px 72px -44px rgb(15 23 42 / 0.28);
  --font-sans: "IBM Plex Sans", sans-serif;
  --font-serif: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.7;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  background-image:
    radial-gradient(circle at 10% 10%, hsl(var(--accent) / 0.08), transparent 60%),
    radial-gradient(circle at 85% 20%, hsl(var(--accent-strong) / 0.12), transparent 60%),
    radial-gradient(circle at 30% 90%, hsl(var(--primary) / 0.08), transparent 65%),
    linear-gradient(160deg, hsl(var(--background)), hsl(var(--background)));
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.page {
  padding: 40px 16px;
}

.shell {
  max-width: 1040px;
  margin: 0 auto;
  background: hsl(var(--surface) / 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: none;
  border-radius: 28px;
  box-shadow: 0 40px 80px -60px rgb(0 0 0 / 0.7);
  padding: 40px 24px 32px;
  position: relative;
  overflow: hidden;
}

.shell::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 280px;
  height: 280px;
  background: conic-gradient(from 120deg, hsl(var(--accent) / 0.18), transparent 65%);
  opacity: 0.5;
  transform: rotate(-12deg);
  pointer-events: none;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid hsl(var(--border) / 0.6);
}

.brand {
  display: flex;
  flex-direction: column;
}

.logo {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: hsl(var(--primary));
}

.tagline {
  font-family: var(--font-mono);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 8px 16px;
  border-radius: 999px;
  background: hsl(var(--secondary) / 0.95);
  border: 1px solid hsl(var(--border) / 0.8);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.nav a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: hsl(var(--primary));
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-top: 40px;
}

.hero {
  display: grid;
  gap: 32px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-content {
  display: grid;
  gap: 24px;
  animation: riseIn 0.9s ease both;
}

.hero-intro {
  display: grid;
  gap: 16px;
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.2);
  background: hsl(var(--surface-light) / 0.98);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--primary) / 0.85);
  box-shadow: var(--shadow-sm);
}

.badge-icon {
  display: inline-flex;
  width: 12px;
  height: 12px;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.4rem, 7vw, 5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: hsl(var(--primary));
  line-height: 0.9;
}

.hero-role {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(220 60% 25%);
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.hero-summary {
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid hsl(var(--accent) / 0.6);
  color: hsl(var(--muted-foreground));
  max-width: 760px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.hero-stats div {
  border-radius: 18px;
  border: 1px solid hsl(var(--border) / 0.6);
  padding: 14px 16px;
  background: hsl(var(--surface-light) / 0.96);
}

.stat-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: hsl(var(--primary));
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 200;
  text-transform: none;
  letter-spacing: normal;
  color: hsl(var(--muted-foreground));
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 20px;
  animation: riseIn 1.1s ease both;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  filter: blur(0);
}

.hero-visual::before {
  width: 180px;
  height: 180px;
  background: hsl(var(--accent) / 0.3);
  top: -20px;
  right: 10px;
  animation: drift 16s ease-in-out infinite;
}

.hero-visual::after {
  width: 140px;
  height: 140px;
  background: hsl(var(--primary) / 0.08);
  bottom: -10px;
  left: 20px;
  animation: drift 20s ease-in-out infinite reverse;
}

.portrait-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.6);
  box-shadow: var(--shadow-md);
  background: hsl(var(--surface-strong));
}

.portrait-frame--hero {
  width: 150px;
  height: 180px;
  flex: 0 0 auto;
  margin-left: auto;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid hsl(var(--border) / 0.6);
  padding: 20px 22px;
  background: hsl(var(--surface-light) / 0.98);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.hero-card h3 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--primary));
}

.hero-card p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: hsl(var(--muted-foreground));
  font-size: 19px;
  line-height: 1.6;
}

.hero-card li strong {
  color: hsl(var(--primary));
}

.motion-strip {
  padding: 16px 0;
  border-top: 1px solid hsl(var(--border) / 0.6);
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  overflow: hidden;
  background: linear-gradient(90deg, hsl(var(--accent) / 0.16), hsl(var(--surface-light) / 0.5), hsl(var(--accent) / 0.12));
}

.motion-track {
  display: inline-flex;
  gap: 48px;
  padding-left: 24px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: hsl(var(--muted-foreground));
}

.impact-gallery {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.impact-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--surface-strong));
  min-height: 320px;
  display: grid;
}

.impact-card--wide {
  height: 240px;
  min-height: 240px;
}

@media (max-width: 720px) {
  .impact-card--wide {
    height: auto;
    min-height: 0;
  }

  .impact-hero + .impact-gallery,
  .feature-grid + .impact-hero,
  .impact-gallery + .feature-grid {
    margin-top: 0;
  }
}

.impact-hero + .impact-gallery {
  margin-top: -80px;
}

.feature-grid + .impact-hero {
  margin-top: -80px;
}

.impact-gallery + .feature-grid {
  margin-top: -80px;
}

.impact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-card figcaption {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: hsl(var(--surface-light) / 0.98);
  border: 1px solid hsl(var(--border) / 0.6);
  box-shadow: var(--shadow-sm);
}

.impact-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--primary));
}

.impact-card p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.impact-card.offset {
  transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid hsl(var(--border));
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button.primary {
  background: linear-gradient(120deg, hsl(var(--primary)), hsl(var(--accent)));
  color: hsl(var(--primary-foreground));
  border-color: transparent;
  box-shadow: 0 18px 35px -18px hsl(var(--primary) / 0.6);
}

.button.ghost {
  background: transparent;
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.4);
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.button.primary:hover {
  filter: brightness(1.04);
}

.button.ghost:hover {
  background: hsl(var(--primary) / 0.08);
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: hsl(var(--primary));
  background: hsl(var(--surface-light));
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.icon-button:hover {
  transform: translateY(-1px);
  background: hsl(var(--primary) / 0.08);
}

.icon-button img {
  height: 100%;
  width: auto;
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
  background: hsl(var(--surface-light) / 0.98);
  border: 1px solid hsl(var(--border) / 0.6);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(120deg, hsl(var(--accent)), hsl(var(--accent-strong)));
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgb(0 0 0 / 0.35), rgb(0 0 0 / 0.1));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card--strategy,
.feature-card--commercial {
  color: hsl(var(--primary-foreground));
}

.feature-card--strategy::after,
.feature-card--commercial::after {
  opacity: 1;
}

.feature-card--strategy {
  background-image:
    linear-gradient(160deg, rgb(0 0 0 / 0.35), rgb(0 0 0 / 0.12)),
    url("./images/data-center.jpg");
  background-size: cover;
  background-position: center;
  border-color: transparent;
}

.feature-card--commercial {
  background-image:
    linear-gradient(160deg, rgb(0 0 0 / 0.35), rgb(0 0 0 / 0.12)),
    url("./images/network-cable.jpg");
  background-size: cover;
  background-position: center;
  border-color: transparent;
}

.feature-card--strategy .feature-icon,
.feature-card--commercial .feature-icon {
  color: hsl(var(--primary-foreground));
}

.feature-card--strategy .text-link,
.feature-card--commercial .text-link {
  color: hsl(var(--primary-foreground));
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: hsl(var(--primary) / 0.55);
}

.feature-card h2 {
  margin: 0;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 19px;
}

.feature-card p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.text-link {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--primary) / 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link svg {
  width: 14px;
  height: 14px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: hsl(var(--border) / 0.2);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: linear-gradient(160deg, rgb(7 13 22 / 0.45), rgb(7 13 22 / 0.1));
  display: grid;
  place-items: center;
  cursor: pointer;
  color: hsl(var(--primary-foreground));
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.video-thumb::before {
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.85);
  box-shadow: 0 12px 24px -12px rgb(15 23 42 / 0.6);
  position: absolute;
}

.video-thumb::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid hsl(var(--primary-foreground));
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: absolute;
  margin-left: 4px;
}

.video-thumb span {
  position: relative;
  margin-top: 84px;
}

.achievements {
  display: grid;
  gap: 24px;
  background: hsl(212 36% 93% / 0.96);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  padding-bottom: 12px;
}

.section-header--webinars {
  border-bottom: none;
  padding-bottom: 16px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.section-title h3 {
  margin: 0;
}

.webinars .section-title h3 {
  font-size: 18px;
}

.faq .section-title h3 {
  font-size: 18px;
}

.section-icon {
  width: 18px;
  height: 18px;
  color: hsl(var(--primary) / 0.6);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--muted-foreground));
}

.section-label--emea {
  font-size: 18px;
  font-weight: 700;
}

.achievement-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.achievement-visual {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 10px 10px 4px;
}

.achievement-target {
  position: relative;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 12px solid hsl(var(--primary) / 0.95);
  display: grid;
  place-items: center;
  background: hsl(210 34% 96%);
  box-shadow: inset 0 0 0 24px hsl(211 28% 88%), 0 20px 45px -28px hsl(var(--primary) / 0.45);
}

.achievement-target::before {
  content: "";
  position: absolute;
  width: 132px;
  height: 7px;
  background: hsl(2 82% 52%);
  top: 50%;
  left: 50%;
  transform-origin: 0 50%;
  transform: translate(0, -50%) rotate(-42deg);
  border-radius: 999px;
  z-index: 4;
}

.achievement-target::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 16px;
  background: hsl(2 82% 52%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  top: 50%;
  left: 50%;
  transform-origin: 0 50%;
  transform: translate(-1px, -50%) rotate(-42deg);
  z-index: 5;
}

.achievement-target span {
  position: absolute;
  border-radius: 50%;
}

.achievement-target span:nth-child(1) {
  width: 140px;
  height: 140px;
  border: 10px solid hsl(var(--accent-strong));
}

.achievement-target span:nth-child(2) {
  width: 88px;
  height: 88px;
  border: 8px solid hsl(var(--primary) / 0.9);
}

.achievement-target span:nth-child(3) {
  width: 28px;
  height: 28px;
  background: hsl(var(--primary));
}

.achievement-total {
  display: grid;
  justify-items: center;
  gap: 2px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(212 26% 38%);
}

.achievement-total strong {
  font-size: 32px;
  letter-spacing: 0.04em;
  color: hsl(var(--primary));
}

.achievement-total span {
  font-size: 12px;
}

.achievement-list {
  display: grid;
  gap: 16px;
  position: relative;
  padding-left: 14px;
}

.achievement-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 4px;
  width: 1px;
  background: linear-gradient(180deg, hsl(var(--accent) / 0.45), hsl(var(--border)));
}

.achievement-item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.achievement-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 8px;
  border: 2px solid hsl(var(--primary));
  background: hsl(var(--surface-light));
  position: relative;
  z-index: 1;
}

.achievement-copy h4 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1.1;
  color: hsl(var(--primary));
}

.achievement-copy h4 .amount {
  font-family: var(--font-mono);
  font-size: 24px;
  margin-right: 8px;
  letter-spacing: 0.02em;
}

.achievement-copy p {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
}

.image-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.6);
  box-shadow: var(--shadow-sm);
}

.image-panel img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(35%) brightness(0.78) contrast(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--background) / 0.55);
}

.image-caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: hsl(var(--surface-light) / 0.98);
  border: 1px solid hsl(var(--border));
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.graphic-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.graphic-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid hsl(var(--border) / 0.6);
  overflow: hidden;
  background: hsl(var(--surface-light) / 0.98);
  box-shadow: var(--shadow-sm);
  display: grid;
}

.graphic-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.82) contrast(1.05);
}

.graphic-card .graphic-copy {
  padding: 20px 22px;
  display: grid;
  gap: 10px;
}

.graphic-card h3 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--primary));
}

.graphic-card p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.graphic-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: hsl(var(--foreground));
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.graphic-card.highlight {
  background: linear-gradient(135deg, hsl(var(--accent) / 0.22), hsl(var(--surface-light) / 0.98));
}

.graphic-card.highlight .graphic-copy {
  padding-top: 28px;
}

.profile {
  display: grid;
  gap: 24px;
  background: linear-gradient(160deg, hsl(var(--surface-light)), hsl(var(--surface-strong)));
  border-radius: 28px;
  padding: 32px;
  border: none;
  box-shadow:
    var(--shadow-md),
    inset 0 0 0 1px hsl(var(--border) / 0.55);
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.profile::before {
  content: "";
  position: absolute;
  inset: -140px auto auto -160px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle, hsl(var(--accent) / 0.3), transparent 65%),
    radial-gradient(circle at 70% 30%, hsl(var(--accent-strong) / 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.profile::after {
  content: "";
  position: absolute;
  inset: auto -180px -160px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, hsl(var(--primary) / 0.2), transparent 65%),
    radial-gradient(circle at 30% 70%, hsl(var(--accent) / 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.profile > * {
  position: relative;
  z-index: 1;
}

.profile-header {
  position: relative;
}

.profile-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -14px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--border) / 0.7), transparent);
}

.profile-header {
  display: grid;
  gap: 10px;
  position: relative;
}

.profile-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  margin: 8px 0 0;
}

.accent-bar {
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.8);
}

.profile-summary {
  background: hsl(var(--surface-light) / 0.98);
  border-radius: 22px;
  border: 1px solid hsl(var(--border) / 0.6);
  border-left: 4px solid hsl(var(--accent));
  padding: 22px 24px;
  font-family: var(--font-sans);
  font-size: 17px;
  color: hsl(var(--foreground));
  line-height: 1.7;
  max-width: 780px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.profile-card {
  border-radius: 24px;
  border: 1px solid hsl(var(--border) / 0.6);
  padding: 26px;
  background: hsl(var(--surface-light) / 0.98);
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.profile-card--top {
  align-content: start;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(120deg, hsl(var(--accent)), hsl(var(--accent-strong)));
}

.card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: hsl(var(--primary));
}

.card-title svg {
  width: 16px;
  height: 16px;
}

.card-title--hobbies {
  margin-top: 26px;
}

.profile-card--communication .card-title--hobbies {
  margin-top: 28px;
}

.card-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--primary));
  margin-top: 10px;
}

.profile-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: hsl(var(--muted-foreground));
  font-size: 15px;
  font-family: var(--font-mono);
  line-height: 1.6;
}

.profile-card .hobbies-list {
  gap: 6px;
}

.profile-card li strong {
  color: hsl(var(--primary));
}

.profile-card ul.split li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid hsl(var(--border));
  padding-bottom: 8px;
}

.career {
  display: grid;
  gap: 16px;
}

.timeline {
  display: grid;
  gap: 18px;
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: hsl(var(--border));
}

.timeline-item {
  position: relative;
  border-radius: 24px;
  border: 1px solid hsl(var(--border) / 0.6);
  padding: 24px 24px 24px 28px;
  background: hsl(var(--surface-light) / 0.98);
  box-shadow: var(--shadow-sm);
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
  z-index: 3;
}

.timeline-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, hsl(210 70% 92%), hsl(0 0% 100%) 60%),
    radial-gradient(circle at 15% 20%, hsl(var(--accent) / 0.18), transparent 55%),
    radial-gradient(circle at 85% 10%, hsl(var(--accent-strong) / 0.14), transparent 45%),
    radial-gradient(circle at 80% 80%, hsl(var(--primary) / 0.12), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.timeline-item > * {
  position: relative;
  z-index: 1;
}


.timeline-dot {
  display: none;
}

.timeline-item.current .timeline-dot {
  background: hsl(var(--primary));
}

.timeline-heading {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.timeline-heading h4 {
  margin: 0;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 240px;
  font-size: 16px;
  flex-wrap: nowrap;
}

.company-logo {
  height: 22px;
  width: auto;
  max-width: 84px;
  object-fit: contain;
  margin-right: 0;
}

.company-name {
  display: inline-block;
  font-size: 18px !important;
  font-weight: 600;
  line-height: 1;
  margin-left: 0;
  transform: translateX(-90px);
  white-space: nowrap;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
}

.company-name--wide {
  transform: translateX(-5px);
}

.company-name--avaya {
  transform: translateX(-100px);
}

.company-logo--lg {
  height: 42px;
  max-width: 180px;
}

.company-logo--xl {
  height: 52px;
  max-width: 220px;
  margin-right: 6px;
}

.company-logo--graia {
  margin-left: -12px;
}

.timeline-heading span {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--muted-foreground));
}

.timeline-role {
  font-family: var(--font-mono);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--primary) / 0.85);
  margin: 8px 0;
  font-weight: 700;
}

.timeline-item p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-style: italic;
}

.timeline-item .timeline-text {
  font-style: normal;
  margin-top: 6px;
}

.timeline-item .timeline-text:first-of-type {
  margin-top: 0;
}

.timeline-points {
  margin: 10px 0 0;
  padding-left: 18px;
  color: hsl(var(--muted-foreground));
  font-size: 17px;
  line-height: 1.5;
}

.timeline-points li::marker {
  color: hsl(220 60% 25%);
}

.timeline-points li {
  margin: 6px 0;
}

.education {
  display: grid;
  gap: 16px;
}

.faq {
  display: grid;
  gap: 24px;
}

.section-separator {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0 4px;
}

.section-separator span {
  width: min(520px, 78%);
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(var(--border)), hsl(var(--accent)), hsl(var(--border)), transparent);
  box-shadow: 0 6px 16px -10px hsl(var(--accent) / 0.8);
}

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

.faq-item {
  border-radius: 20px;
  border: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--surface-light) / 0.98);
  padding: 14px 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 16px;
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 12px 0 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.education-card {
  border-radius: 24px;
  border: 1px solid hsl(var(--border) / 0.6);
  padding: 20px;
  background: hsl(var(--surface-light) / 0.98);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.school {
  font-weight: 700;
  margin-bottom: 6px;
}

.degree {
  color: hsl(var(--muted-foreground));
  font-size: 13px;
}

.contact {
  display: grid;
  gap: 24px;
}

.contact-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  margin: 8px 0 8px;
}

.contact-intro p {
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 20px;
  border-radius: 24px;
  border: 1px solid hsl(var(--border) / 0.6);
  padding: 28px;
  background: hsl(var(--surface-light) / 0.98);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--muted-foreground));
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid hsl(var(--border) / 0.8);
  background: transparent;
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: hsl(var(--foreground));
}

.contact-form textarea {
  border: 1px solid hsl(var(--border) / 0.8);
  border-radius: 18px;
  padding: 12px 16px;
  resize: vertical;
}

.form-status {
  margin: 4px 0 0;
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--muted-foreground));
}

.form-status.is-success {
  color: hsl(140 45% 32%);
}

.form-status.is-error {
  color: hsl(0 70% 38%);
}

.contact-form .button {
  justify-self: start;
}

.contact-link {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--muted-foreground));
}

.contact-link a {
  color: hsl(var(--primary));
}

.site-footer {
  padding-top: 32px;
  border-top: 1px solid hsl(var(--border) / 0.6);
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  .shell {
    padding: 40px 40px 32px;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  main {
    gap: 56px;
    padding-top: 28px;
  }

  .page {
    padding: 24px 12px;
  }

  .shell {
    padding: 28px 16px 24px;
    border-radius: 20px;
  }

  .site-header {
    padding-bottom: 20px;
    gap: 16px;
  }

  .logo {
    font-size: 30px;
    letter-spacing: 0.05em;
  }

  .tagline {
    font-size: 12px;
    letter-spacing: 0.12em;
    line-height: 1.4;
  }

  .nav {
    padding: 8px 12px;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
    justify-content: flex-start;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
  }

  .hero-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.6rem);
  }

  .portrait-frame--hero {
    width: 120px;
    height: 150px;
    margin-left: 0;
  }

  .hero-summary {
    padding-left: 12px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-role {
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    padding: 12px 16px;
  }

  .hero-actions .icon-button {
    flex: 0 0 auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-label {
    font-size: 14px;
    letter-spacing: normal;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-label {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .feature-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .achievement-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-visual {
    justify-items: start;
    padding: 0;
  }

  .achievement-target {
    width: 160px;
    border-width: 9px;
    box-shadow: inset 0 0 0 17px hsl(211 28% 88%), 0 18px 32px -26px hsl(var(--primary) / 0.45);
  }

  .achievement-target::before {
    width: 98px;
    height: 5px;
  }

  .achievement-target::after {
    width: 16px;
    height: 12px;
    transform: translate(-1px, -50%) rotate(-42deg);
  }

  .achievement-target span:nth-child(1) {
    width: 98px;
    height: 98px;
    border-width: 7px;
  }

  .achievement-target span:nth-child(2) {
    width: 60px;
    height: 60px;
    border-width: 5px;
  }

  .achievement-target span:nth-child(3) {
    width: 18px;
    height: 18px;
  }

  .achievement-total {
    justify-items: start;
  }

  .achievement-total strong {
    font-size: 24px;
  }

  .achievement-list {
    gap: 12px;
    padding-left: 12px;
  }

  .achievement-item {
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 10px;
  }

  .achievement-dot {
    width: 10px;
    height: 10px;
    margin-top: 6px;
  }

  .achievement-copy h4 {
    font-size: 20px;
    line-height: 1.2;
  }

  .achievement-copy h4 .amount {
    display: block;
    font-size: 20px;
    margin-right: 0;
    margin-bottom: 2px;
  }

  .achievement-copy p {
    font-size: 16px;
    line-height: 1.45;
  }

  .feature-card,
  .profile,
  .profile-card,
  .achievements,
  .contact-form {
    padding: 20px;
  }

  .timeline-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .timeline {
    gap: 12px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    border-radius: 18px;
    padding: 18px;
  }

  .timeline-heading h4 {
    min-width: 0;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 15px;
  }

  .timeline-heading span {
    margin-left: 0;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .company-logo {
    height: 18px;
    max-width: 72px;
  }

  .company-logo--lg {
    height: 30px;
    max-width: 128px;
  }

  .company-logo--xl {
    height: 36px;
    max-width: 146px;
    margin-right: 0;
  }

  .company-logo--graia {
    margin-left: 0;
  }

  .company-name,
  .company-name--wide,
  .company-name--avaya {
    transform: none;
    font-size: 15px !important;
    white-space: normal;
    line-height: 1.2;
  }

  .timeline-role {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .timeline-points {
    padding-left: 16px;
    font-size: 14px;
  }

  .motion-track {
    animation-duration: 26s;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .impact-card {
    min-height: 0;
    height: auto;
    display: block;
  }

  .impact-card.offset {
    transform: translateY(0);
  }

  .impact-card--wide {
    min-height: 0;
    height: auto;
  }

  .impact-card img {
    display: block;
    height: 180px;
    min-height: 180px;
    object-fit: cover;
  }

  .impact-card figcaption {
    position: static;
    margin: -18px 12px 12px;
    padding: 20px 16px 14px;
    border-radius: 16px;
  }

  .impact-card h3 {
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 0.09em;
  }

  .impact-card p {
    font-size: 16px;
    line-height: 1.45;
  }

  .video-thumb::before {
    width: 56px;
    height: 56px;
  }

  .video-thumb::after {
    border-left-width: 14px;
    border-top-width: 9px;
    border-bottom-width: 9px;
  }

  .video-thumb span {
    margin-top: 72px;
  }

  .faq-item {
    padding: 12px 14px;
  }

  .faq-item summary {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .faq-item ul {
    margin: 12px 0 0;
    padding-left: 18px;
    color: hsl(var(--muted-foreground));
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-form .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .page {
    padding: 16px 8px;
  }

  .shell {
    padding: 22px 12px 20px;
    border-radius: 18px;
  }

  main {
    gap: 44px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-actions .icon-button {
    margin-top: 2px;
  }

  .achievement-layout {
    gap: 16px;
  }

  .achievement-list {
    padding-left: 10px;
  }

  .achievement-copy h4 {
    font-size: 18px;
  }

  .achievement-copy h4 .amount {
    font-size: 18px;
  }

  .achievement-copy p {
    font-size: 15px;
  }

  .impact-card figcaption {
    margin: -14px 10px 10px;
    padding: 16px 14px 12px;
  }

  .impact-card p {
    font-size: 15px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes riseIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(12px) translateX(-8px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-track,
  .hero-content,
  .hero-visual,
  .hero-visual::before,
  .hero-visual::after {
    animation: none;
  }
}
