/* =========================================================
   Colón Computer Services — Site stylesheet
   ========================================================= */

:root {
  /* Brand palette */
  --brand-deep:  #1A3FB8;
  --brand-blue:  #1E8FE0;
  --brand-cyan:  #00C9E6;
  --brand-mint:  #6CE5D6;
  --brand-navy:  #2A2D52;

  /* Accent (driven by Tweaks) */
  --accent:      #00C9E6;
  --accent-2:    #1E8FE0;
  --accent-soft: rgba(0, 201, 230, 0.14);

  /* Surfaces */
  --bg:          #FFFFFF;
  --bg-soft:     #F4FAFC;
  --bg-elev:     #FFFFFF;
  --bg-hero:     linear-gradient(135deg, #1E8FE0 0%, #00C9E6 60%, #6CE5D6 100%);
  --bg-hero-deep:linear-gradient(135deg, #1A3FB8 0%, #1E8FE0 55%, #00C9E6 100%);

  --ink:         #2A2D52;
  --ink-2:       #4B4F78;
  --ink-3:       #8388A8;
  --line:        #E5ECF2;
  --line-2:      #EFF4F8;

  --radius-sm:   10px;
  --radius:      18px;
  --radius-lg:   28px;
  --radius-xl:   44px;

  --shadow-sm:   0 2px 8px rgba(26, 63, 184, 0.06);
  --shadow:      0 12px 36px rgba(26, 63, 184, 0.10);
  --shadow-lg:   0 30px 80px rgba(26, 63, 184, 0.18);

  --container:   1240px;
  --pad:         clamp(20px, 4vw, 56px);

  --font-display: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  --font-body:    "Nunito Sans",       "Plus Jakarta Sans", system-ui, sans-serif;
}

[data-theme="dark"] {
  --bg:          #0B1230;
  --bg-soft:     #111A40;
  --bg-elev:     #16204C;
  --ink:         #ECF2FF;
  --ink-2:       #B7C2E5;
  --ink-3:       #7F89B5;
  --line:        rgba(255,255,255,0.10);
  --line-2:      rgba(255,255,255,0.06);

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.30);
  --shadow:      0 12px 36px rgba(0,0,0,0.40);
  --shadow-lg:   0 30px 80px rgba(0,0,0,0.55);
}

/* =========================================================
   Base
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}

h1 { font-weight: 800; font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-weight: 700; font-size: clamp(1.2rem, 1.6vw, 1.4rem); letter-spacing: -0.01em;}
h4 { font-weight: 700; font-size: 1.05rem; }

p { margin: 0; color: var(--ink-2); }

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

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
}

[data-theme="dark"] .eyebrow { color: #fff; background: rgba(255,255,255,0.10); }

/* =========================================================
   Nav
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}

[data-theme="dark"] .nav {
  background: rgba(11, 18, 48, 0.86);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand__icon { width: 38px; height: 38px; object-fit: contain; }

.brand__name {
  display: flex; flex-direction: column;
  line-height: 1; font-size: 14px;
}
.brand__name span:first-child { font-weight: 800; }
.brand__name span:last-child  { font-weight: 600; color: var(--ink-3); font-size: 11px; letter-spacing: 0.04em;}

.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 15px;
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav__links a.is-active {
  color: var(--brand-deep);
  background: var(--accent-soft);
}
[data-theme="dark"] .nav__links a.is-active { color: #fff; background: rgba(255,255,255,0.10); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  font-family: var(--font-display);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--line);
}
.lang-toggle button {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.lang-toggle button.is-on {
  background: var(--ink);
  color: var(--bg);
}

/* Hamburger (mobile only) */
.nav__burger { display: none; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__inner { gap: 12px; }
  .nav__cta { padding: 10px 16px; font-size: 14px; }
  .brand__name { display: none; }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--accent {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 201, 230, 0.35);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 201, 230, 0.50); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { background: var(--bg-soft); }

.btn--white {
  background: #fff;
  color: var(--brand-deep);
}
.btn--white:hover { transform: translateY(-2px); }

/* =========================================================
   Pills / decorative shapes
   ========================================================= */

.pill {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(0.5px);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-hero);
  color: #fff;
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(60px, 9vw, 140px);
  isolation: isolate;
}

.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__deco .pill {
  background: rgba(255,255,255,0.14);
  animation: float 12s ease-in-out infinite;
}
.hero__deco .pill--1 { top: -60px;  left: -80px; width: 360px; height: 140px; transform: rotate(-12deg); }
.hero__deco .pill--2 { bottom: -90px; right: -60px; width: 520px; height: 200px; transform: rotate(8deg); background: rgba(255,255,255,0.10); animation-delay: -3s;}
.hero__deco .pill--3 { top: 30%; right: 8%; width: 180px; height: 70px; background: rgba(108,229,214,0.35); animation-delay: -6s; }
.hero__deco .pill--4 { bottom: 18%; left: 6%; width: 100px; height: 40px; background: rgba(0,201,230,0.50); animation-delay: -9s; }

