/*
Theme Name: Hacer Topay
Theme URI: https://www.hacertopay.com
Author: ovien.dev
Author URI: https://ovien.dev
Description: Performans odaklı dijital reklam ve büyüme danışmanlığı teması.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: hacertopay
*/

/* ==========================================================================
   Hacer Topay — Ana Sayfa Prototip
   ========================================================================== */

:root {
  --accent: #007FFF;
  --ink: #010a1b;
  --bg: #f1f1f1;
  --white: #fff;
  --muted-1: #444c66;
  --muted-2: #5a6178;
  --muted-3: #9aa0b4;
  --font: 'Rubik', sans-serif;
  --container: 1340px;
  --nav-max: 1500px;
  --section-x: clamp(18px, 4vw, 44px);
  --reveal-dist: 46px;
  --reveal-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --play: running;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* WP adds .page to body on static front page — do not inherit shell overflow. */
body.page {
  position: static;
  overflow-x: hidden;
  overflow-y: auto;
  width: auto;
}

body.is-menu-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

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

img {
  max-width: 100%;
  height: auto;
}

/* --- Keyframes --- */
@keyframes marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqR {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

@keyframes spinR {
  from { transform: rotate(360deg); }
  to { transform: rotate(0); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes glow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.9; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* --- Page Shell --- */
div.page {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(0, 127, 255, 0.16), transparent 55%),
    radial-gradient(90% 60% at -10% 20%, rgba(0, 127, 255, 0.10), transparent 50%);
}

.atmosphere__grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(#010a1b08 1px, transparent 1px),
    linear-gradient(90deg, #010a1b08 1px, transparent 1px);
  background-size: 64px 64px;
}

.section {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-x);
  padding-right: var(--section-x);
}

.section--flush {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* --- Utilities --- */
.text-accent {
  color: var(--accent);
}

.icon {
  display: block;
  width: 1.3em;
  height: 1.3em;
}

.icon--inline {
  display: inline-flex;
  vertical-align: -0.15em;
}

.icon--sm {
  width: 1.1em;
  height: 1.1em;
}

.icon--footer {
  display: inline-flex;
  vertical-align: -0.12em;
}

.two-col {
  display: grid;
}

.two-col--intro {
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.two-col--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.two-col--2 {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.two-col--footer {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-grid--process {
  gap: 20px;
  margin-top: 44px;
}

/* --- Reveal (GSAP initial state) --- */
.rev {
  opacity: 0;
  will-change: opacity, transform;
}

.rev.is-visible {
  opacity: 1;
}

/* --- Buttons --- */
.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  border-radius: 11px;
  transition: background 0.25s ease;
}

.btn-pri:hover {
  background: var(--ink) !important;
}

.btn-out {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border: 1.5px solid rgba(1, 10, 27, 0.2);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.btn-out:hover {
  background: var(--ink) !important;
  color: var(--white) !important;
  border-color: var(--ink) !important;
}

/* --- Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 16px var(--section-x);
}

.nav-pill {
  max-width: var(--nav-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(1, 10, 27, 0.08);
  border-radius: 18px;
  padding: 22px 16px 22px 24px;
  transition:
    padding 0.38s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.38s ease,
    background 0.38s ease;
}

.nav-pill.is-scrolled {
  padding: 10px 14px 10px 18px;
  box-shadow: 0 14px 44px -20px rgba(1, 10, 27, 0.5);
}

.nav-logo-link {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: height 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-pill.is-scrolled .nav-logo {
  height: 34px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navlink {
  position: relative;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
}

.navlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navlink:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  font-size: 16px;
  padding: 17px 28px;
  transition:
    background 0.25s ease,
    padding 0.38s cubic-bezier(0.2, 0.8, 0.2, 1),
    font-size 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-pill.is-scrolled .nav-cta {
  font-size: 14px;
  padding: 12px 20px;
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  background: var(--ink);
  color: var(--white);
  border-radius: 11px;
  cursor: pointer;
  font-size: 20px;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--ink);
  color: var(--white);
  display: none;
  flex-direction: column;
  padding: 26px clamp(18px, 5vw, 44px);
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__logo {
  height: 28px;
  width: auto;
  display: block;
}

.mobile-menu__close {
  width: 46px;
  height: 46px;
  border: none;
  background: #1a2440;
  color: var(--white);
  border-radius: 11px;
  font-size: 20px;
  cursor: pointer;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 50px;
}

.mobile-menu__link {
  font-weight: 800;
  font-size: clamp(34px, 9vw, 52px);
  letter-spacing: -0.03em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu__cta {
  margin-top: auto;
  text-align: center;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: 18px;
  border-radius: 14px;
  font-size: 17px;
}

/* --- Hero --- */
.hero {
  padding-top: 170px;
  padding-bottom: 40px;
}

.hero-h1 {
  text-align: center;
  margin: 22px 0 0;
  font-weight: 900;
  font-size: clamp(58px, 11.5vw, 176px);
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 680px;
  margin: 48px auto 0;
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  color: var(--muted-1);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
}

.hero-actions .btn-pri {
  gap: 10px;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: 13px;
}

.hero-actions .btn-out {
  gap: 10px;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: 13px;
}

/* --- Wordmark Band --- */
.wordmark-band {
  padding: 24px 0 6px;
  margin-top: 10px;
}

.wordmark-band__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  transform: rotate(-3deg);
  animation: marq 30s linear infinite;
  animation-play-state: var(--play, running);
}

.wordmark-band__item {
  font-weight: 900;
  font-size: clamp(70px, 15vw, 220px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.wordmark-band__item--outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}

.wordmark-band__item--accent {
  color: var(--accent);
}

/* --- Trusted Strip --- */
.trusted {
  margin-top: 60px;
}

.trusted__label {
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.trusted__brands {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 5vw, 64px);
  opacity: 0.62;
}

.trusted__brand {
  font-weight: 800;
  font-size: clamp(17px, 2.4vw, 24px);
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* --- Intro / Manifesto --- */
.intro {
  margin-top: 130px;
}

.intro__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
}

.intro__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.intro__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 10, 27, 0.45), transparent 38%);
}

.intro__heading {
  margin: 0;
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.intro__text {
  margin: 28px 0 0;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  color: var(--muted-1);
  max-width: 620px;
  font-weight: 500;
}

.intro__text + .intro__text {
  margin-top: 18px;
}

.stat-item {
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}

.stat-item__num {
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-item__label {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-2);
  line-height: 1.3;
}

.intro .stat-grid {
  margin-top: 42px;
}

/* --- Services --- */
.services {
  margin-top: 150px;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.section-header--cases,
.section-header--blog {
  gap: 18px;
  margin-bottom: 36px;
}

.heading-xl {
  margin: 0;
  font-weight: 900;
  font-size: clamp(34px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.heading-lg {
  margin: 0;
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.heading-md {
  margin: 0;
  font-weight: 900;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.section-lead {
  max-width: 380px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted-1);
  font-weight: 500;
}

.services__list {
  border-top: 1px solid rgba(1, 10, 27, 0.14);
}

.svc-row {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(1, 10, 27, 0.14);
}

.svc-fill {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.svc-row:hover .svc-fill {
  transform: scaleY(1) !important;
}

.svc-row__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(15px, 3.4vw, 48px);
  align-items: center;
  padding: clamp(22px, 3vw, 40px) 6px;
}

.svc-no {
  font-weight: 800;
  font-size: 14px;
  color: var(--muted-3);
  transition: all 0.42s;
  font-variant-numeric: tabular-nums;
}

.svc-row:hover .svc-no {
  color: rgba(255, 255, 255, 0.55) !important;
  transform: translateX(14px) !important;
}

.svc-body {
  min-width: 0;
}

.svc-title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(26px, 4vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1;
  transition: all 0.42s;
}

.svc-row:hover .svc-title {
  color: var(--white) !important;
  transform: translateX(14px) !important;
}

.svc-desc {
  margin: 13px 0 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-2);
  font-weight: 500;
  transition: color 0.42s;
}

.svc-row:hover .svc-desc {
  color: rgba(255, 255, 255, 0.82) !important;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.svc-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid rgba(1, 10, 27, 0.2);
  border-radius: 50px;
  color: var(--muted-2);
  transition: all 0.42s;
}

.svc-row:hover .svc-tag {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: var(--white) !important;
}

.svc-arrow {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 10, 27, 0.06);
  color: var(--ink);
  transform: rotate(-45deg);
  transition: all 0.42s;
}

.svc-row:hover .svc-arrow {
  background: var(--white) !important;
  color: var(--ink) !important;
  transform: rotate(0deg) !important;
}

/* --- Grow Cards --- */
.grow {
  margin-top: 140px;
}

.grow .heading-lg {
  max-width: 780px;
}

.grow .two-col--3 {
  margin-top: 46px;
}

.grow-card {
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 20px;
  padding: 30px 28px;
  transition: all 0.3s;
}

.grow-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--accent) !important;
}

.grow-card__key {
  font-weight: 900;
  font-size: 34px;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.grow-card__title {
  margin: 20px 0 0;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.grow-card__desc {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-2);
  font-weight: 500;
}

/* --- Training --- */
.training {
  margin-top: 140px;
}

.training__panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(40px, 5vw, 72px) clamp(26px, 5vw, 72px);
}

.training__glow {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background: radial-gradient(70% 110% at 0% 0%, rgba(0, 127, 255, 0.34), transparent 56%);
}

.training__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.training__heading {
  margin: 0;
  font-weight: 900;
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.training__lead {
  margin: 24px 0 0;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
  max-width: 480px;
}

.training__cta {
  gap: 9px;
  margin-top: 32px;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 12px;
}

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

.trn-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.4s ease;
}

.trn-no {
  font-weight: 800;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trn-title {
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trn-arrow {
  margin-left: auto;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  opacity: 0;
  transform: translateX(-8px) rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trn-row:hover .trn-title {
  color: var(--accent) !important;
  transform: translateX(10px) !important;
}

.trn-row:hover .trn-no {
  color: rgba(255, 255, 255, 0.7) !important;
  transform: translateX(10px) !important;
}

.trn-row:hover .trn-arrow {
  opacity: 1 !important;
  transform: translateX(0) rotate(0deg) !important;
  background: var(--accent) !important;
}

/* --- Process --- */
.process {
  margin-top: 140px;
}

.process__header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.process__badge {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.process-item__no {
  font-weight: 900;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.process-item__line {
  margin: 14px 0;
  height: 1px;
  background: rgba(1, 10, 27, 0.16);
}

.process-item__title {
  margin: 0;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.process-item__desc {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted-2);
  font-weight: 500;
}

/* --- Cases --- */
.cases {
  margin-top: 150px;
}

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

.cases-carousel__dots {
  display: none;
}

.case-card {
  display: block;
}

.case-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink);
}

.case-img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.case-card:hover .case-img {
  transform: scale(1.06) !important;
}

.case-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 10, 27, 0.82), rgba(1, 10, 27, 0.05) 46%);
}

.case-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(1, 10, 27, 0.55);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.case-card:hover .case-arrow {
  transform: translate(4px, -4px) !important;
  background: var(--accent) !important;
  color: var(--white) !important;
}

.case-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
}

.case-card__metric {
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  color: #3aa0ff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.case-card__name {
  margin-top: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

/* --- Marquee CTA Band --- */
.marquee-cta {
  position: relative;
  z-index: 1;
  margin: 150px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-cta__band {
  position: relative;
  width: 100%;
  background: var(--ink);
  color: var(--white);
  padding: 42px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-cta__glow {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background: radial-gradient(70% 120% at 50% 0%, rgba(0, 127, 255, 0.35), transparent 60%);
}

.marquee-cta__track {
  position: relative;
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marq 24s linear infinite;
  animation-play-state: var(--play, running);
}

.marquee-cta__item {
  font-weight: 900;
  font-size: clamp(48px, 9vw, 120px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.marquee-cta__item--outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
  color: transparent;
}

.marquee-cta__badge-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-cta__badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.42),
    inset 0 1px 1px rgba(255, 255, 255, 0.16);
}

.marquee-cta__badge-link {
  position: relative;
  width: 196px;
  height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-cta__badge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 16s linear infinite;
  animation-play-state: var(--play, running);
}

.marquee-cta__badge-text {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 4.6px;
}

.marquee-cta__badge-btn {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 127, 255, 0.45);
}

/* --- Testimonials --- */
.testimonials {
  margin-top: 150px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 40px);
}

.testimonial-card__quote-mark {
  font-weight: 900;
  font-size: 40px;
  color: var(--accent);
  line-height: 0.6;
}

.testimonial-card__text {
  margin: 10px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.testimonial-card__author {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(150deg, #06205c, var(--ink));
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 15px;
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--muted-2);
}

/* --- Blog --- */
.blog {
  margin-top: 150px;
}

.post-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 20px;
  padding: 26px;
  transition: transform 0.3s;
}

.post-card--cover {
  padding: 0;
  overflow: hidden;
}

.post-card__cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.post-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.post-card--cover:hover .post-card__cover img {
  transform: scale(1.04);
}

.post-card__body {
  display: block;
}

.post-card--cover .post-card__body {
  padding: 20px 22px 24px;
}

.post-card:hover {
  transform: translateY(-8px) !important;
}

.post-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-card__cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.post-arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.post-card:hover .post-arrow {
  transform: translate(3px, -3px) !important;
}

.post-card__title {
  margin: 64px 0 0;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.post-card--cover .post-card__title {
  margin-top: 14px;
}

.post-card__read {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 600;
}

/* --- Contact CTA --- */
.contact-cta {
  margin-top: 150px;
}

.contact-cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(44px, 7vw, 100px) clamp(26px, 5vw, 80px);
}

.contact-cta__glow {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(0, 127, 255, 0.4), transparent 55%),
    radial-gradient(60% 90% at 0% 100%, rgba(0, 127, 255, 0.18), transparent 55%);
}

.contact-cta__content {
  position: relative;
  max-width: 760px;
}

.contact-cta__heading {
  margin: 0;
  font-weight: 900;
  font-size: clamp(36px, 6.4vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.contact-cta__lead {
  margin: 24px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  max-width: 560px;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 13px;
}

.contact-cta__btn--primary {
  background: var(--accent);
  color: var(--white);
}

.contact-cta__btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 80px auto 0;
  padding: 48px var(--section-x) 36px;
}

.site-footer__grid {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(1, 10, 27, 0.14);
}

.footer-brand__name {
  font-weight: 900;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  display: block;
}

.footer-brand__text {
  margin: 22px 0 0;
  max-width: 300px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted-2);
  font-weight: 500;
}

.footer-col__title {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.footer-col__links {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col__links a {
  font-weight: 600;
  font-size: 16px;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 500;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.footer-mark:hover {
  opacity: 1;
}

.footer-mark img {
  display: block;
  width: 70px;
  height: auto;
}

.page-spacer {
  height: 40px;
}

/* --- Scroll to Top --- */
.to-top {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 50;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 15px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -12px rgba(1, 10, 27, 0.6);
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.25s ease;
}

.to-top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.to-top:hover {
  background: var(--accent) !important;
}

.to-top svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* --- Responsive --- */
@media (max-width: 880px) {
  .nav-desktop {
    display: none !important;
  }

  .nav-burger {
    display: flex !important;
  }

  .nav-cta {
    display: none !important;
  }

  .nav-pill {
    padding: 14px 18px;
    gap: 14px;
  }

  .nav-pill.is-scrolled {
    padding: 10px 16px;
  }

  .nav-logo-link {
    flex: 1;
    min-width: 0;
  }

  .nav-logo {
    height: 36px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .nav-pill.is-scrolled .nav-logo {
    height: 30px;
  }

  .nav-actions {
    flex-shrink: 0;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-h1 {
    font-size: clamp(54px, 15vw, 108px) !important;
  }

  .two-col--intro,
  .two-col--3,
  .two-col--2,
  .two-col--footer,
  .training__grid {
    grid-template-columns: 1fr !important;
  }

  .stat-grid,
  .stat-grid--process {
    grid-template-columns: 1fr 1fr !important;
  }

  .cases-carousel__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(-1 * var(--section-x));
    padding: 0 var(--section-x) 4px;
    scrollbar-width: none;
  }

  .cases-carousel__track::-webkit-scrollbar {
    display: none;
  }

  .cases-carousel .case-card {
    flex: 0 0 calc(100% - 52px);
    scroll-snap-align: center;
    min-width: 0;
  }

  .cases-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
  }

  .cases-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(1, 10, 27, 0.16);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
  }

  .cases-carousel__dot.is-active {
    background: var(--accent);
    transform: scale(1.15);
  }

  .marquee-cta {
    margin-top: 120px;
  }

  .marquee-cta__band {
    padding: 30px 0;
  }

  .marquee-cta__item {
    font-size: clamp(34px, 9vw, 52px);
  }

  .marquee-cta__badge-wrap {
    width: 120px;
    height: 120px;
  }

  .marquee-cta__badge-link {
    width: 106px;
    height: 106px;
  }

  .marquee-cta__badge-btn {
    width: 42px;
    height: 42px;
  }

  .marquee-cta__badge-btn .icon {
    width: 1.05em;
    height: 1.05em;
  }
}

@media (min-width: 881px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  :root {
    --play: paused;
  }

  html {
    scroll-behavior: auto;
  }

  .rev {
    opacity: 1;
  }

  .wordmark-band__track,
  .marquee-cta__track,
  .marquee-cta__badge-svg {
    animation-play-state: paused !important;
  }

  .cases-carousel__track {
    scroll-behavior: auto;
  }
}

.reduce-motion {
  --play: paused;
}

.reduce-motion .rev {
  opacity: 1;
}

.reduce-motion .wordmark-band__track,
.reduce-motion .marquee-cta__track,
.reduce-motion .marquee-cta__badge-svg {
  animation-play-state: paused !important;
}

/* ========== INNER PAGES ========== */

.atmosphere--inner {
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(0, 127, 255, 0.10), transparent 55%),
    radial-gradient(90% 60% at -10% 20%, rgba(0, 127, 255, 0.06), transparent 50%);
}

.page-inner .atmosphere__grid {
  display: none;
}

.navlink--active {
  color: var(--accent);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero__glow {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(0, 127, 255, 0.4), transparent 55%),
    radial-gradient(60% 90% at 0% 100%, rgba(0, 127, 255, 0.18), transparent 55%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 148px;
  padding-bottom: 56px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.page-hero__breadcrumb a {
  transition: color 0.2s ease;
}

.page-hero__breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero__sep {
  opacity: 0.45;
}

.page-hero__breadcrumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero__title {
  margin: 0;
  max-width: 640px;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.page-hero__desc {
  margin: 18px 0 0;
  max-width: 520px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
}

.page-hero--post .page-hero__inner {
  padding-top: 136px;
  padding-bottom: clamp(52px, 7vw, 80px);
}

.page-hero--post .page-hero__title {
  max-width: 900px;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.02;
}

.page-hero--post .page-hero__desc {
  max-width: 640px;
  margin-top: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
}

/* --- Contact page --- */
.contact-page {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  margin-top: 0;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-details__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-details__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 14px;
}

.contact-details__label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}

.contact-details__link {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.contact-details__link:hover {
  color: var(--accent);
}

.contact-aside__card {
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 20px;
  padding: 28px 26px;
}

.contact-aside__title {
  margin: 0;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.contact-aside__text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-2);
  font-weight: 500;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 24px;
  padding: clamp(26px, 4vw, 36px);
}

.contact-form {
  position: relative;
}

.form-type {
  margin: 0 0 24px;
  padding: 0;
  border: none;
}

.form-type__legend {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.form-type__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-type__option {
  display: block;
  cursor: pointer;
}

.form-type__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-type__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(1, 10, 27, 0.12);
  border-radius: 14px;
  background: var(--bg);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.form-type__option:hover .form-type__card {
  border-color: rgba(0, 127, 255, 0.28);
  transform: translateY(-1px);
}

.form-type__option input:checked + .form-type__card {
  border-color: var(--accent);
  background: rgba(0, 127, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 127, 255, 0.1);
}

.form-type__option input:focus-visible + .form-type__card {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-type__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.form-type__desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted-2);
  font-weight: 500;
}

.form-analysis {
  margin: 0 0 2px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(1, 10, 27, 0.1);
}

.form-analysis[hidden] {
  display: none;
}

.form-analysis.is-open {
  animation: formPanelIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes formPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-analysis__intro {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-2);
  font-weight: 500;
}

.form-analysis .form-row .form-field {
  margin-bottom: 18px;
}

.form-platforms .form-type__options {
  margin-top: 8px;
}

.form-platforms .form-type__card {
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-align: center;
}

.form-platforms .form-type__title {
  font-size: 14px;
}

.form-type__option--full {
  display: block;
}

.form-field--consent .form-type__option--full {
  margin-top: 8px;
}

.form-field--consent .form-type__card {
  padding: 16px 18px;
}

.form-field--error.form-platforms .form-type__card {
  border-color: #dc2626;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.12);
}

.form-field--error.form-field--consent .form-type__card {
  border-color: #fecaca;
  background: #fef2f2;
}

.form-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted-2) 50%),
    linear-gradient(135deg, var(--muted-2) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form__notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.contact-form__notice--success {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.contact-form__notice--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-field {
  margin-bottom: 18px;
}

.form-field:focus-within .form-label {
  color: var(--accent);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color 0.2s ease;
}

.form-label__req {
  color: #dc2626;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(1, 10, 27, 0.12);
  border-radius: 14px;
  background: var(--bg);
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field--phone .form-input {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-3);
}

.form-input:hover,
.form-textarea:hover {
  background: #eaeaea;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 127, 255, 0.12);
}

.form-input:disabled,
.form-textarea:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-field--error .form-input,
.form-field--error .form-textarea,
.form-field--error .form-select {
  border-color: #dc2626;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15);
}

.form-field--error .form-label {
  color: #dc2626;
}

.form-field__error {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #dc2626;
  font-weight: 500;
}

.form-hint {
  margin: -4px 0 20px;
  font-size: 13px;
  color: var(--muted-2);
  font-weight: 500;
}

.contact-form__submit {
  gap: 10px;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
}

.contact-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* --- About page --- */
.about-intro {
  padding-top: clamp(56px, 8vw, 96px);
}

.about-intro__media {
  position: sticky;
  top: 110px;
}

.about-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.about-heading {
  margin: 0;
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.about-heading--light {
  color: var(--white);
}

.about-text {
  margin: 22px 0 0;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.65;
  color: var(--muted-1);
  font-weight: 500;
  max-width: 640px;
}

.about-text--light {
  color: rgba(255, 255, 255, 0.76);
}

.about-stats {
  padding-top: 0;
  padding-bottom: 0;
}

.about-stats__grid {
  gap: 20px;
}

.about-story {
  padding-top: clamp(56px, 8vw, 88px);
}

.about-story__panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(40px, 5vw, 72px) clamp(26px, 5vw, 72px);
}

.about-story__glow {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background: radial-gradient(70% 110% at 100% 0%, rgba(0, 127, 255, 0.34), transparent 56%);
}

.about-story__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.about-story__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-story__item {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.about-story__item:first-child {
  border-top: none;
  padding-top: 0;
}

.about-story__year {
  display: block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-story__copy {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
}

.about-section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.about-lead {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted-1);
  font-weight: 500;
}

.about-expertise {
  padding-top: clamp(72px, 9vw, 110px);
}

.about-expertise__grid {
  margin-top: 8px;
}

.about-card {
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 20px;
  padding: 28px 26px;
}

.about-card--soft {
  background: var(--bg);
}

.about-card__no {
  display: block;
  font-weight: 900;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.about-card__title {
  margin: 14px 0 0;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.about-card__text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-2);
  font-weight: 500;
}

.about-approach {
  padding-top: clamp(72px, 9vw, 110px);
}

.about-principles {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(1, 10, 27, 0.12);
}

.about-principle:first-child {
  border-top: none;
  padding-top: 0;
}

.about-principle__no {
  font-weight: 900;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 2px;
}

.about-principle__title {
  margin: 0;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.about-principle__text {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-2);
  font-weight: 500;
}

.about-clients {
  padding-top: clamp(72px, 9vw, 110px);
}

.about-clients__grid {
  margin-top: 8px;
}

.about-cta {
  padding-top: clamp(72px, 9vw, 110px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.about-cta .contact-cta__panel {
  border-radius: 28px;
}

/* --- Works / case studies page --- */
.works-page {
  padding-top: clamp(56px, 8vw, 88px);
}

.works-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.works-stat {
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 18px;
  padding: 22px 20px;
}

.works-stat__val {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.works-stat__label {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted-2);
  font-weight: 500;
}

.case-studies {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
}

.case-study {
  scroll-margin-top: 120px;
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.case-study:hover {
  border-color: rgba(0, 127, 255, 0.2);
  box-shadow: 0 22px 64px -28px rgba(1, 10, 27, 0.18);
}

.case-study:target {
  border-color: var(--accent);
  box-shadow: 0 26px 72px -24px rgba(0, 127, 255, 0.25);
}

.case-study__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.case-study--reverse .case-study__visual {
  order: 2;
}

.case-study--reverse .case-study__content {
  order: 1;
}

.case-study__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink);
}

.case-study__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study__media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 10, 27, 0.55), transparent 55%);
  pointer-events: none;
}

.case-study__no {
  display: block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.case-study__title {
  margin: 10px 0 0;
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.case-study__lead {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-1);
  font-weight: 500;
}

.case-study__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  margin-top: 28px;
}

.case-study__label {
  margin: 0;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.case-study__text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-1);
  font-weight: 500;
}

.case-study__list {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-1);
  font-weight: 500;
}

.case-study__list li + li {
  margin-top: 8px;
}

.case-study__results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(1, 10, 27, 0.1);
}

.case-study__stat {
  background: var(--bg);
  border-radius: 14px;
  padding: 16px 14px;
}

.case-study__stat-val {
  display: block;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.case-study__stat-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted-2);
  font-weight: 600;
}

/* --- Training page --- */
.training-page__spotlight {
  padding-top: clamp(56px, 8vw, 88px);
}

.training-page__spotlight .training {
  margin-top: 0;
}

.training-page__spotlight .trn-row--static:hover .trn-title,
.training-page__spotlight .trn-row--static:hover .trn-no {
  color: rgba(255, 255, 255, 0.74) !important;
  transform: none !important;
}

.training-page__spotlight .trn-row--static .trn-title {
  color: var(--white);
}

.training-page__courses {
  padding-top: clamp(72px, 9vw, 110px);
}

.training-page__formats {
  padding-top: clamp(88px, 10vw, 140px);
}

.training-page__formats .about-section-head {
  margin-bottom: 40px;
}

/* --- Services page --- */
.services-page {
  padding-top: clamp(56px, 8vw, 88px);
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.service-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid rgba(1, 10, 27, 0.14);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-1);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.service-nav__link:hover {
  border-color: rgba(0, 127, 255, 0.35);
  color: var(--ink);
  transform: translateY(-2px);
}

.service-nav__link.is-active,
.service-nav__link:target {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.service-panels {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3.5vw, 32px);
}

.service-panel {
  opacity: 1;
  scroll-margin-top: 120px;
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 42px);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 127, 255, 0.22);
  box-shadow: 0 22px 64px -28px rgba(1, 10, 27, 0.22);
}

