:root {
  --ink: #07090c;
  --ink-soft: #10141a;
  --paper: #f4f0e8;
  --muted: #9ba3ad;
  --line: rgba(244, 240, 232, 0.18);
  --blue: #396cff;
  --blue-bright: #6f92ff;
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 4px; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  height: 106px;
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; color: var(--paper); text-decoration: none; }
.brand-logo { display: block; width: 104px; height: auto; filter: url(#logo-knockout); }
.site-header .brand { transform: translateY(14px); }
.header-actions { display: flex; align-items: center; gap: 34px; }
.desktop-nav { display: flex; align-items: center; gap: 24px; }
.desktop-nav a, .header-mail { position: relative; font-size: .9rem; text-decoration: none; }
.desktop-nav a::after, .header-mail::after { content: ""; position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after, .header-mail:hover::after { transform: scaleX(1); transform-origin: left; }
.header-mail { font-weight: 600; text-decoration: none; }
.language-switch { display: flex; align-items: center; gap: 7px; color: var(--muted); }
.lang-button { padding: 0; color: inherit; background: none; border: 0; font: inherit; cursor: pointer; }
.lang-button.is-active { color: var(--paper); }

.hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100svh;
  padding: 160px max(24px, calc((100vw - var(--max)) / 2)) 46px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  width: 64vw;
  height: 64vw;
  right: -22vw;
  top: -32vw;
  z-index: -2;
  border: 1px solid rgba(89, 122, 255, .28);
  border-radius: 50%;
  box-shadow: 0 0 160px rgba(57, 108, 255, .12);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .45;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25vw 25vw;
  mask-image: linear-gradient(to bottom, transparent 10%, black 55%, transparent 98%);
}
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; color: #c6ccd5; font-size: .78rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.signal-dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 14px var(--blue); }
.hero-title {
  max-width: 1220px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.5rem, 7.8vw, 8.6rem);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .89;
}
.hero-title span { display: block; }
.hero-title .accent { color: var(--blue-bright); }
.hero-bottom { display: grid; grid-template-columns: minmax(280px, 670px) auto; align-items: end; justify-content: space-between; gap: 48px; margin-top: clamp(44px, 7vh, 84px); }
.hero-copy { max-width: 650px; margin: 0; color: #c2c8d0; font-size: clamp(1.05rem, 1.5vw, 1.35rem); }
.hero-cta-row { display: flex; align-items: center; gap: 30px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-width: 220px; padding: 16px 18px; border: 1px solid transparent; text-decoration: none; font-weight: 600; transition: transform .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: white; background: var(--blue); }
.text-link { color: #d4d8de; text-underline-offset: 6px; }
.hero-mark { position: absolute; right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 40%; z-index: -1; color: rgba(255,255,255,.035); font-family: "Manrope", sans-serif; font-size: clamp(10rem, 28vw, 30rem); font-weight: 800; letter-spacing: -.12em; line-height: .7; }
.hero-mark span { color: rgba(57, 108, 255, .08); }

.section-pad { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 140px 0; border-top: 1px solid var(--line); }
.section-label { display: flex; gap: 18px; margin-bottom: 62px; color: var(--muted); font-size: .78rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.section-label span:first-child { color: var(--blue-bright); }
.statement { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; }
.statement-copy { grid-column: 2; }
.statement-copy p { max-width: 1040px; margin: 0 0 34px; font-family: "Manrope", sans-serif; font-size: clamp(2.1rem, 4.4vw, 5.3rem); font-weight: 500; letter-spacing: -.05em; line-height: 1.04; }
.statement-copy .muted { max-width: 800px; margin-left: auto; color: var(--muted); font-family: "DM Sans", sans-serif; font-size: clamp(1.05rem, 1.8vw, 1.5rem); letter-spacing: -.01em; line-height: 1.45; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 330px; padding: 28px 28px 34px; border-right: 1px solid var(--line); }
.service-card:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
.service-card:nth-child(3n) { border-right: 0; }
.service-number { color: var(--blue-bright); font-size: .8rem; }
.service-card h2 { max-width: 260px; margin: 118px 0 18px; font-family: "Manrope", sans-serif; font-size: clamp(1.55rem, 2.2vw, 2.35rem); letter-spacing: -.035em; line-height: 1.05; }
.service-card p { max-width: 330px; margin: 0; color: var(--muted); }

.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; margin-bottom: 54px; }
.section-heading .section-label { margin-bottom: 0; }
.section-heading > p { max-width: 720px; margin: 0; color: #c5cad1; font-family: "Manrope", sans-serif; font-size: clamp(1.3rem, 2.2vw, 2.05rem); letter-spacing: -.025em; line-height: 1.35; }
.work-list { border-top: 1px solid var(--line); }
.work-row { display: grid; grid-template-columns: 70px minmax(260px, 2fr) 1fr 140px; gap: 20px; align-items: center; min-height: 114px; border-bottom: 1px solid var(--line); transition: color .25s ease, background .25s ease, padding .25s ease; }
.work-row:hover { padding-inline: 18px; color: white; background: rgba(57, 108, 255, .08); }
.work-index { color: var(--blue-bright); font-size: .78rem; }
.work-row h2 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(1.45rem, 2.4vw, 2.55rem); font-weight: 500; letter-spacing: -.035em; }
.work-row > span:nth-child(3), .work-row strong { color: var(--muted); font-size: .9rem; font-weight: 500; }
.work-row strong { text-align: right; }
.archive-note { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-top: 92px; }
.archive-note > span { color: var(--blue-bright); font-family: "Manrope", sans-serif; font-size: clamp(8rem, 19vw, 18rem); font-weight: 600; letter-spacing: -.1em; line-height: .68; }
.archive-note p { max-width: 510px; margin: 0 0 3px auto; color: var(--muted); font-size: 1.08rem; }

.fft-section { color: var(--ink); background: var(--paper); overflow: hidden; }
.fft-band { display: flex; justify-content: space-around; width: max-content; min-width: 100%; gap: 50px; padding: 14px 0; color: white; background: #e5262d; font-family: "Manrope", sans-serif; font-size: .76rem; font-weight: 800; letter-spacing: .17em; }
.fft-band span { padding-left: 50px; }
.fft-inner { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 130px 0 140px; }
.fft-section .section-label { color: #656a71; }
.fft-section .section-label span:first-child { color: #e5262d; }
.fft-layout { display: grid; grid-template-columns: minmax(350px, 1.15fr) 1fr; gap: clamp(50px, 8vw, 140px); align-items: center; }
.fft-brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(300px, 35vw, 470px);
  padding: clamp(38px, 6vw, 76px);
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.fft-brand-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 8px; background: #e5262d; }
.fft-brand-card::after { content: ""; position: absolute; right: -70px; bottom: -150px; width: 300px; height: 300px; border: 1px solid rgba(229, 38, 45, .35); border-radius: 50%; }
.fft-logo { position: relative; z-index: 1; display: block; width: min(100%, 660px); height: auto; }
.fft-country { position: relative; z-index: 1; align-self: flex-end; margin-top: 30px; color: #d7d9dd; font-family: "Manrope", sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .28em; }
.fft-copy p { max-width: 660px; margin: 0 0 46px; font-family: "Manrope", sans-serif; font-size: clamp(1.45rem, 2.6vw, 2.8rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.18; }
.fft-links { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button-light { color: white; background: var(--ink); }
.dark-link { color: #3f4349; }
.fft-agency { margin-top: 130px; border-top: 1px solid #c8c8c6; }
.fft-agency-intro { display: grid; grid-template-columns: 1.4fr 1fr; align-items: end; gap: clamp(36px, 8vw, 130px); padding: 74px 0 82px; }
.fft-eyebrow { color: #ad2027; font-size: .77rem; font-weight: 700; letter-spacing: .14em; }
.fft-agency h2 { max-width: 850px; margin: 25px 0 0; font-family: "Manrope", sans-serif; font-size: clamp(2.9rem, 5vw, 6.4rem); font-weight: 600; letter-spacing: -.065em; line-height: 1.02; }
.fft-agency-intro > p { max-width: 490px; margin: 0 0 5px; color: #4f5358; font-size: clamp(1.1rem, 1.45vw, 1.35rem); line-height: 1.55; }
.fft-partners { display: grid; grid-template-columns: 1fr 2.3fr; gap: 40px; padding: 32px 0 42px; border-top: 1px solid #c8c8c6; }
.fft-partners p { max-width: 950px; margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(1rem, 1.3vw, 1.25rem); font-weight: 600; line-height: 1.9; }
.fft-partners p span { padding: 0 5px; color: #bf272f; }
.fft-agency-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #c8c8c6; border-bottom: 1px solid #c8c8c6; }
.fft-agency-card { min-height: 560px; padding: 32px clamp(25px, 4vw, 70px) 52px 0; }
.fft-agency-card + .fft-agency-card { padding-left: clamp(25px, 4vw, 70px); padding-right: 0; border-left: 1px solid #c8c8c6; }
.fft-card-index { color: #ad2027; font-size: .77rem; font-weight: 700; letter-spacing: .12em; }
.fft-agency-card h3 { max-width: 560px; margin: 90px 0 32px; font-family: "Manrope", sans-serif; font-size: clamp(2rem, 3vw, 3.6rem); font-weight: 600; letter-spacing: -.055em; line-height: 1.1; }
.fft-agency-card p { max-width: 600px; margin: 0 0 22px; color: #4f5358; font-size: 1.03rem; line-height: 1.65; }

.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(60px, 10vw, 160px); align-items: end; }
.contact h2 { max-width: 900px; margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(3.5rem, 7vw, 8.4rem); font-weight: 500; letter-spacing: -.07em; line-height: .9; }
.contact-action { padding-bottom: 8px; }
.contact-action p { max-width: 430px; margin: 0 0 24px; color: var(--muted); font-size: 1.08rem; }
.contact-address { max-width: 470px; margin: 0 0 30px; color: #c5cad1; font-style: normal; line-height: 1.65; }
.contact-action a { display: inline-flex; gap: 14px; padding-bottom: 7px; border-bottom: 1px solid var(--paper); font-family: "Manrope", sans-serif; font-size: clamp(1rem, 1.4vw, 1.25rem); font-weight: 600; text-decoration: none; }
.site-footer { border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 160px 1fr 1fr auto; gap: 28px; align-items: center; width: min(calc(100% - 48px), var(--max)); min-height: 148px; margin: 0 auto; color: var(--muted); font-size: .82rem; }
.brand-footer { color: var(--paper); }
.footer-inner a { text-underline-offset: 5px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { width: min(calc(100% - 36px), var(--max)); height: 88px; }
  .brand-logo { width: 82px; }
  .site-header .brand { transform: translateY(12px); }
  .desktop-nav, .header-mail { display: none; }
  .hero { padding-inline: 18px; padding-bottom: 28px; }
  .hero-title { font-size: clamp(3.15rem, 14.5vw, 6.4rem); }
  .hero-bottom { grid-template-columns: 1fr; gap: 30px; }
  .hero-cta-row { flex-wrap: wrap; }
  .hero-mark { display: none; }
  .section-pad { width: calc(100% - 36px); padding: 96px 0; }
  .statement { grid-template-columns: 1fr; }
  .statement-copy { grid-column: 1; }
  .statement-copy .muted { margin-left: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card h2 { margin-top: 68px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .work-row { grid-template-columns: 42px 1fr auto; gap: 12px; min-height: 102px; }
  .work-row > span:nth-child(3) { grid-column: 2; color: #d0d5dc; }
  .work-row strong { grid-column: 3; grid-row: 1 / 3; }
  .work-row h2 { font-size: 1.35rem; }
  .work-row:hover { padding-inline: 8px; }
  .archive-note { grid-template-columns: 1fr; margin-top: 74px; }
  .archive-note p { margin-left: 0; }
  .fft-inner { width: calc(100% - 36px); padding: 92px 0 100px; }
  .fft-layout { grid-template-columns: 1fr; }
  .fft-brand-card { min-height: 260px; padding: 40px 28px; }
  .fft-country { margin-top: 22px; font-size: .7rem; }
  .fft-agency { margin-top: 94px; }
  .fft-agency-intro { grid-template-columns: 1fr; gap: 32px; padding: 58px 0 64px; }
  .fft-agency h2 { font-size: clamp(2.7rem, 9vw, 5rem); }
  .fft-partners { grid-template-columns: 1fr; gap: 20px; }
  .fft-agency-grid { grid-template-columns: 1fr; }
  .fft-agency-card { min-height: 0; padding: 28px 0 45px; }
  .fft-agency-card + .fft-agency-card { padding: 28px 0 45px; border-left: 0; border-top: 1px solid #c8c8c6; }
  .fft-agency-card h3 { margin-top: 54px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-action a { font-size: .95rem; word-break: break-word; }
  .footer-inner { grid-template-columns: 1fr 1fr; width: calc(100% - 36px); padding: 40px 0; }
  .brand-footer { grid-column: 1 / -1; }
  .footer-inner p:nth-of-type(2) { text-align: right; }
  .footer-inner a { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
