/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base), transform 0.1s ease, color var(--transition-base);
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--c-orange);
  color: var(--c-white);
  border-color: var(--c-orange);
  box-shadow: 0 4px 16px rgba(225, 144, 21, 0.25);
}

.btn--primary:hover {
  background: var(--c-orange-700);
  border-color: var(--c-orange-700);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(225, 144, 21, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--c-white);
  color: var(--c-white);
}

.btn--outline {
  background: transparent;
  color: var(--c-orange);
  border-color: var(--c-orange);
}

.btn--outline:hover {
  background: var(--c-orange);
  color: var(--c-white);
}

/* ── Site Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(35, 31, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--c-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
}

.site-header__logo img {
  height: 108px;
  width: auto;
  display: block;
}

/* ── Navigation ── */

#primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: var(--c-grey-300);
  font-weight: 500;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--c-orange);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--c-white);
  cursor: pointer;
  padding: var(--space-2);
}

@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--c-black);
    padding: var(--space-4);
    gap: var(--space-3);
    align-items: flex-start;
  }
  .nav__list.is-open { display: flex; }
}

/* ── Section Heads ── */

.section__head {
  max-width: 720px;
  margin-bottom: var(--space-6);
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-orange);
  margin-bottom: var(--space-2);
}

.section__eyebrow--light {
  color: var(--c-orange-300);
}

.section__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
  color: var(--c-black);
}

.section__title--light {
  color: var(--c-white);
}

.section__lede {
  font-size: 1.125rem;
  color: var(--c-grey-700);
  line-height: var(--lh-base);
  max-width: 640px;
}

.section__lede--light {
  color: var(--c-grey-300);
}

/* ── Hero ── */

.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, #2a2425 0%, var(--c-black) 70%);
  color: var(--c-white);
  overflow: hidden;
}

.hero--main {
  padding-top: var(--space-7);
  padding-bottom: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__glow {
  position: absolute;
  top: 10%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(225, 144, 21, 0.22), transparent 60%);
  filter: blur(20px);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-6);
  align-items: center;
  min-height: 78vh;
  padding-block: var(--space-7);
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; min-height: auto; gap: var(--space-7); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.45rem 1rem;
  background: rgba(225, 144, 21, 0.1);
  border: 1px solid rgba(225, 144, 21, 0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-orange-300);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-4);
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 12px var(--c-orange);
  animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--c-orange) 0%, #FFB85C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__text {
  font-size: 1.1875rem;
  color: var(--c-grey-300);
  margin-bottom: var(--space-5);
  line-height: 1.55;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Hero panel (SOC mockup) */
.hero__panel {
  position: relative;
  min-height: 460px;
}

@media (max-width: 1024px) {
  .hero__panel { min-height: 420px; max-width: 500px; margin-inline: auto; width: 100%; }
}

.hero-panel {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(58, 58, 58, 0.5), rgba(35, 31, 32, 0.7));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  animation: hero-panel-float 6s ease-in-out infinite;
}

@keyframes hero-panel-float {
  0%, 100% { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateY(-8px); }
}