.service-panel:target {
  border-color: var(--accent);
  box-shadow: 0 26px 72px -24px rgba(0, 127, 255, 0.32);
}

.service-panel__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  align-items: start;
}

.service-panel__no {
  grid-row: span 2;
  font-weight: 900;
  font-size: clamp(44px, 5vw, 60px);
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.service-panel__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.service-panel__lead {
  grid-column: 2;
  margin: 12px 0 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-1);
  font-weight: 500;
}

.panel-meta {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-2);
  letter-spacing: 0.01em;
}

.case-study__visual .panel-meta {
  margin-top: 14px;
}

.service-panel__header .panel-meta {
  margin-top: 14px;
}

.service-panel__rule {
  height: 1px;
  margin: clamp(24px, 3vw, 32px) 0;
  background: rgba(1, 10, 27, 0.1);
}

.service-panel__body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 52px);
}

.service-panel__col {
  opacity: 1;
}

.service-panel__col.is-visible {
  opacity: 1;
}

.service-panel__label {
  margin: 0;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.service-panel__list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted-1);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.service-panel__list li + li {
  margin-top: 8px;
}

.service-panel__text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-1);
  font-weight: 500;
}

.service-panel__text + .service-panel__label {
  margin-top: 28px;
}

.services-process {
  padding-top: clamp(88px, 10vw, 140px);
}