@keyframes float {
  0%, 100% { transform: translateY(0)   rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-22px) rotate(var(--r, 0deg)); }
}

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

[data-hero-layout="image-left"] .hero__grid { grid-template-columns: 1fr 1.05fr; }
[data-hero-layout="image-left"] .hero__copy  { order: 2; }
[data-hero-layout="image-left"] .hero__media { order: 1; }

[data-hero-layout="full-bleed"] .hero__grid {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
[data-hero-layout="full-bleed"] .hero__media { display: none; }
[data-hero-layout="full-bleed"] .hero { padding-bottom: clamp(48px, 7vw, 96px); }
[data-hero-layout="full-bleed"] .hero__actions { justify-content: center; }
[data-hero-layout="full-bleed"] .hero__bullets { justify-content: center; }
[data-hero-layout="full-bleed"] .hero__copy { max-width: 820px; }

.hero__copy h1 {
  color: #fff;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  letter-spacing: -0.025em;
  padding-bottom: 0.08em;
}
.hero__copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #FFFFFF, #BFFCFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.08em;
}

.hero__lede {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin-top: 18px;
  max-width: 56ch;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__bullets {
  display: flex;
  gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 600;
}
.hero__bullets span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__bullets svg { width: 16px; height: 16px; }

.hero__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.hero__media .blob {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.30), rgba(255,255,255,0) 60%);
}
.hero__media img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(10, 20, 60, 0.35));
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { display: none; }
  [data-hero-layout="image-left"] .hero__copy { order: 1; }
}

/* =========================================================
   Sections
   ========================================================= */

.section {
  padding: clamp(72px, 9vw, 140px) 0;
  position: relative;
}
.section--soft { background: var(--bg-soft); }
.section--ink  { background: var(--brand-navy); color: #fff; }
.section--ink h2 { color: #fff; }
.section--ink p  { color: rgba(255,255,255,0.78); }

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section__head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section__head--center .eyebrow { justify-self: center; }
.section__head--center p { margin-left: auto; margin-right: auto; }

.section__head p {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  max-width: 60ch;
}

/* =========================================================
   Service cards
   ========================================================= */

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

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

.svc-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
  isolation: isolate;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  z-index: -1;
  transition: transform .4s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 201, 230, 0.40);
}
.svc-card:hover::before { transform: scale(1.4) translate(-10px, -10px); }

.svc-card__icon {
  width: 56px; height: 56px;
  object-fit: contain;
}
.svc-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}
.svc-card__desc { font-size: 0.95rem; color: var(--ink-2); }

.svc-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
  padding-top: 8px;
}
.svc-card__link svg { width: 14px; height: 14px; transition: transform .15s ease; }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* Card style variants */
[data-card-style="icon-only"] .svc-card__desc,
[data-card-style="icon-only"] .svc-card__link { display: none; }
[data-card-style="icon-only"] .svc-card { padding: 36px 28px; align-items: center; text-align: center; }
[data-card-style="icon-only"] .svc-card__icon { width: 72px; height: 72px; }

[data-card-style="image-led"] .svc-card { padding: 0; }
[data-card-style="image-led"] .svc-card__image-wrap {
  background: var(--bg-soft);
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line-2);
}
[data-card-style="image-led"] .svc-card__image-wrap img { width: 44%; height: auto; object-fit: contain; }
[data-card-style="image-led"] .svc-card__body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
[data-card-style="image-led"] .svc-card__body .svc-card__icon { display: none; }
:not([data-card-style="image-led"]) .svc-card__image-wrap { display: none !important; }
:not([data-card-style="image-led"]) .svc-card__body { padding: 0; display: contents; }

/* =========================================================
   Problem section
   ========================================================= */

.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .problem { grid-template-columns: 1fr; } }

.problem__media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
}
.problem__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(26, 63, 184, 0.18));
}
.problem__media::before {
  content: "";
  position: absolute;
  inset: 10% 10% 10% 10%;
  background: radial-gradient(circle at 50% 60%, var(--accent-soft), transparent 65%);
  z-index: 0;
}

.problem__list {
  list-style: none;
  padding: 0; margin: 32px 0 0;
  display: grid; gap: 14px;
}
.problem__list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1.02rem; color: var(--ink-2);
}
.problem__list .tick {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.problem__list .tick svg { width: 14px; height: 14px; }

/* =========================================================
   Expertise (image-led calm)
   ========================================================= */

.expertise {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .expertise { grid-template-columns: 1fr; } }
.expertise__media img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.kpi {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.kpi__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kpi__label { font-size: 13px; color: var(--ink-3); margin-top: 4px; font-weight: 600;}

/* =========================================================
   Testimonials
   ========================================================= */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }

.t-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.t-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.45;
  font-weight: 600;
}
.t-card__by {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.t-card__av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: var(--font-display);
}
.t-card__name { font-weight: 700; color: var(--ink); font-size: 14px; }
.t-card__role { font-size: 12px; color: var(--ink-3); }
.t-card__stars { color: #F7B500; letter-spacing: 2px; font-size: 14px; }

/* =========================================================
   CTA banner
   ========================================================= */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--bg-hero-deep);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 24px;
  isolation: isolate;
}
@media (max-width: 880px) { .cta { grid-template-columns: 1fr; } }