.hero-panel__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-panel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-panel__dot--r { background: #FF5F57; }
.hero-panel__dot--y { background: #FEBC2E; }
.hero-panel__dot--g { background: #28C840; }

.hero-panel__title {
  margin-left: var(--space-2);
  font-size: 0.75rem;
  color: var(--c-grey-500);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel__body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.hero-panel__row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-sm);
  transition: border-color var(--transition-base);
}

.hero-panel__row--ok { border-color: rgba(40, 200, 64, 0.2); }
.hero-panel__row--alert { border-color: rgba(225, 144, 21, 0.3); }

.hero-panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: rgba(225, 144, 21, 0.15);
  color: var(--c-orange);
  flex-shrink: 0;
}

.hero-panel__row--ok .hero-panel__icon {
  background: rgba(40, 200, 64, 0.15);
  color: #28C840;
}

.hero-panel__text {
  flex: 1;
  min-width: 0;
}

.hero-panel__label {
  font-size: 0.6875rem;
  color: var(--c-grey-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.hero-panel__value {
  font-size: 0.9375rem;
  color: var(--c-white);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-panel__value span {
  color: var(--c-grey-500);
  font-weight: 400;
  font-size: 0.8125rem;
}

.hero-panel__badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.hero-panel__badge--ok {
  background: rgba(40, 200, 64, 0.15);
  color: #4ADE65;
}

.hero-panel__badge--good {
  background: rgba(225, 144, 21, 0.15);
  color: var(--c-orange-300);
}

.hero-panel__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #28C840;
  box-shadow: 0 0 12px #28C840;
  animation: hero-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Hero stat chips */
.hero-stat {
  position: absolute;
  z-index: 3;
  padding: 0.875rem 1.125rem;
  background: linear-gradient(180deg, rgba(225, 144, 21, 0.95), #B86F0D);
  border-radius: var(--r-md);
  box-shadow:
    0 12px 32px rgba(225, 144, 21, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  color: var(--c-white);
  font-family: var(--f-sans);
}

.hero-stat--1 {
  top: -16px;
  right: -8px;
  animation: hero-chip-float 5s ease-in-out infinite;
}

.hero-stat--2 {
  bottom: 20px;
  left: -20px;
  animation: hero-chip-float 5s ease-in-out infinite 2.5s;
}

@keyframes hero-chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-stat__value {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat__value span {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
}

.hero-stat__label {
  font-size: 0.6875rem;
  margin-top: 2px;
  opacity: 0.9;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero trust strip */
.hero__trust {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: var(--space-4);
  background: rgba(0, 0, 0, 0.2);
}

.hero__trust .container {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__trust-label {
  font-size: var(--fs-small);
  color: var(--c-grey-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.hero__trust-marks {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__badge {
  padding: 0.35rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-sm);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-grey-300);
}

/* ── Stats Section ── */

.section--stats {
  background: var(--c-grey-100);
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--c-grey-200);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
}

.stat {
  text-align: center;
}

.stat__value {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--c-black);
  letter-spacing: -0.03em;
}

.stat__value span {
  color: var(--c-orange);
  font-size: 0.7em;
  margin-left: 2px;
}

.stat__label {
  margin-top: var(--space-2);
  font-size: var(--fs-small);
  color: var(--c-grey-700);
  font-weight: 500;
}

/* ── Services Section ── */

.services {
  margin-top: var(--space-5);
}

.service-card {
  position: relative;
  padding: var(--space-5);
  background: var(--c-white);
  border: 1px solid var(--c-grey-200);
  border-radius: var(--r-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-orange-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--c-orange-100);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--feature {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-grey-900);
}

.service-card--feature::before { transform: scaleX(1); }

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--c-orange-100);
  border-radius: var(--r-md);
  margin-bottom: var(--space-4);
}

.service-card--feature .service-card__icon {
  background: rgba(225, 144, 21, 0.15);
}

.service-card__title {
  font-size: 1.375rem;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.service-card__text {
  color: var(--c-grey-700);
  margin-bottom: var(--space-4);
  line-height: var(--lh-base);
}

.service-card--feature .service-card__text { color: var(--c-grey-300); }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--c-orange);
  font-weight: 600;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--transition-base);
}

.service-card__link:hover {
  gap: var(--space-3);
}

/* ── Vision Section ── */

.section--vision {
  position: relative;
  background: radial-gradient(ellipse at bottom left, #2a2425 0%, var(--c-black) 70%);
  color: var(--c-white);
  overflow: hidden;
}

.vision__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.section--vision::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(225, 144, 21, 0.18), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}

.section--vision .container { position: relative; z-index: 1; }

.vision__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (max-width: 968px) {
  .vision__grid { grid-template-columns: 1fr; }
}

.vision__list {
  list-style: none;
  margin: var(--space-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.vision__list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--c-grey-300);
  font-size: 1.0625rem;
}

.vision__list svg {
  flex-shrink: 0;
}

/* Vision visual — orbital radar */
.vision__visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  aspect-ratio: 1;
}

.orbit {
  position: relative;
  width: 100%;
  height: 100%;
}

.orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(225, 144, 21, 0.25);
  animation: orbit-spin linear infinite;
}

.orbit__ring--outer {
  inset: 0;
  border-color: rgba(225, 144, 21, 0.2);
  animation-duration: 40s;
}

.orbit__ring--mid {
  inset: 16%;
  border-color: rgba(225, 144, 21, 0.35);
  border-style: dashed;
  animation-duration: 25s;
  animation-direction: reverse;
}

.orbit__ring--inner {
  inset: 32%;
  border-style: solid;
  border-color: rgba(225, 144, 21, 0.5);
  animation-duration: 15s;
}

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

.orbit__chip {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0.45rem 0.875rem;
  background: linear-gradient(180deg, rgba(58, 58, 58, 0.95), rgba(35, 31, 32, 0.95));
  border: 1px solid rgba(225, 144, 21, 0.4);
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-orange-300);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: orbit-counter-spin linear infinite;
}

@keyframes orbit-counter-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Outer ring chips — top + bottom, counter-rotate to stay upright */
.orbit__chip--1 {
  transform-origin: center center;
  margin-top: -50%;
  animation-duration: 40s;
}

.orbit__chip--2 {
  margin-top: 50%;
  animation-duration: 40s;
}

/* Mid ring chips — left + right */
.orbit__chip--3 {
  margin-left: -50%;
  animation-duration: 25s;
  animation-direction: reverse;
}

.orbit__chip--4 {
  margin-left: 50%;
  animation-duration: 25s;
  animation-direction: reverse;
}

/* Position the chips at the edge of their parent ring */
.orbit__ring--outer .orbit__chip--1 { top: 0; left: 50%; }
.orbit__ring--outer .orbit__chip--2 { top: 100%; left: 50%; }
.orbit__ring--mid .orbit__chip--3 { top: 50%; left: 0; }
.orbit__ring--mid .orbit__chip--4 { top: 50%; left: 100%; }

.orbit__hub {
  position: absolute;
  inset: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, #2a2425 0%, #1a1617 100%);
  border: 1px solid rgba(225, 144, 21, 0.4);
  box-shadow:
    0 0 0 1px rgba(225, 144, 21, 0.15) inset,
    0 0 40px rgba(225, 144, 21, 0.2);
}

.orbit__hub-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 144, 21, 0.3), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
  animation: hub-pulse 3s ease-in-out infinite;
}