.services-process .about-section-head {
  margin-bottom: 40px;
}

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

.reduce-motion .service-panel__col {
  opacity: 1;
}

.analysis-promo {
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.analysis-promo__panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(40px, 5vw, 64px) clamp(26px, 5vw, 56px);
}

.analysis-promo__glow {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(0, 127, 255, 0.4), transparent 55%),
    radial-gradient(60% 90% at 0% 100%, rgba(0, 127, 255, 0.18), transparent 55%);
}

.analysis-promo__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
}

.analysis-promo__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.analysis-promo__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.analysis-promo__list li + li {
  margin-top: 12px;
}

.analysis-promo__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.analysis-promo__cta {
  display: inline-flex;
  margin-top: 28px;
  gap: 10px;
  font-size: 16px;
  padding: 17px 28px;
  border-radius: 13px;
}

@media (max-width: 880px) {
  .page-hero__inner {
    padding-top: 128px;
    padding-bottom: 44px;
  }

  .about-intro__media {
    position: static;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .service-panel__body,
  .services-process__grid,
  .analysis-promo__grid {
    grid-template-columns: 1fr;
  }

  .service-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .service-nav__link {
    flex-shrink: 0;
  }

  .contact-page {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-type__options {
    grid-template-columns: 1fr;
  }

  .works-stats,
  .case-study__layout,
  .case-study__grid,
  .case-study__results {
    grid-template-columns: 1fr;
  }

  .case-study--reverse .case-study__visual,
  .case-study--reverse .case-study__content {
    order: unset;
  }
}

/* --- Blog page --- */
.blog-page__list {
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(80px, 10vw, 120px);
}

.blog-filter {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.blog-filter__btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid rgba(1, 10, 27, 0.14);
  background: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-1);
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.blog-filter__btn:hover {
  border-color: rgba(0, 127, 255, 0.35);
  color: var(--ink);
  transform: translateY(-2px);
}

.blog-filter__btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.blog-page__empty {
  margin-top: clamp(24px, 4vw, 32px);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 20px;
}

.blog-page__empty p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted-2);
}

