/* ==========================================================================
   SOFTWIZEA — Design System
   Tokens, base, layout primitives
   ========================================================================== */

:root {
  /* Color */
  --bg: #0b0810;
  --bg-alt: #100b15;
  --bg-panel: #140f19;
  --surface: #1d1520;
  --surface-2: #251a29;
  --mauve: #5b4757;
  --mauve-soft: rgba(91, 71, 87, 0.35);
  --line: rgba(245, 241, 246, 0.09);
  --line-strong: rgba(245, 241, 246, 0.16);

  --text: #f5f1f6;
  --text-muted: #b4a6bc;
  --text-faint: #7d7086;

  --accent: #e6299b;
  --accent-2: #8b2fe0;
  --accent-soft: rgba(230, 41, 155, 0.14);
  --accent-line: rgba(230, 41, 155, 0.4);
  --gradient-brand: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --gradient-text: linear-gradient(90deg, #ff6fc8 0%, #e6299b 45%, #8b2fe0 100%);
  --gradient-glow: radial-gradient(circle, rgba(230, 41, 155, 0.35) 0%, rgba(139, 47, 224, 0.12) 45%, transparent 70%);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --container: 1240px;
  --container-narrow: 860px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --space-section: clamp(72px, 10vw, 152px);
  --space-section-sm: clamp(48px, 6vw, 96px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------- reset -------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: 24px;
}

section {
  position: relative;
}

.section-pad {
  padding-block: var(--space-section);
  
}

.section-pad-sm {
  padding-block: var(--space-section-sm);
}

.section-Review-rev {
  padding-block: var(--space-section);
  padding-top: 200x;
  padding-bottom: 145px;
  
}

/* ---------------------------------- type -------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px var(--accent);
  flex-shrink: 0;
}

.h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.6rem);
  font-weight: 600;
}

.h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
}

.h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 60ch;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
}

.section-head.center {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --------------------------------- buttons ------------------------------- */

.btn {
  --btn-pad-y: 15px;
  --btn-pad-x: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(230, 41, 155, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(230, 41, 155, 0.7);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.btn-sm {
  --btn-pad-y: 10px;
  --btn-pad-x: 20px;
  font-size: 13.5px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), gap 0.3s var(--ease);
}

.btn-arrow:hover {
  color: var(--accent);
  border-color: var(--accent);
  gap: 12px;
}

.btn-arrow svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ------------------------------ scroll reveal ---------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.34s; }

/* ==========================================================================
   BACKGROUND ATMOSPHERE
   ========================================================================== */

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.glow {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-glow);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.glow-drift {
  animation: drift 22s ease-in-out infinite alternate;
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, -4%) scale(1.08); }
  100% { transform: translate(-3%, 3%) scale(0.98); }
}