.cta::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 360px; height: 140px;
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
  transform: rotate(8deg);
  z-index: -1;
}
.cta::after {
  content: "";
  position: absolute;
  left: -40px; bottom: -50px;
  width: 240px; height: 90px;
  background: rgba(108,229,214,0.30);
  border-radius: 999px;
  transform: rotate(-10deg);
  z-index: -1;
}
.cta h2 { color: #fff; }
.cta p  { color: rgba(255,255,255,0.85); margin-top: 12px; max-width: 50ch; }

.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end;}
@media (max-width: 880px) { .cta__actions { justify-content: flex-start; } }

/* =========================================================
   Footer
   ========================================================= */

footer.footer {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.78);
  padding: 72px 0 28px;
}
[data-theme="dark"] footer.footer { background: #060A22; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }

.footer__brand {
  display: flex; flex-direction: column; gap: 16px;
}
.footer__brand img { width: 200px; }
.footer__brand p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 32ch; }

.footer h4 { color: #fff; font-size: 12px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 14px;}

.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.72); font-size: 14px; transition: color .15s ease; }
.footer a:hover { color: #fff; }

.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.5);
  gap: 16px; flex-wrap: wrap;
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img, .hero__deco .pill { animation: none; }
}

/* =========================================================
   Services page — feature blocks
   ========================================================= */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line-2);
}
.feature:last-child { border-bottom: none; }
.feature--reverse .feature__media { order: 2; }

@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
}

.feature__media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  overflow: hidden;
  isolation: isolate;
}
.feature__media::before {
  content: "";
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle, var(--accent-soft), transparent 60%);
  z-index: 0;
}
.feature__media img,
.feature__media .gif {
  position: relative;
  z-index: 1;
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.feature__copy .eyebrow { margin-bottom: 16px; }
.feature__copy h2 { margin-bottom: 16px; }
.feature__copy p  { font-size: 1.05rem; }

.feature__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}
.feature__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.98rem;
  color: var(--ink-2);
}
.feature__list .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  margin-top: 9px; flex-shrink: 0;
}

/* =========================================================
   About — team + values
   ========================================================= */

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .values { grid-template-columns: repeat(2, 1fr); } }

.value {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.value__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent-2);
  letter-spacing: 0.06em;
}
.value h3 { margin: 10px 0 6px; }
.value p { font-size: 0.96rem; }

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }

.member {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.member__pic {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(30, 143, 224, 0.30), rgba(0, 201, 230, 0.30));
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
  color: #fff;
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.member__pic::after {
  content: ""; position: absolute; inset: auto -10% -10% -10%; height: 60%;
  background: radial-gradient(circle at 50% 100%, rgba(0,0,0,0.20), transparent 60%);
}
.member__pic span { position: relative; z-index: 1; padding: 30px; line-height: 1; }
.member__body { padding: 20px 22px 22px; }
.member__name { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.member__role { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

/* =========================================================
   Contact
   ========================================================= */

.contact {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }

.contact__form {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-sm);
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.field input, .field textarea, .field select {
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .field--row { grid-template-columns: 1fr; } }

.field--error input, .field--error textarea, .field--error select {
  border-color: #E45858;
}
.field__err {
  font-size: 12px;
  color: #E45858;
  font-weight: 600;
}

.contact__success {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  padding: 20px 22px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
}

.contact__info {
  display: flex; flex-direction: column; gap: 16px;
}
.info-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.info-card__icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card__icon svg { width: 20px; height: 20px; }
.info-card h4 { color: var(--ink); margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--ink-2); font-size: 0.95rem; }

/* =========================================================
   Tweaks panel
   ========================================================= */

.tweaks {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: 320px;
  max-height: calc(100vh - 36px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-body);
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.tweaks.is-open { display: flex; }
.tweaks__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-2);
}
.tweaks__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 16px;
  color: var(--ink);
}
.tweaks__close {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.tweaks__close:hover { background: var(--line); color: var(--ink); }
.tweaks__body {
  padding: 14px 18px 18px;
  display: flex; flex-direction: column; gap: 18px;
  overflow-y: auto;
}
.tweak {
  display: flex; flex-direction: column; gap: 8px;
}
.tweak__lbl {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tweak-seg {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  background: var(--bg-soft);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--line);
  gap: 2px;
}
.tweak-seg button {
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  border-radius: 9px;
  color: var(--ink-2);
}
.tweak-seg button.is-on {
  background: var(--ink);
  color: var(--bg);
}
.tweak-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.tweak-swatches button {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 2px solid transparent;
  position: relative;
  transition: transform .15s ease;
}
.tweak-swatches button.is-on {
  border-color: var(--ink);
  transform: scale(1.04);
}
.tweak-swatches button::after {
  content: ""; position: absolute; inset: 4px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--c2, #1E8FE0), var(--c1, #00C9E6));
}