.blog-page__grid .post-card[hidden] {
  display: none;
}

/* --- Blog article --- */
.blog-article-page {
  padding-top: clamp(40px, 6vw, 56px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.blog-article {
  max-width: none;
  margin: 0;
  min-width: 0;
}

.blog-article-cta {
  grid-column: 1 / -1;
  margin-top: clamp(8px, 2vw, 16px);
}

.blog-article-cta .contact-cta__heading {
  font-size: clamp(28px, 4.8vw, 56px);
  line-height: 0.96;
}

.blog-article__cover {
  margin: 0 0 clamp(28px, 4vw, 40px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(1, 10, 27, 0.09);
  background: var(--ink);
}

.blog-article__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-article__lead {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted-1);
}

.blog-article__content h2 {
  margin: clamp(36px, 5vw, 48px) 0 16px;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.blog-article__content h3 {
  margin: clamp(28px, 4vw, 36px) 0 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.blog-article__content p {
  margin: 0 0 1.25em;
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink);
}

.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 1.5em;
  padding-left: 1.35em;
}

.blog-article__content li {
  margin: 0.45em 0;
  font-size: 16px;
  line-height: 1.65;
}

.blog-article__content li::marker {
  color: var(--accent);
}

.blog-article__content strong {
  font-weight: 700;
}

.blog-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(40px, 6vw, 56px);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-1);
  transition: color 0.2s ease;
}