.dot-grid {
  position: absolute;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(circle, rgba(245, 241, 246, 0.14) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 22px;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(11, 8, 16, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
  z-index: 110;
}

.brand-mark {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding-block: 6px;
  transition: color 0.3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-brand);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}

.nav-socials a:hover {
  border-color: var(--accent-line);
  color: var(--accent);
  transform: translateY(-2px);
}

.nav-socials svg {
  width: 14px;
  height: 14px;
}

.nav-toggle {
  display: none;
  z-index: 110;
  width: 32px;
  height: 22px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.nav-toggle.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(11, 8, 16, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
    z-index: 105;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-links a { font-size: 22px; color: var(--text); }
  .nav-right .nav-socials { display: none; }
  .nav-right .btn { display: none; }
  .nav-links.is-open ~ .nav-right .nav-socials {
    display: flex;
    position: fixed;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 106;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  /*position: relative;
  padding-top: clamp(140px, 20vw, 200px);
  padding-bottom: clamp(64px, 8vw, 96px);
  overflow: hidden;*/
  position: relative;
  padding-top: clamp(100px, 20vw, 120px);
  padding-bottom: clamp(50px, 8vw, 60px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-copy .eyebrow { margin-bottom: 22px; }

.hero-copy h1 {
  margin-bottom: 22px;
}

.hero-typed {
  font-family: var(--font-mono);
  color: var(--accent);
}

.hero-copy .lede {
  margin-bottom: 34px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding-top: 30px;
  
  color: var(--text-faint);
}

.hero-meta .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #59e07d;
  box-shadow: 0 0 8px #59e07d;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

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

.hero-strip {
  margin-top: clamp(48px, 7vw, 80px);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-strip-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-strip-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

/* ---- workflow diagram (signature element) ---- */

.workflow-viz {
  position: relative;
  aspect-ratio: 1 / 1.02;
  z-index: 2;
}

.workflow-viz svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wf-line {
  fill: none;
  stroke: url(#wf-line-gradient);
  stroke-width: 1.6;
  stroke-dasharray: 6 7;
  opacity: 0.55;
  animation: wf-flow 2.4s linear infinite;
}

@keyframes wf-flow {
  to { stroke-dashoffset: -130; }
}

.wf-particle {
  fill: #ffb8ea;
  filter: drop-shadow(0 0 6px var(--accent));
}

.wf-node-bg {
  fill: var(--surface);
  stroke: var(--line-strong);
  stroke-width: 1.2;
  transition: stroke 0.4s var(--ease);
}

.wf-node {
  cursor: default;
}

.wf-node:hover .wf-node-bg {
  stroke: var(--accent);
}

.wf-node-glow {
  fill: url(#wf-node-glow);
  opacity: 0.9;
}

.wf-node-icon {
  stroke: var(--text);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wf-node.is-core .wf-node-icon {
  stroke: #ffe1f5;
}

.wf-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  fill: var(--text-muted);
  text-anchor: middle;
  letter-spacing: 0.02em;
}

.wf-node.is-core .wf-label {
  fill: var(--text);
}

.wf-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0;
  transform-origin: center;
  animation: wf-ring 3s var(--ease) infinite;
}

@keyframes wf-ring {
  0% { opacity: 0.55; transform: scale(0.85); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ==========================================================================
   CARDS
   ========================================================================== */

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

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.feature-card {
  background: linear-gradient(155deg, var(--mauve-soft), rgba(29, 21, 32, 0.5));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 0%), rgba(230, 41, 155, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-line);
}

.feature-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-card .icon svg { width: 20px; height: 20px; }

.feature-card h4 {
  font-size: 15px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ==========================================================================
   GLOBAL PRESENCE / MAP
   ========================================================================== */

.presence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.map-wrap {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 20% 30%, rgba(139, 47, 224, 0.16), transparent 55%), var(--bg-panel);
}

.map-wrap svg { width: 100%; height: 100%; }

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
}

.map-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(230, 41, 155, 0.22);
}

.map-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: wf-ring 2.4s var(--ease) infinite;
}

.presence-copy h2 { margin-bottom: 18px; }
.presence-copy p { margin-bottom: 28px; }

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

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

.marquee-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-faint);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s var(--ease);
}

.marquee-item:hover { color: var(--text); }

.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-faint);
}

/* ==========================================================================
   CASE STUDIES
   ========================================================================== */

.case-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.case-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-4px);
}

.case-card:nth-child(even) { grid-template-columns: 1fr 1fr; }
.case-card:nth-child(even) .case-visual { order: 2; }

@media (max-width: 800px) {
  .case-card, .case-card:nth-child(even) { grid-template-columns: 1fr; }
  .case-card:nth-child(even) .case-visual { order: 0; }
}

.case-copy {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.case-copy .mono-label { color: var(--accent); }

.case-copy h3 { margin-bottom: 4px; }
.case-copy p { color: var(--text-muted); font-size: 14.5px; }

.case-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.case-visual {
  position: relative;
  background: linear-gradient(155deg, var(--surface-2), var(--bg-panel));
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.case-visual svg { width: 100%; height: 100%; }

/* ==========================================================================
   STATS
   ========================================================================== */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 48px;
}

@media (max-width: 760px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */

.testimonial {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  position: relative;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 4px;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 26px;
}

.testimonial cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.testimonial .t-name {
  font-weight: 600;
  font-size: 15px;
}

.testimonial .t-role {
  color: var(--text-faint);
  font-size: 13.5px;
  font-family: var(--font-mono);
}

.t-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.t-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: all 0.35s var(--ease);
}

.t-dots button.active {
  background: var(--accent);
  width: 22px;
  border-radius: 4px;
}

/* ==========================================================================
   CTA BAND (email)
   ========================================================================== */

.cta-band {
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.cta-band .mono-label { margin-bottom: 14px; display: block; }

.cta-band h2 {
  margin-bottom: 14px;
}

.cta-band a.cta-email {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-line);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.cta-band a.cta-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.cta-band p.cta-sub {
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 14px;
}

/* ==========================================================================
   FORM (Let's get started)
   ========================================================================== */

.form-panel {
  max-width: 640px;
  margin-inline: auto;
  background: linear-gradient(160deg, var(--mauve-soft), rgba(29, 21, 32, 0.6));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 44px);
}

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

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

.field input,
.field textarea {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 14.5px;
  color: var(--text);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.4);
}

.field textarea { resize: vertical; min-height: 110px; }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-faint);
}

.checkbox-row input {
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
}

.file-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.file-btn {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
  cursor: pointer;
}

.file-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.file-hint {
  font-size: 12.5px;
  color: var(--text-faint);
}

.form-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 16px;
}

.underline-swipe {
  position: relative;
  display: inline-block;
}

.underline-swipe::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.section-head.center .underline-swipe::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 64px 28px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 34ch;
  margin-top: 16px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14.5px;
  font-style: italic;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--accent); }

.footer-col.socials ul {
  flex-direction: row;
  gap: 10px;
}

.footer-col.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-style: normal;
}

