:root {
  --orange: #fc7215;
  --orange-dark: #d95b08;
  --ink: #0a0a0a;
  --navy: #1b2d51;
  --paper: #f5f2ed;
  --muted: #6b6b6b;
  --line: #dedbd5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Source Sans Pro", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }
em { color: var(--orange); font-style: normal; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(24px, 4vw, 72px);
  background: rgba(0, 0, 0, .96);
  color: #fff;
  backdrop-filter: blur(16px);
}
.cyber-logo img { width: 200px; height: auto; }
.site-header nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 700;
}
.site-header nav a, .footer-top a { transition: color .2s ease; }
.site-header nav a:hover, .site-header nav a:focus-visible, .footer-top a:hover { color: var(--orange); }
.header-contact {
  padding: 11px 19px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease;
}
.header-contact:hover, .header-contact:focus-visible { background: var(--orange); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  min-height: calc(100vh - 78px);
  background: radial-gradient(circle at 20% 0%, rgba(252, 114, 21, .18), transparent 30%), #050505;
  color: #fff;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) clamp(30px, 7vw, 120px);
}
.eyebrow, .section-label {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.eyebrow span { width: 26px; height: 3px; background: var(--orange); }
.hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(52px, 6.3vw, 96px);
  font-weight: 900;
  line-height: .98;
}
.hero h1 em, .origin h2 em, .services h2 em, .proof h2 em, .final-cta h2 em { display: block; }
.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: #d5d5d5;
  font-size: clamp(20px, 1.65vw, 27px);
  line-height: 1.4;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 31px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  transition: all .2s ease;
}
.button-primary { background: var(--orange); color: #fff; }
.button-primary:hover, .button-primary:focus-visible { border-color: var(--orange); background: transparent; color: var(--orange); }
.button-secondary { border-color: #555; color: #fff; }
.button-secondary:hover, .button-secondary:focus-visible { border-color: #fff; }
.hero-note { max-width: 580px; margin-bottom: 0; color: #a7a7a7; font-size: 15px; }
.hero-image { position: relative; min-height: 690px; margin: 0; overflow: hidden; background: #1c1c1c; }
.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, .42), transparent 27%), linear-gradient(0deg, rgba(0, 0, 0, .75), transparent 38%);
  content: "";
}
.hero-image > img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-image figcaption {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 35px;
  left: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .35);
}
.hero-image figcaption span { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.hero-image figcaption strong { max-width: 300px; color: #fff; font-size: 14px; text-align: right; }

.statement { padding: clamp(75px, 9vw, 140px) clamp(30px, 9vw, 150px); background: var(--orange); color: #fff; }
.statement p { margin-bottom: 16px; font-size: 18px; font-weight: 700; }
.statement h2 {
  max-width: 1200px;
  margin-bottom: 0;
  font-size: clamp(38px, 5.2vw, 78px);
  font-weight: 900;
  line-height: 1.06;
}
.section-shell { padding: clamp(80px, 9vw, 140px) clamp(30px, 8vw, 130px); }
.origin { background: #fff; }
.origin .section-label, .services .section-label, .proof .section-label { margin-bottom: 32px; }
.origin-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(50px, 8vw, 130px); }
.origin h2, .services h2, .proof h2, .final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.06;
}
.origin-copy p { color: #404040; font-size: clamp(18px, 1.5vw, 23px); line-height: 1.55; }
.origin-highlight {
  margin-top: 35px;
  padding: 22px 0 0 26px;
  border-top: 2px solid var(--ink);
  border-left: 5px solid var(--orange);
  color: var(--ink) !important;
  font-weight: 800;
}

.roles { display: grid; grid-template-columns: 1fr 1fr; }
.role-card { min-height: 530px; padding: clamp(60px, 7vw, 110px); }
.role-card > span { display: block; margin-bottom: 65px; font-size: 13px; font-weight: 900; letter-spacing: .15em; }
.role-card h2 { margin-bottom: 23px; font-size: clamp(42px, 4.5vw, 68px); font-weight: 900; }
.role-card p { max-width: 620px; font-size: 21px; }
.role-giulia { background: var(--navy); color: #fff; }
.role-giulia > span { color: #83b4ff; }
.role-giulia img { width: min(100%, 470px); margin-top: 50px; }
.role-team { background: var(--paper); }
.role-team > span { color: var(--orange); }
.role-team strong {
  display: block;
  margin-top: 45px;
  color: var(--orange-dark);
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.services { background: #0b0b0b; color: #fff; }
.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 80px;
}
.services-head > p { max-width: 480px; margin-bottom: 0; color: #aaa; font-size: 20px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #383838; border-left: 1px solid #383838; }
.service-card { min-height: 335px; padding: 38px 30px; border-right: 1px solid #383838; border-bottom: 1px solid #383838; }
.service-card > span { display: block; margin-bottom: 65px; color: var(--orange); font-size: 13px; font-weight: 900; }
.service-card h3 { margin-bottom: 18px; font-size: 25px; line-height: 1.15; }
.service-card p { margin-bottom: 0; color: #aaa; font-size: 17px; }

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .8fr);
  gap: clamp(60px, 8vw, 140px);
  padding: clamp(85px, 9vw, 140px) clamp(30px, 8vw, 130px);
  background: #fff;
}
.proof-copy > p { max-width: 710px; margin: 30px 0 35px; color: #4b4b4b; font-size: 20px; }
.proof-copy > a {
  display: inline-flex;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
  color: var(--orange-dark);
  font-weight: 900;
}
.stats { border-top: 1px solid var(--line); }
.stat { display: grid; grid-template-columns: 1fr auto; align-items: end; padding: 24px 0; border-bottom: 1px solid var(--line); }
.stat span { grid-row: 1 / span 2; align-self: center; font-weight: 900; }
.stat strong { color: var(--orange); font-size: clamp(42px, 5vw, 72px); line-height: 1; }
.stat small { color: var(--muted); text-align: right; }

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: clamp(60px, 9vw, 150px);
  padding: clamp(85px, 9vw, 140px) clamp(30px, 8vw, 130px);
  background: var(--navy);
  color: #fff;
}
.final-copy > p { margin-bottom: 30px; color: #d7dfef; font-size: 21px; }
.final-copy .button-primary:hover, .final-copy .button-primary:focus-visible { background: #fff; border-color: #fff; color: var(--navy); }
.final-copy small { display: block; margin-top: 15px; color: #aebbd2; }

footer { padding: 55px clamp(30px, 5vw, 80px) 30px; background: #000; color: #fff; }
.footer-top { display: grid; grid-template-columns: 250px 1fr auto; align-items: center; gap: 40px; padding-bottom: 45px; }
.footer-top img { width: 220px; height: auto; }
.footer-top p { margin-bottom: 0; color: #aaa; }
.footer-top a { color: var(--orange); font-weight: 900; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 30px;
  padding-top: 25px;
  border-top: 1px solid #292929;
  color: #8f8f8f;
  font-size: 13px;
}
.footer-legal a { color: #ccc; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr .82fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .origin-grid, .services-head, .proof, .final-cta { gap: 55px; }
}
@media (max-width: 800px) {
  body { font-size: 17px; }
  .site-header { min-height: 70px; padding: 10px 20px; }
  .cyber-logo img { width: 160px; }
  .header-contact { padding: 8px 13px; font-size: 12px; }
  .hero { display: flex; min-height: 0; flex-direction: column; }
  .hero-copy { padding: 70px 26px 55px; }
  .hero h1 { font-size: clamp(48px, 13vw, 68px); }
  .hero-image { min-height: 650px; order: -1; }
  .hero-image::after { background: linear-gradient(0deg, rgba(5, 5, 5, .88), transparent 55%); }
  .origin-grid, .roles, .services-head, .proof, .final-cta { grid-template-columns: 1fr; }
  .role-card { min-height: 0; }
  .role-card > span { margin-bottom: 35px; }
  .services-head { margin-bottom: 55px; }
  .proof { gap: 60px; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .site-header { grid-template-columns: 1fr; }
  .header-contact { display: none; }
  .cyber-logo img { width: 150px; }
  .hero-image { min-height: 510px; }
  .hero-image figcaption { right: 22px; bottom: 22px; left: 22px; display: block; }
  .hero-image figcaption strong { display: block; margin-top: 8px; text-align: left; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .statement, .section-shell, .proof, .final-cta { padding-right: 24px; padding-left: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card > span { margin-bottom: 35px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