@keyframes hub-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.orbit__hub-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  line-height: 1;
}

.orbit__hub-flag {
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.orbit__hub-text {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--c-orange);
}

/* Scanner sweep */
.orbit__scanner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(225, 144, 21, 0.15) 30deg,
    transparent 60deg,
    transparent 360deg
  );
  animation: orbit-spin 6s linear infinite;
  pointer-events: none;
}

/* ── Features Section ── */

.section--features {
  background: var(--c-grey-100);
}

.features {
  margin-top: var(--space-5);
}

.feature {
  text-align: left;
  padding: var(--space-4);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--c-white);
  border-radius: var(--r-md);
  margin-bottom: var(--space-3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

.feature__text {
  color: var(--c-grey-700);
  line-height: var(--lh-base);
}

/* ── Insights / Blog Cards ── */

.section--insights { background: var(--c-white); }

.insights { margin-top: var(--space-5); }

.insights--single {
  display: flex;
  justify-content: center;
}

.insights--single .insight {
  max-width: 560px;
  width: 100%;
}

.insight {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-grey-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.insight:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.insight__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-grey-100);
}

.insight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insight:hover .insight__media img {
  transform: scale(1.04);
}

.insight__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-grey-100), var(--c-grey-200));
}

.insight__body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.insight__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-small);
  color: var(--c-grey-500);
  font-weight: 500;
}

.insight__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--c-grey-300);
}

.insight__title {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.insight__title a {
  color: var(--c-black);
  text-decoration: none;
}

.insight__title a:hover { color: var(--c-orange); }

.insight__excerpt {
  color: var(--c-grey-700);
  font-size: var(--fs-small);
  line-height: var(--lh-base);
}

/* ── Cards (generic) ── */

.card {
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card__image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card__body {
  padding: var(--space-4);
}

.card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-2);
}

.card__subtitle {
  color: var(--c-orange);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.card__text {
  color: var(--c-grey-700);
  font-size: var(--fs-small);
}

.card--dark {
  background: var(--c-grey-900);
  color: var(--c-white);
}

.card--dark .card__text {
  color: var(--c-grey-300);
}

/* ── Footer ── */

.site-footer {
  position: relative;
  background: radial-gradient(ellipse at top right, #2a2425 0%, var(--c-black) 70%);
  color: var(--c-grey-300);
  padding-block: var(--space-7) var(--space-5);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.site-footer::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 144, 21, 0.15), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}

.site-footer .container { position: relative; z-index: 1; }

.site-footer a {
  color: var(--c-grey-300);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer a:hover { color: var(--c-orange); }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-5);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__heading {
  color: var(--c-white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.footer__about {
  margin-top: var(--space-3);
  color: var(--c-grey-500);
  line-height: 1.6;
  max-width: 340px;
}

.footer__col ul { list-style: none; }

.footer__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
}

.footer__heading--spaced { margin-top: var(--space-5); }

.footer__email { color: var(--c-orange); }

.footer__social {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--c-grey-300);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--c-orange);
  color: var(--c-white);
  border-color: var(--c-orange);
}

.footer__tagline {
  color: var(--c-orange);
  font-weight: 600;
  font-style: italic;
}

.footer__bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-small);
  color: var(--c-grey-500);
}