.footer-col.socials a svg { width: 14px; height: 14px; }
.footer-col.socials a:hover { border-color: var(--accent-line); background: var(--accent-soft); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-faint);
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a:hover { color: var(--text); }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */

.page-hero {
  /*padding-top: clamp(150px, 20vw, 210px);
  padding-bottom: clamp(56px, 8vw, 88px);
  position: relative;
  overflow: hidden;
  text-align: center;*/

  padding-top: 145px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero .section-head { margin-bottom: 0; }

.page-hero .lede { margin-inline: auto; }

.breadcrumb-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.breadcrumb-tag .dot-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  font-size: 10px;
  color: #fff;
}

/* utility */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.service-highlight {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  background: linear-gradient(155deg, var(--mauve-soft), transparent);
  margin-top: 0px;
  position: relative;
  z-index: 3;
}

@media (max-width: 700px) {
  .service-highlight { margin-top: -70px; }
}

.service-highlight h3 { margin-bottom: 10px; }
.service-highlight p { color: var(--text-muted); max-width: 46ch; }

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 38px);
  background: var(--bg-panel);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-detail:hover {
  border-color: var(--accent-line);
  transform: translateY(-4px);
}

@media (max-width: 640px) {
  .service-detail { grid-template-columns: 1fr; }
}

.service-detail .icon-lg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.service-detail .icon-lg svg { width: 26px; height: 26px; }

.service-detail-body .mono-label {
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.service-detail-body h3 { margin-bottom: 12px; }
.service-detail-body p { color: var(--text-muted); margin-bottom: 20px; max-width: 68ch; }

.tag-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tag-row .pill { font-size: 12px; padding: 6px 12px; }

.service-detail-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   TIMELINE (Our History)
   ========================================================================== */

.timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.timeline-scroll-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}

.timeline-scroll-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .timeline-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .timeline-track { grid-template-columns: 1fr; }
}

.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: var(--mauve-soft);
  transition: all 0.4s var(--ease);
}

.timeline-item.is-future {
  background: transparent;
  opacity: 0.5;
}

.timeline-item:hover { transform: translateY(-4px); border-color: var(--accent-line); }

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.timeline-item p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   EXECUTIVE TEAM
   ========================================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

@media (max-width: 700px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .team-grid { grid-template-columns: 1fr; }
}

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.avatar-ring {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient-brand);
  margin-bottom: 18px;
  transition: transform 0.4s var(--ease);
}

.team-card:hover .avatar-ring { transform: scale(1.05) rotate(4deg); }

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.team-card h4 { font-size: 16px; margin-bottom: 2px; }
.team-card .role { color: var(--accent); font-family: var(--font-mono); font-size: 12.5px; }

/* ==========================================================================
   ACHIEVEMENTS
   ========================================================================== */

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

@media (max-width: 780px) {
  .achieve-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .achieve-grid { grid-template-columns: 1fr; }
}

.achieve-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--bg-panel);
  transition: all 0.35s var(--ease);
}

.achieve-card:hover {
  border-color: var(--accent-line);
  background: var(--mauve-soft);
}

.achieve-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.achieve-card .icon svg { width: 22px; height: 22px; }

.achieve-card h5 {
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.achieve-card p { font-size: 13px; color: var(--text-faint); }

/* ==========================================================================
   WORK WITH US
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.why-item {
  display: flex;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--bg-panel);
  transition: all 0.35s var(--ease);
}

.why-item:hover {
  border-color: var(--accent-line);
  transform: translateY(-3px);
}

.why-item .check {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.why-item .check svg { width: 16px; height: 16px; }

.why-item h4 { font-size: 15.5px; margin-bottom: 8px; }
.why-item p { font-size: 13.5px; color: var(--text-muted); }

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

@media (max-width: 760px) {
  .perk-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .perk-grid { grid-template-columns: 1fr; }
}

.perk-card {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px;
  background: linear-gradient(155deg, var(--mauve-soft), transparent);
  transition: all 0.35s var(--ease);
}

.perk-card:hover { transform: translateY(-4px); border-color: var(--accent-line); }

.perk-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-inline: auto;
  margin-bottom: 16px;
}

.perk-card .icon svg { width: 22px; height: 22px; }

.perk-card p {
  font-size: 14px;
  font-weight: 500;
}

.position-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.position-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  background: var(--bg-panel);
  transition: all 0.35s var(--ease);
}

.position-card:hover {
  border-color: var(--accent-line);
  background: var(--mauve-soft);
  transform: translateY(-3px);
}

.position-card h4 { font-size: 16px; margin-bottom: 6px; }
.position-card .role-type {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  font-style: italic;
}

.position-card .arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.position-card:hover .arrow-btn {
  background: var(--gradient-brand);
  border-color: transparent;
  transform: rotate(45deg);
}

.position-card .arrow-btn svg { width: 16px; height: 16px; }