.blog-article__back:hover {
  color: var(--accent);
}

.blog-aside {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-aside__panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(1, 10, 27, 0.09);
  border-radius: 20px;
}

.blog-aside__title {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-aside__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-aside__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-1);
  transition: color 0.2s ease;
}

.blog-aside__more:hover {
  color: var(--accent);
}

.blog-aside__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-1);
}

.blog-aside__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 11px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.post-card--sidebar .post-card__body {
  padding: 14px 16px 16px;
}

.post-card--sidebar .post-card__title {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.2;
}

.post-card--sidebar .post-card__read {
  margin-top: 8px;
  font-size: 12px;
}

.post-card--sidebar:hover {
  transform: translateY(-4px) !important;
}

.blog-related {
  margin-top: clamp(64px, 9vw, 96px);
  padding-top: clamp(48px, 7vw, 64px);
  border-top: 1px solid rgba(1, 10, 27, 0.1);
}

.blog-related__head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.blog-related__head .about-eyebrow {
  margin-bottom: 10px;
}

.blog-related__head .about-heading {
  margin: 0;
}

@media (max-width: 880px) {
  .page-hero--post .page-hero__inner {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-aside {
    position: static;
  }

  .blog-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .blog-filter::-webkit-scrollbar {
    display: none;
  }

  .blog-filter__btn {
    flex-shrink: 0;
  }
}

.trusted__brands{
  display:block;
  max-width:100%;
  margin:24px 0 0;
  padding:0;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}

.trusted__row{
  overflow:hidden;
  padding:10px 0;
}

.trusted__track{
  display:flex;
  width:max-content;
  will-change:transform;
  animation:trusted-scroll linear infinite;
}

.trusted__row--reverse .trusted__track{
  animation-direction:reverse;
}

.trusted__brands:hover .trusted__track{
  animation-play-state:paused;
}

.trusted__brand{
  flex:0 0 auto;
  padding:0 32px;
  font-size:18px;
  font-weight:600;
  line-height:1.35;
  letter-spacing:.01em;
  color:#7a828e;
  white-space:nowrap;
}

@keyframes trusted-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@media (max-width:640px){
  .trusted__brand{ font-size:15px; padding:0 20px; }
  .trusted__row{ padding:7px 0; }
}

@media (prefers-reduced-motion:reduce){
  .trusted__track{ animation:none; }
  .trusted__brands{ -webkit-mask-image:none; mask-image:none; }
  .trusted__row{ overflow-x:auto; }
}

.testimonial-card__body{
  position:relative;
}

.testimonial-card__text{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:6;
  line-clamp:6;
  overflow:hidden;
  margin:0;
}

.testimonial-card__body.is-open .testimonial-card__text{
  display:block;
  -webkit-line-clamp:none;
  line-clamp:none;
  overflow:visible;
}

/* kesilen son satırda yumuşak geçiş */
.testimonial-card__body.is-clamped:not(.is-open)::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2.4em;
  background:linear-gradient(to bottom, transparent, var(--card-bg, #fff));
  pointer-events:none;
}

.testimonial-card__toggle{
  display:inline-flex;
  align-items:center;
  gap:6px;
  position:relative;
  z-index:1;
  margin-top:10px;
  padding:0;
  border:0;
  background:none;
  font:inherit;
  font-size:14px;
  font-weight:600;
  color:#2563eb;
  cursor:pointer;
}

.testimonial-card__toggle:hover{ text-decoration:underline; }
.testimonial-card__toggle:focus-visible{ outline:2px solid #2563eb; outline-offset:3px; border-radius:3px; }

.testimonial-card__toggle-icon{ transition:transform .2s; }
.testimonial-card__body.is-open .testimonial-card__toggle-icon{ transform:rotate(180deg); }

.hero-h1{
  container-type:inline-size;
  max-width:100%;
  margin:0 0 20px;
  line-height:1.1;
  letter-spacing:-.02em;
  overflow:visible;
  font-size:min(12.5vw, 4.5rem);   /* fallback */
}

.hero-h1__line{
  display:block;
  white-space:nowrap;
  font-size:min(13.6cqw, 4.5rem);
  padding-bottom:.06em;
}