@media (max-width: 768px) {
  .footer__bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}

/* ── Forms ── */

.form__group { margin-bottom: var(--space-4); }

.form__label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-1);
  font-size: var(--fs-small);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.75rem var(--space-3);
  border: 1px solid var(--c-grey-200);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: var(--fs-body);
  transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px var(--c-orange-100);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__hp { position: absolute; left: -9999px; }

/* ── CTA Strip ── */

.cta-strip {
  position: relative;
  background: linear-gradient(135deg, var(--c-orange) 0%, #D17A0A 100%);
  color: var(--c-white);
  text-align: center;
  padding-block: var(--space-7);
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-d.svg');
  background-size: 280px;
  opacity: 0.18;
  pointer-events: none;
}

.cta-strip .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-strip__title {
  margin-bottom: var(--space-3);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.cta-strip__text {
  font-size: 1.0625rem;
  opacity: 0.95;
  margin-bottom: var(--space-5);
  line-height: 1.5;
}

.btn--ghost-on-orange {
  background: var(--c-white);
  color: var(--c-orange);
  border-color: var(--c-white);
}

.btn--ghost-on-orange:hover {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}

/* ── Testimonial ── */

.section--testimonial {
  background: var(--c-grey-100);
}

/* ── Language Switcher ── */

.lang-switch ul {
  display: inline-flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 3px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.lang-switch li {
  margin: 0;
}

.lang-switch a {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-grey-400);
  text-decoration: none;
  border-radius: 999px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.lang-switch a:hover {
  color: var(--c-white);
}

.lang-switch .current-lang a {
  background: var(--c-orange);
  color: var(--c-black);
}

/* ── Inner Page Hero (About / Privacy / Articles / Single) ── */

.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #2a2425, var(--c-black));
  padding: var(--space-7) 0 var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.page-hero__glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 144, 21, 0.18), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-orange);
  margin-bottom: var(--space-2);
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin: 0 0 var(--space-3);
}

.page-hero__breadcrumb {
  font-size: var(--fs-small);
  color: var(--c-grey-400);
}

.page-hero__breadcrumb a {
  color: var(--c-grey-300);
  text-decoration: none;
}

.page-hero__breadcrumb a:hover {
  color: var(--c-orange);
}

.page-hero__breadcrumb-sep {
  margin: 0 var(--space-2);
  color: var(--c-grey-600);
}

/* ── Entry Content (Gutenberg block typography for page/post content) ── */

.entry-content {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-grey-800);
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-black);
  margin: var(--space-6) 0 var(--space-3);
}

.entry-content h3 {
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--c-black);
  margin: var(--space-5) 0 var(--space-2);
}

.entry-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-black);
  margin: var(--space-4) 0 var(--space-2);
}

.entry-content p {
  margin: 0 0 var(--space-3);
}

.entry-content a {
  color: var(--c-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.entry-content a:hover {
  color: var(--c-orange-300);
}

.entry-content strong {
  color: var(--c-black);
  font-weight: 600;
}

.entry-content ul,
.entry-content ol {
  padding-left: var(--space-5);
  margin: 0 0 var(--space-4);
}

.entry-content li {
  margin-bottom: var(--space-2);
}

.entry-content li::marker {
  color: var(--c-orange);
}

.entry-content blockquote {
  border-left: 3px solid var(--c-orange);
  padding: var(--space-1) 0 var(--space-1) var(--space-4);
  margin: var(--space-5) 0;
  font-size: 1.25rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--c-grey-700);
}

.entry-content img,
.entry-content figure {
  max-width: 100%;
  height: auto;
  margin: var(--space-5) 0;
}

.entry-content img {
  border-radius: 8px;
}

.entry-content figure figcaption {
  font-size: var(--fs-small);
  color: var(--c-grey-500);
  text-align: center;
  margin-top: var(--space-2);
}

.entry-content code {
  background: var(--c-grey-100);
  color: var(--c-black);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.entry-content pre {
  background: var(--c-black);
  color: var(--c-grey-200);
  padding: var(--space-4);
  border-radius: 8px;
  overflow-x: auto;
  margin: var(--space-5) 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.entry-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.entry-content hr {
  border: 0;
  height: 1px;
  background: var(--c-grey-200);
  margin: var(--space-6) 0;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-5) 0;
  font-size: var(--fs-small);
}

.entry-content th,
.entry-content td {
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--c-grey-200);
  text-align: left;
}

.entry-content th {
  font-weight: 600;
  color: var(--c-black);
  background: var(--c-grey-100);
}

.entry-content > *:last-child {
  margin-bottom: 0;
}
