:root {
  --ink: #0c0d12;
  --ink-soft: #111219;
  --paper: #f3f0e9;
  --paper-raised: #faf8f3;

  --violet: #7559f5;
  --violet-deep: #6246e8;
  --violet-soft: #a895ff;
  --cyan: #7cd8e8;

  --text: #111217;
  --muted: #656770;
  --muted-dark: #a3a5ae;

  --line: rgba(12, 13, 18, 0.14);
  --line-dark: rgba(255, 255, 255, 0.13);

  --page: 1360px;
  --radius: 22px;
}
html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  overflow-x: hidden;

  color: var(--text);
  background: var(--ink);

  font-family:
    "DM Sans",
    "Helvetica Neue",
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


body.menu-open {
  overflow: hidden;
}


img,
svg,
video {
  display: block;
}


img,
video {
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input {
  color: inherit;
  font: inherit;
}


button {
  cursor: pointer;
}


.page-width {
  width: min(var(--page), calc(100% - 80px));
  margin-inline: auto;
}


.paper-section {
  background: var(--paper);
}


.dark-section {
  color: #f6f4ef;
  background: var(--ink-soft);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */


.section-label {
  margin: 0;

  color: var(--violet-deep);

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}


.dark-section .section-label {
  color: var(--violet-soft);
}


.section-intro {
  display: grid;
  grid-template-columns:
    minmax(150px, 0.6fr)
    minmax(430px, 1.45fr)
    minmax(250px, 0.65fr);

  align-items: start;
  gap: 44px;
}


.section-intro h2,
.capabilities-intro h2,
.contact-panel h2 {
  margin: -8px 0 0;

  font-size: clamp(44px, 4.9vw, 70px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.058em;
}


.section-copy {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.72;
}


.section-intro-dark .section-copy,
.capabilities-intro .section-copy {
  color: var(--muted-dark);
}


/* =========================================================
   NAVIGATION
   ========================================================= */


.topbar {
  position: absolute;
  z-index: 50;

  top: 0;
  left: 0;

  width: 100%;

  color: var(--text);
  background: rgba(243, 240, 233, 0.78);

  border-bottom: 1px solid var(--line);

  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}


.site-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  min-height: 86px;
}


.header-brand,
.footer-brand {
  width: max-content;
}


.header-brand img,
.footer-brand img {
  width: 188px;
  height: auto;
}


.header-brand img {
  filter: invert(1);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;

  color: rgba(17, 18, 23, 0.62);

  font-size: 12px;
}


.nav-links a,
.site-footer nav a,
.text-link {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}


.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}


.nav-cta {
  justify-self: end;

  display: inline-flex;
  align-items: center;
  gap: 13px;

  min-height: 44px;
  padding: 0 18px;

  color: var(--text);

  border: 1px solid rgba(98, 70, 232, 0.42);
  border-radius: 999px;

  font-size: 12px;
  font-weight: 500;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}


.nav-cta:hover,
.nav-cta:focus-visible {
  color: #fff;
  background: var(--violet-deep);
  border-color: var(--violet-deep);

  transform: translateY(-1px);
}


.nav-cta svg,
.text-link svg {
  width: 15px;
  height: 15px;

  stroke-width: 1.5;
}


.menu-toggle {
  display: none;
  justify-self: end;

  width: 44px;
  height: 44px;
  padding: 0;

  color: var(--text);
  background: transparent;

  border: 1px solid var(--line);
  border-radius: 50%;

  place-items: center;
}


.menu-toggle svg {
  width: 20px;
  height: 20px;

  stroke-width: 1.5;
}


.menu-close-icon {
  display: none;
}


/* =========================================================
   HERO
   ========================================================= */


.hero {
  position: relative;

  min-height: 760px;
  padding: 158px 0 46px;

  overflow: hidden;

  border-bottom: 1px solid var(--line);

  isolation: isolate;
}


.hero-aura {
  position: absolute;
  z-index: -1;

  top: 60px;
  right: 7%;

  width: min(720px, 48vw);
  aspect-ratio: 1.35;

  pointer-events: none;

  opacity: 0.58;
  filter: blur(42px);

  background:
    radial-gradient(
      circle at 70% 36%,
      rgba(117, 89, 245, 0.21),
      transparent 42%
    ),
    radial-gradient(
      circle at 34% 62%,
      rgba(124, 216, 232, 0.17),
      transparent 46%
    );
}


.hero-inner {
  display: flex;
  flex-direction: column;

  min-height: 555px;
}


.hero-content {
  position: relative;
  z-index: 1;
}


.hero h1 {
  max-width: 1250px;
  margin: 0;

  font-size: clamp(72px, 7.1vw, 112px);
  font-weight: 500;
  line-height: 0.89;
  letter-spacing: -0.068em;
}


.hero h1 span,
.hero h1 em {
  display: block;

  white-space: nowrap;
}


.hero h1 em {
  margin-top: 7px;

  font-family: "Instrument Serif", Georgia, serif;
  font-size: 0.92em;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}


.hero-bottom {
  display: grid;
  grid-template-columns: minmax(320px, 500px) auto;
  align-items: end;
  gap: 54px;

  margin-top: 48px;
}


.hero-description {
  margin: 0;

  color: #555861;

  font-size: 16px;
  line-height: 1.62;
}


.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-height: 52px;
  padding: 0 22px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;

  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}


.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}


.button svg {
  width: 16px;
  height: 16px;

  stroke-width: 1.5;
}


.button-violet {
  color: #fff;
  background: var(--violet-deep);

  box-shadow: 0 10px 30px rgba(98, 70, 232, 0.18);
}


.button-violet:hover,
.button-violet:focus-visible {
  background: #7359ed;

  box-shadow: 0 14px 36px rgba(98, 70, 232, 0.26);
}


.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #51535b;

  font-size: 13px;
  font-weight: 500;
}


.text-link:hover,
.text-link:focus-visible {
  color: var(--violet-deep);
}


.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-top: auto;
  padding-top: 28px;

  border-top: 1px solid var(--line);
}


.hero-proof > div {
  display: grid;
  gap: 5px;

  padding-right: 34px;
}


.hero-proof > div + div {
  padding-left: 34px;

  border-left: 1px solid var(--line);
}


.hero-proof strong {
  font-size: 15px;
  font-weight: 600;
}


.hero-proof span {
  color: #6a6c74;

  font-size: 11px;
  letter-spacing: 0.02em;
}


/* =========================================================
   SERVICES
   ========================================================= */


.services-section {
  padding: 126px 0 118px;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;

  margin-top: 70px;
}


.service-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 610px;
  padding: 28px;

  overflow: hidden;

  background: rgba(250, 248, 243, 0.7);

  border: 1px solid var(--line);
  border-radius: 20px;

  box-shadow: 0 8px 26px rgba(20, 20, 25, 0.025);

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}


.service-card:hover {
  transform: translateY(-4px);

  border-color: rgba(98, 70, 232, 0.25);

  box-shadow: 0 18px 44px rgba(20, 20, 25, 0.07);
}


.service-card-featured {
  background:
    linear-gradient(
      145deg,
      rgba(117, 89, 245, 0.075),
      transparent 45%
    ),
    var(--paper-raised);

  border-color: rgba(98, 70, 232, 0.3);
}


.service-meta {
  display: flex;
  align-items: center;
  gap: 12px;

  min-height: 50px;

  color: #777981;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}


.service-meta > span:first-child {
  margin-right: auto;
}


.service-badge {
  padding: 7px 9px;

  color: var(--violet-deep);
  background: rgba(98, 70, 232, 0.08);

  border: 1px solid rgba(98, 70, 232, 0.16);
  border-radius: 999px;

  font-size: 8px;
}


.icon-disc {
  display: grid;
  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  color: var(--violet-deep);

  border: 1px solid rgba(98, 70, 232, 0.28);
  border-radius: 50%;

  place-items: center;
}


.icon-disc svg {
  width: 21px;
  height: 21px;

  stroke-width: 1.4;
}


.service-heading {
  min-height: 195px;
  padding-top: 36px;
}


.service-path {
  margin: 0 0 11px;

  color: var(--violet-deep);

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}


.service-card h3 {
  max-width: 320px;
  margin: 0;

  font-size: clamp(27px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}


.service-summary {
  max-width: 350px;
  margin: 18px 0 0;

  color: #5c5e66;

  font-size: 13px;
  line-height: 1.62;
}


.service-price {
  display: grid;
  gap: 8px;

  margin: 24px 0 0;
  padding: 23px 0;

  border-block: 1px solid var(--line);
}


.service-price span,
.service-footer p span {
  display: block;

  color: #7b7d84;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.service-price strong {
  color: var(--violet-deep);

  font-size: clamp(30px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}


.feature-list {
  display: grid;
  gap: 11px;

  margin: 25px 0;
  padding: 0;

  list-style: none;
}


.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;

  color: #3e4047;

  font-size: 12px;
  line-height: 1.48;
}


.feature-list svg {
  flex: 0 0 auto;

  width: 14px;
  height: 14px;
  margin-top: 2px;

  color: var(--violet-deep);

  stroke-width: 1.9;
}


.service-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;

  margin-top: auto;
  padding-top: 20px;

  border-top: 1px solid var(--line);
}


.service-footer p {
  display: grid;
  gap: 7px;

  margin: 0;

  color: #484a51;

  font-size: 12px;
}


.service-footer a {
  display: grid;
  flex: 0 0 auto;

  width: 43px;
  height: 43px;

  color: var(--text);

  border: 1px solid var(--line);
  border-radius: 50%;

  place-items: center;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}


.service-footer a:hover,
.service-footer a:focus-visible {
  color: #fff;
  background: var(--violet-deep);

  transform: translate(2px, -2px);
}


.service-footer svg {
  width: 16px;
  height: 16px;

  stroke-width: 1.5;
}


.scope-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  margin-top: 24px;

  color: #73757c;

  font-size: 11px;
}


.scope-note p {
  margin: 0;
}


.scope-note a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}


.scope-note a span {
  color: var(--text);

  font-weight: 600;
}


.scope-note svg {
  width: 14px;
  height: 14px;
}


/* =========================================================
   CAPABILITIES + SLIDER
   ========================================================= */


.capabilities-section {
  padding: 128px 0 138px;
}


.capabilities-layout {
  display: grid;
  grid-template-columns:
    minmax(330px, 0.72fr)
    minmax(560px, 1.28fr);

  align-items: start;
  gap: clamp(52px, 6vw, 96px);
}


.capabilities-column,
.transformation-demo {
  min-width: 0;
}


.capability-heading,
.demo-heading {
  min-height: 118px;
  margin-bottom: 26px;
}


.capability-heading .section-label,
.demo-label {
  margin: 0 0 10px;

  color: var(--violet-soft);

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


.capability-heading h2,
.demo-heading h2 {
  max-width: 620px;
  margin: 0;

  color: #f8f6f1;

  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.accordion {
  border-top: 1px solid var(--line-dark);
}


.accordion-item {
  border-bottom: 1px solid var(--line-dark);
}


.accordion-item h3 {
  margin: 0;
}


.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  width: 100%;
  min-height: 70px;
  padding: 0;

  color: #d6d7dc;
  background: transparent;

  border: 0;

  text-align: left;

  transition: color 180ms ease;
}


.accordion-trigger:hover,
.accordion-trigger:focus-visible,
.accordion-trigger[aria-expanded="true"] {
  color: #fff;
}


.accordion-trigger span {
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 500;
  letter-spacing: -0.025em;
}


.accordion-icon {
  flex: 0 0 auto;

  width: 18px;
  height: 18px;

  color: var(--violet-soft);

  stroke-width: 1.4;

  transition: transform 220ms ease;
}


.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}


.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;

  transition: grid-template-rows 240ms ease;
}


.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}


.accordion-panel-inner {
  overflow: hidden;
}


.accordion-panel p {
  max-width: 450px;
  margin: 0;
  padding: 0 44px 22px 0;

  color: #9698a1;

  font-size: 12px;
  line-height: 1.68;
}


.transformation-demo {
  min-width: 0;
}




.demo-heading > p:last-child {
  max-width: 590px;
  margin: 13px 0 0 auto;

  color: #9698a1;

  font-size: 12px;
  line-height: 1.65;
}

.demo-heading {
  max-width: 620px;
  margin-left: auto;

  text-align: right;
}
.comparison {
  position: relative;

  width: 100%;
  aspect-ratio: 1.6 / 1;

  overflow: hidden;

  background: #07080c;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}


.comparison-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  user-select: none;
  pointer-events: none;
}


.comparison-before {
  clip-path: inset(0 40% 0 0);
}


.comparison-labels {
  position: absolute;
  z-index: 4;

  top: 15px;
  right: 15px;
  left: 15px;

  display: flex;
  justify-content: space-between;

  pointer-events: none;
}


.comparison-labels span {
  padding: 8px 10px;

  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 9, 13, 0.7);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.comparison-range {
  position: absolute;
  z-index: 8;
  inset: 0;

  width: 100%;
  height: 100%;
  margin: 0;

  cursor: ew-resize;

  opacity: 0;
}


.comparison-divider {
  position: absolute;
  z-index: 5;

  top: 0;
  bottom: 0;
  left: 60%;

  width: 1px;

  background: rgba(255, 255, 255, 0.78);

  transform: translateX(-50%);

  pointer-events: none;
}


.comparison-handle {
  position: absolute;
  z-index: 6;

  top: 50%;
  left: 60%;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  color: var(--ink);
  background: #fff;

  border-radius: 50%;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);

  transform: translate(-50%, -50%);

  pointer-events: none;
}


.comparison-handle svg {
  width: 15px;
  height: 15px;
  margin-inline: -3px;

  stroke-width: 1.6;
}


.demo-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 16px;
}


.demo-details span {
  padding: 7px 11px;

  color: #a5a7af;

  border: 1px solid var(--line-dark);
  border-radius: 999px;

  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   SELECTED WORK
   ========================================================= */


.work-section {
  padding: 126px 0 110px;

  overflow: hidden;
}


.work-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}


.work-heading .section-intro {
  grid-template-columns:
    minmax(150px, 0.55fr)
    minmax(430px, 1.35fr)
    minmax(250px, 0.65fr);
}


.rail-controls {
  display: flex;
  gap: 8px;
}


.rail-controls button {
  display: grid;

  width: 45px;
  height: 45px;
  padding: 0;

  color: var(--text);
  background: transparent;

  border: 1px solid var(--line);
  border-radius: 50%;

  place-items: center;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}


.rail-controls button:hover,
.rail-controls button:focus-visible {
  color: #fff;
  background: var(--ink);
}


.rail-controls button:disabled {
  cursor: default;

  opacity: 0.28;
}


.rail-controls svg {
  width: 18px;
  height: 18px;

  stroke-width: 1.5;
}


.format-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 52px;
}


.format-chips span {
  padding: 9px 13px;

  color: #575960;

  border: 1px solid var(--line);
  border-radius: 999px;

  font-size: 10px;
}


.project-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 31%);
  gap: 18px;

  margin-top: 24px;
  padding: 10px 6px 52px;

  overflow-x: auto;

  overscroll-behavior-inline: contain;

  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}


.project-rail::-webkit-scrollbar {
  display: none;
}


.project-card {
  min-width: 0;

  overflow: hidden;

  background: var(--paper-raised);

  border: 1px solid var(--line);
  border-radius: 18px;

  box-shadow:
    0 2px 3px rgba(17, 18, 24, 0.025),
    0 13px 32px rgba(17, 18, 24, 0.045);

  scroll-snap-align: start;

  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}


.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-4px);

  box-shadow:
    0 3px 5px rgba(17, 18, 24, 0.035),
    0 20px 46px rgba(17, 18, 24, 0.09);
}


.project-visual {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 10;

  overflow: hidden;

  background: #101117;

  border-bottom: 1px solid var(--line);
}


.project-media-element {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 300ms ease;
}


.project-video {
  pointer-events: none;
}


.project-card:hover .project-media-element {
  filter: brightness(1.035);

  transform: scale(1.018);
}


.project-copy {
  min-height: 195px;
  padding: 23px 24px 26px;
}


.project-copy > div {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #7a7c84;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.project-copy svg {
  width: 14px;
  height: 14px;

  stroke-width: 1.5;
}


.project-copy h3 {
  margin: 27px 0 8px;

  font-size: 25px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}


.project-copy p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.55;
}


/* =========================================================
   COMPACT FORMATS
   ========================================================= */


.formats-band {
  margin-top: 62px;
  padding-top: 58px;

  border-top: 1px solid var(--line);
}


.formats-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 650px);
  align-items: start;
  gap: 42px;
}


.formats-heading h2 {
  margin: -5px 0 0;

  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.052em;
}


.format-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));

  margin-top: 38px;

  border-block: 1px solid var(--line);
}


.format-list article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 118px;
  padding: 19px 16px;

  border-right: 1px solid var(--line);
}


.format-list article:last-child {
  border-right: 0;
}


.format-list svg {
  width: 20px;
  height: 20px;

  color: var(--violet-deep);

  stroke-width: 1.4;
}


.format-list h3 {
  margin: 24px 0 0;

  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
}


/* =========================================================
   PROCESS
   ========================================================= */


.process-section {
  padding: 128px 0 76px;
}


.process-intro {
  margin-bottom: 68px;
}


.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin: 0;
  padding: 0;

  list-style: none;

  border-block: 1px solid var(--line-dark);
}


.process-grid li {
  position: relative;

  min-height: 290px;
  padding: 28px 28px 32px;

  border-right: 1px solid var(--line-dark);
}


.process-grid li:last-child {
  border-right: 0;
}


.process-icon {
  display: grid;

  width: 48px;
  height: 48px;

  color: var(--violet-soft);

  border: 1px solid rgba(168, 149, 255, 0.34);
  border-radius: 50%;

  place-items: center;
}


.process-icon svg {
  width: 21px;
  height: 21px;

  stroke-width: 1.35;
}


.process-number {
  position: absolute;

  top: 42px;
  right: 28px;

  color: #71737c;

  font-size: 9px;
  letter-spacing: 0.13em;
}


.process-grid h3 {
  margin: 60px 0 10px;

  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}


.process-grid p {
  margin: 0;

  color: #9597a0;

  font-size: 12px;
  line-height: 1.68;
}


/* =========================================================
   CONTACT
   ========================================================= */


.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;

  margin-top: 86px;
  padding: 62px;

  background:
    radial-gradient(
      circle at 8% 120%,
      rgba(117, 89, 245, 0.14),
      transparent 36%
    ),
    #0d0e13;

  border: 1px solid var(--line-dark);
  border-radius: 24px;
}


.contact-panel h2 {
  max-width: 580px;
  margin-top: 20px;
}


.contact-action {
  justify-self: end;

  max-width: 470px;
}


.contact-action > p {
  margin: 0 0 24px;

  color: #a0a2aa;

  font-size: 13px;
  line-height: 1.7;
}


/* =========================================================
   FOOTER
   ========================================================= */


.site-footer {
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink-soft);
}


.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  min-height: 126px;

  border-top: 1px solid var(--line-dark);
}


.site-footer nav {
  display: flex;
  gap: 27px;

  font-size: 10px;
}


.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}


.site-footer p {
  justify-self: end;

  margin: 0;

  font-size: 10px;
}


/* =========================================================
   RESPONSIVE — SMALL DESKTOP
   ========================================================= */


@media (max-width: 1180px) {

  .page-width {
    width: min(var(--page), calc(100% - 48px));
  }


  .hero h1 {
    font-size: clamp(68px, 8.4vw, 96px);
  }


  .section-intro,
  .work-heading .section-intro,
  .capabilities-intro {
    grid-template-columns: 150px 1fr;
  }


  .section-intro .section-copy,
  .capabilities-intro .section-copy {
    grid-column: 2;

    max-width: 520px;
  }


  .capabilities-layout {
    grid-template-columns:
      minmax(300px, 0.7fr)
      minmax(500px, 1.3fr);

    gap: 46px;
  }


  .project-rail {
    grid-auto-columns: minmax(330px, 40%);
  }


  .format-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }


  .format-list article:nth-child(3) {
    border-right: 0;
  }


  .format-list article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */


@media (max-width: 960px) {

  .site-nav {
    grid-template-columns: 1fr auto;
  }


  .nav-links {
    position: fixed;
    z-index: 40;

    inset: 86px 0 auto;

    display: grid;
    gap: 0;

    padding: 18px 24px 28px;

    visibility: hidden;

    color: rgba(255, 255, 255, 0.72);
    background: rgba(12, 13, 18, 0.985);

    border-bottom: 1px solid var(--line-dark);

    opacity: 0;
    transform: translateY(-12px);

    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }


  .nav-links a {
    padding: 17px 0;

    border-bottom: 1px solid var(--line-dark);

    font-size: 14px;
  }


  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: #fff;
  }


  .nav-links.is-open {
    visibility: visible;

    opacity: 1;
    transform: translateY(0);
  }


  .nav-cta {
    display: none;
  }


  .menu-toggle {
    display: grid;
  }


  .menu-toggle[aria-expanded="true"] .menu-open-icon {
    display: none;
  }


  .menu-toggle[aria-expanded="true"] .menu-close-icon {
    display: block;
  }


  .hero {
    min-height: 720px;
    padding-top: 150px;
  }


  .hero h1 span,
  .hero h1 em {
    white-space: normal;
  }


  .hero-bottom {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .service-grid {
    grid-template-columns: 1fr;
  }


  .service-card {
    min-height: auto;
  }


  .service-heading {
    min-height: 0;
  }


  .capabilities-layout {
    grid-template-columns: 1fr;

    gap: 62px;
  }

.capability-heading,
.demo-heading {
  min-height: 0;
}
  .transformation-demo {
    max-width: 760px;
  }


  .work-heading {
    grid-template-columns: 1fr;
  }


  .rail-controls {
    justify-self: end;
  }


  .project-rail {
    grid-auto-columns: minmax(320px, 55%);
  }


  .formats-heading {
    grid-template-columns: 150px 1fr;
  }


  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .process-grid li:nth-child(2n) {
    border-right: 0;
  }


  .process-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }


  .contact-panel {
    grid-template-columns: 1fr;

    gap: 42px;
    padding: 48px;
  }


  .contact-action {
    justify-self: start;
  }


  .footer-inner {
    grid-template-columns: 1fr auto;
  }


  .site-footer nav {
    display: none;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */


@media (max-width: 700px) {

  .page-width {
    width: calc(100% - 32px);
  }


  .site-nav {
    min-height: 74px;
  }


  .header-brand img,
  .footer-brand img {
    width: 150px;
  }


  .nav-links {
    inset-block-start: 74px;
  }


  .hero {
    min-height: auto;
    padding: 126px 0 38px;
  }


  .hero-inner {
    min-height: 590px;
  }


  .hero-aura {
    top: 95px;
    right: -30%;

    width: 120vw;

    opacity: 0.44;
  }


  .hero h1 {
    font-size: clamp(52px, 15.5vw, 72px);
    line-height: 0.92;
  }


  .hero h1 em {
    margin-top: 10px;
  }


  .hero-description {
    max-width: 430px;

    font-size: 14px;
  }


  .hero-actions {
    align-items: flex-start;
    flex-direction: column;

    gap: 18px;
  }


  .hero-proof {
    grid-template-columns: 1fr;
    gap: 14px;

    padding-top: 20px;
  }


  .hero-proof > div {
    grid-template-columns: 90px 1fr;
    align-items: baseline;
    gap: 10px;

    padding: 0;
  }


  .hero-proof > div + div {
    padding: 14px 0 0;

    border-top: 1px solid var(--line);
    border-left: 0;
  }


  .section-intro,
  .work-heading .section-intro,
  .capabilities-intro,
  .formats-heading {
    grid-template-columns: 1fr;

    gap: 22px;
  }


  .section-intro .section-copy,
  .capabilities-intro .section-copy {
    grid-column: auto;
  }


  .section-intro h2,
  .capabilities-intro h2,
  .contact-panel h2 {
    margin-top: 0;

    font-size: clamp(39px, 12vw, 56px);
  }


  .services-section,
  .capabilities-section,
  .work-section,
  .process-section {
    padding-top: 92px;
  }


  .service-grid {
    margin-top: 48px;
  }


  .service-card {
    padding: 24px;
  }


  .service-badge {
    display: none;
  }


  .service-heading {
    padding-top: 28px;
  }


  .scope-note {
    align-items: flex-start;
    flex-direction: column;
  }


 


  .accordion-trigger {
    min-height: 66px;
  }


  .accordion-trigger span {
    font-size: 15px;
  }

.capability-heading h2,
.demo-heading h2 {
  font-size: 34px;
}

  .comparison {
    border-radius: 15px;
  }


  .comparison-labels {
    top: 10px;
    right: 10px;
    left: 10px;
  }


  .comparison-labels span {
    padding: 6px 8px;

    font-size: 6px;
  }


  .comparison-handle {
    width: 40px;
    height: 40px;
  }


  .format-chips {
    margin-top: 42px;
  }


  .project-rail {
    width: calc(100vw - 16px);

    grid-auto-columns: minmax(280px, 82%);

    padding-bottom: 42px;
  }


  .formats-band {
    margin-top: 42px;
    padding-top: 46px;
  }


  .formats-heading h2 {
    margin-top: 0;

    font-size: clamp(32px, 9vw, 42px);
  }


  .format-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    margin-top: 30px;
  }


  .format-list article,
  .format-list article:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }


  .format-list article:nth-child(2n) {
    border-right: 0;
  }


  .format-list article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }


  .process-grid {
    grid-template-columns: 1fr;
  }


  .process-grid li,
  .process-grid li:nth-child(2n) {
    min-height: 240px;

    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }


  .process-grid li:last-child {
    border-bottom: 0;
  }


  .process-grid h3 {
    margin-top: 48px;
  }


  .contact-panel {
    margin-top: 66px;
    padding: 32px 23px;

    border-radius: 18px;
  }


  .contact-panel .button-violet {
    width: 100%;
    padding-inline: 14px;
  }


  .footer-inner {
    min-height: 112px;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */


@media (max-width: 430px) {

  .hero h1 {
    font-size: clamp(47px, 14.4vw, 61px);
  }


  .hero-inner {
    min-height: 560px;
  }


  .service-meta {
    align-items: flex-start;
  }


  .icon-disc {
    width: 43px;
    height: 43px;
  }


  .project-copy h3 {
    font-size: 23px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */


@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
/* =========================================================
   CLEAN STICKY HEADER
   ========================================================= */

.topbar {
  position: sticky;
  z-index: 100;

  top: 0;
  left: 0;

  width: 100%;
  padding: 0;

  color: #fff;
  background: rgba(12, 13, 18, 0.96);

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;

  box-shadow: none;

  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}


.site-nav {
  min-height: 76px;
  padding: 0;

  color: #fff;
  background: transparent;

  border: 0;
  border-radius: 0;

  box-shadow: none;
}


.header-brand img {
  filter: none;
}


.nav-links {
  color: rgba(255, 255, 255, 0.6);
}


.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}


.nav-cta {
  min-height: 42px;

  color: #fff;
  background: rgba(117, 89, 245, 0.07);

  border-color: rgba(168, 149, 255, 0.42);
}


.nav-cta:hover,
.nav-cta:focus-visible {
  color: #fff;
  background: var(--violet-deep);

  border-color: var(--violet-soft);
}


.menu-toggle {
  color: #fff;

  border-color: rgba(255, 255, 255, 0.14);
}


/* =========================================================
   REBALANCED HERO
   ========================================================= */

.hero {
  min-height: 720px;
  padding: 112px 0 48px;
}


.hero-inner {
  min-height: 555px;
}


.hero-aura {
  top: 35px;
  right: 12%;

  width: min(560px, 38vw);

  opacity: 0.32;
  filter: blur(58px);

  background:
    radial-gradient(
      circle at 66% 38%,
      rgba(117, 89, 245, 0.16),
      transparent 42%
    ),
    radial-gradient(
      circle at 36% 68%,
      rgba(124, 216, 232, 0.11),
      transparent 45%
    );
}


.hero h1 {
  max-width: 1200px;

  font-size: clamp(70px, 6.8vw, 106px);
}


.hero-bottom {
  margin-top: 42px;
}


/* =========================================================
   CLEAN PROOF STRIP
   ========================================================= */

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  width: 100%;
  max-width: none;

  margin-top: auto;
  padding: 24px 0 0;

  background: transparent;

  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;

  overflow: visible;

  backdrop-filter: none;
}


.hero-proof > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;

  min-height: 0;
  padding: 0 32px;
}


.hero-proof > div:first-child {
  padding-left: 0;
}


.hero-proof > div + div {
  padding-left: 32px;

  border-top: 0;
  border-left: 1px solid var(--line);
}


.hero-proof strong {
  color: var(--text);

  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
}


.hero-proof span {
  color: #6b6d74;

  font-size: 10px;
  line-height: 1.4;
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 960px) {

  .nav-links {
    position: fixed;
    z-index: 90;

    top: 76px;
    right: 24px;
    bottom: auto;
    left: 24px;

    padding: 18px 24px 28px;

    color: rgba(255, 255, 255, 0.72);
    background: rgba(12, 13, 18, 0.985);

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;

    box-shadow:
      0 18px 46px rgba(12, 13, 18, 0.22);
  }


  .hero {
    padding-top: 70px;
  }

}


@media (max-width: 700px) {

  .site-nav {
    min-height: 68px;
  }


  .nav-links {
    top: 68px;
    right: 16px;
    left: 16px;
  }


  .hero {
    min-height: auto;
    padding: 58px 0 38px;
  }


  .hero-inner {
    min-height: 590px;
  }


  .hero-aura {
    top: 50px;
    right: -25%;

    width: 100vw;

    opacity: 0.24;
  }


  .hero-proof {
    grid-template-columns: 1fr;

    padding-top: 18px;
  }


  .hero-proof > div,
  .hero-proof > div:first-child {
    grid-template-columns: 72px 1fr;
    align-items: baseline;

    padding: 12px 0;
  }


  .hero-proof > div + div {
    padding-left: 0;

    border-top: 1px solid var(--line);
    border-left: 0;
  }

}

/* =========================================================
   FLUIDITY & UX IMPROVEMENTS
   ========================================================= */

/* Softer section rhythm */
.services-section {
  padding: 96px 0 100px;
}

.capabilities-section {
  padding: 110px 0 120px;
}

.work-section {
  padding: 110px 0 90px;
}

.process-section {
  padding: 110px 0 70px;
}

/* Smoother paper ↔ dark transitions */
.paper-section + .dark-section,
.dark-section + .paper-section {
  position: relative;
}

/* Process: subtle connector line */
.process-grid {
  position: relative;
}

.process-grid li {
  transition: background-color 200ms ease;
}

.process-grid li:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Better process number + icon balance */
.process-number {
  opacity: 0.7;
}

/* Contact panel: more breathing room */
.contact-panel {
  margin-top: 72px;
  padding: 56px 52px;
}

.contact-action > p {
  margin-bottom: 22px;
}

/* Service cards: slightly softer hover */
.service-card {
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

/* Project cards: clearer affordance */
.project-card {
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* Comparison handle more visible */
.comparison-handle {
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.28),
    0 0 0 4px rgba(117, 89, 245, 0.18);
}

/* Scope note breathing */
.scope-note {
  margin-top: 28px;
  padding-top: 8px;
}

/* Formats band spacing */
.formats-band {
  margin-top: 56px;
  padding-top: 52px;
}

/* Mobile refinements for fluidity */
@media (max-width: 700px) {
  .services-section,
  .capabilities-section,
  .work-section,
  .process-section {
    padding-top: 80px;
    padding-bottom: 72px;
  }

  .contact-panel {
    margin-top: 56px;
    padding: 36px 24px;
  }
}
/* =========================================================
   HERO – DIRECTION PLUS AFFIRMÉE
   ========================================================= */

/* Plus de présence, moins d’espace perdu */
.hero {
  min-height: 0;
  padding: 110px 0 92px;
}


.hero-inner {
  min-height: 0;
}

/* Aura plus visible et plus présente */
.hero-aura {
  top: 20px;
  right: 8%;
  width: min(640px, 46vw);
  opacity: 0.48;
  filter: blur(52px);

  background:
    radial-gradient(
      circle at 68% 34%,
      rgba(117, 89, 245, 0.28),
      transparent 42%
    ),
    radial-gradient(
      circle at 32% 66%,
      rgba(124, 216, 232, 0.18),
      transparent 46%
    );
}

/* Titre plus tendu */
.hero h1 {
  max-width: 1180px;
  font-size: clamp(68px, 6.6vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.hero h1 em {
  margin-top: 4px;
  font-size: 0.94em;
}

/* Description + actions plus resserrées */
.hero-bottom {
  align-items: start;

  margin-top: 38px;
  gap: 40px;
}

.hero-description {
  color: #3f4148;
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 460px;
}

/* CTA principal plus dominant */
.hero-actions {
  gap: 20px;
}

.hero-actions .button-violet {
  min-height: 54px;
  padding: 0 26px;
  font-size: 13.5px;
  box-shadow: 0 12px 34px rgba(98, 70, 232, 0.28);
}

.hero-actions .button-violet:hover {
  box-shadow: 0 16px 40px rgba(98, 70, 232, 0.34);
}

/* Lien secondaire plus discret */
.hero-actions .text-link {
  color: #6a6c74;
  font-size: 12.5px;
}

.hero-actions .text-link:hover {
  color: var(--violet-deep);
}
/* =========================================================
   HERO EVIDENCE
   ========================================================= */

.hero-copy {
  max-width: 500px;
}


.hero-evidence {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;

  margin: 20px 0 0;

  color: #6a6c74;

  font-size: 11px;
  line-height: 1.4;
}


.hero-evidence span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}


.hero-evidence span + span {
  margin-left: 16px;
  padding-left: 16px;

  border-left: 1px solid rgba(12, 13, 18, 0.15);
}


.hero-evidence strong {
  color: #17181d;

  font-size: 12px;
  font-weight: 650;
}
/* =========================================================
   MOBILE – HERO
   ========================================================= */

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 88px 0 32px;
  }

  .hero-inner {
    min-height: 540px;
  }

  .hero-aura {
    top: 40px;
    right: -20%;
    width: 110vw;
    opacity: 0.36;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .hero-bottom {
    margin-top: 28px;
    gap: 22px;
  }

  .hero-proof {
    padding-top: 22px;
  }

  .hero-proof strong {
    font-size: 16px;
  }
}
/* =========================================================
   EXPANDABLE CONTACT
   ========================================================= */

.contact-expandable {
  margin-top: 86px;
  overflow: hidden;

  color: #f6f4ef;

  background:
    radial-gradient(
      circle at 8% 120%,
      rgba(117, 89, 245, 0.14),
      transparent 36%
    ),
    #0d0e13;

  border: 1px solid var(--line-dark);
  border-radius: 24px;
}


/* HEADER */

.contact-expandable-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;

  gap: 60px;
  padding: 54px 56px;
}


.contact-expandable-copy {
  max-width: 720px;
}


.contact-expandable-copy h2 {
  margin: 14px 0 0;

  color: #f8f6f1;

  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.058em;
}


.contact-expandable-copy > p:not(.section-label) {
  max-width: 500px;
  margin: 20px 0 0;

  color: #a0a2aa;

  font-size: 13px;
  line-height: 1.7;
}


/* =========================================================
   CAPACITY
   ========================================================= */

.contact-capacity {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 9px;
  margin-top: 22px;

  color: #9698a1;

  font-size: 10px;
}


.contact-capacity strong {
  color: #f6f4ef;
  font-weight: 600;
}


.contact-capacity strong::before {
  content: "·";

  margin-right: 9px;

  color: #666872;
}


.contact-capacity-dot {
  width: 8px;
  height: 8px;

  background: var(--violet);

  border-radius: 50%;

  box-shadow:
    0 0 0 6px rgba(117, 89, 245, 0.11);
}


/* =========================================================
   OPEN / CLOSE BUTTON
   ========================================================= */

.contact-expand-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 13px;

  min-height: 52px;
  padding: 0 21px;

  color: #fff;
  background: var(--violet-deep);

  border: 1px solid var(--violet-deep);
  border-radius: 999px;

  font: inherit;
  font-size: 12px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background-color 180ms ease,
    transform 180ms ease;
}


.contact-expand-button:hover {
  background: var(--violet);
  transform: translateY(-2px);
}


.contact-expand-button svg {
  width: 16px;
  height: 16px;

  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}


.contact-close-label {
  display: none;
}


.contact-expandable.is-open .contact-open-label {
  display: none;
}


.contact-expandable.is-open .contact-close-label {
  display: inline;
}


.contact-expandable.is-open .contact-expand-button svg {
  transform: rotate(-90deg);
}


/* =========================================================
   EXPANDING AREA
   ========================================================= */

.contact-form-area {
  max-height: 0;

  overflow: hidden;

  opacity: 0;

  border-top: 1px solid transparent;

  transition:
    max-height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease,
    border-color 280ms ease;
}


.contact-expandable.is-open .contact-form-area {
  max-height: 1400px;

  opacity: 1;

  border-top-color: var(--line-dark);
}


.contact-form-inner {
  overflow: hidden;
}
/* =========================================================
   FORM
   ========================================================= */

.project-form {
  position: relative;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;

  padding: 46px 56px 54px;
}


.form-field {
  display: grid;
  gap: 9px;
}


.form-field-full {
  grid-column: 1 / -1;
}


.form-field label,
.form-choice legend {
  margin: 0 0 9px;

  color: #999ba3;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.form-field input,
.form-field textarea {
  width: 100%;

  color: #f6f4ef;
  background: rgba(255, 255, 255, 0.035);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;

  outline: none;

  font: inherit;
  font-size: 13px;

  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}


.form-field input {
  min-height: 52px;
  padding: 0 15px;
}


.form-field textarea {
  min-height: 150px;

  padding: 15px;

  line-height: 1.6;

  resize: vertical;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6f717a;
}


.form-field input:focus,
.form-field textarea:focus {
  background: rgba(255, 255, 255, 0.055);

  border-color: rgba(117, 89, 245, 0.8);

  box-shadow:
    0 0 0 3px rgba(117, 89, 245, 0.1);
}


/* =========================================================
   CHOICE BUTTONS
   ========================================================= */

.form-choice {
  margin: 4px 0 0;
  padding: 0;

  border: 0;
}


.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 8px;
}


.choice-grid label {
  position: relative;

  margin: 0;

  cursor: pointer;
}


.choice-grid input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}


.choice-grid span {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 12px;

  color: #999ba3;
  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;

  font-size: 11px;
  font-weight: 500;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}


.choice-grid label:hover span {
  color: #fff;

  border-color: rgba(117, 89, 245, 0.42);
}


.choice-grid input:checked + span {
  color: #fff;

  background: rgba(117, 89, 245, 0.16);

  border-color: rgba(117, 89, 245, 0.68);
}


.choice-grid input:focus-visible + span {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}


/* =========================================================
   FORM BOTTOM
   ========================================================= */

.project-form-bottom {
  grid-column: 1 / -1;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 8px;
  padding-top: 24px;

  border-top: 1px solid var(--line-dark);
}


.project-form-bottom p {
  max-width: 520px;
  margin: 0;

  color: #777982;

  font-size: 10px;
  line-height: 1.6;
}


.form-status {
  grid-column: 1 / -1;

  margin: 0;

  color: #a895ff;

  font-size: 11px;
}


.form-status:empty {
  display: none;
}


/* =========================================================
   HONEYPOT / ANTI-SPAM
   ========================================================= */

.form-honeypot {
  position: absolute;

  left: -9999px;

  width: 1px;
  height: 1px;
}


/* =========================================================
   TABLET + MOBILE
   ========================================================= */

@media (max-width: 760px) {

  .contact-expandable {
    margin-top: 56px;
    border-radius: 18px;
  }


  .contact-expandable-head {
    grid-template-columns: 1fr;

    gap: 30px;

    padding: 38px 28px;
  }


  .contact-expand-button {
    justify-self: start;
  }


  .project-form {
    grid-template-columns: 1fr;

    padding: 38px 28px;
  }


  .form-field-full,
  .project-form-bottom,
  .form-status {
    grid-column: 1;
  }


  .choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .project-form-bottom {
    align-items: stretch;
    flex-direction: column;
  }


  .project-form-bottom .button {
    width: 100%;
  }

}
/* =========================================================
   CONTACT WORLD CLOCK
   ========================================================= */

.contact-expandable-head {
  position: relative;
}


.contact-world-clock {
  position: absolute;

  top: 28px;
  right: 32px;

  z-index: 2;

  color: #777982;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.09em;
  text-transform: uppercase;

  pointer-events: none;
}


.contact-world-clock-window {
  position: relative;

  height: 18px;

  overflow: hidden;
}


.contact-world-clock-value {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  white-space: nowrap;

  transform: translateY(0);

  opacity: 1;

  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}


.contact-world-clock-value.is-leaving {
  transform: translateY(-12px);

  opacity: 0;
}


.contact-world-clock-value.is-entering {
  transform: translateY(12px);

  opacity: 0;
}


.world-clock-city {
  color: #b5b6bd;
}


.world-clock-time {
  color: #eceaf0;
}


.world-clock-separator {
  color: #555761;
}


.world-clock-date {
  color: #777982;
}


/* MOBILE */

@media (max-width: 760px) {

  .contact-world-clock {
    top: 20px;
    right: 22px;

    font-size: 8px;
  }

}
/* =========================================================
   BREVO SUBMIT FRAME
   ========================================================= */

.brevo-submit-frame {
  position: absolute;

  width: 1px;
  height: 1px;

  overflow: hidden;

  border: 0;
  opacity: 0;

  pointer-events: none;
}
/* =========================================================
   FORM SUCCESS
   ========================================================= */

.form-status.is-success {
  position: relative;

  display: grid;
  gap: 10px;

  margin-top: 14px;
  padding: 24px 26px;

  background:
    linear-gradient(
      135deg,
      rgba(243, 240, 233, 0.07),
      rgba(243, 240, 233, 0.018)
    );

  border-radius: 16px;

  overflow: hidden;
}


/* Gradient border */

.form-status.is-success::before {
  content: "";

  position: absolute;
  inset: 0;

  padding: 1px;

  border-radius: inherit;

  background:
    linear-gradient(
      120deg,
      rgba(240, 223, 196, 0.42),
      rgba(240, 223, 196, 0.12) 38%,
      rgba(255, 255, 255, 0.06) 65%,
      rgba(240, 223, 196, 0.20)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}


.form-status.is-success strong {
  color: #f0dfc4;

  font-size: 17px;
  font-weight: 600;

  line-height: 1.2;
  letter-spacing: -0.02em;
}


.form-status.is-success span {
  max-width: 620px;

  color: #c8c0b3;

  font-size: 13px;
  font-weight: 400;

  line-height: 1.65;
}


/* MOBILE */

@media (max-width: 760px) {

  .form-status.is-success {
    gap: 8px;

    margin-top: 12px;
    padding: 20px 22px;

    border-radius: 14px;
  }

  .form-status.is-success strong {
    font-size: 15px;
  }

  .form-status.is-success span {
    font-size: 12px;
  }

}
/* =========================================================
   EXPANDING AREA
   ========================================================= */

.contact-form-area {
  display: none;
  opacity: 0;

  border-top: 1px solid transparent;
}

.contact-expandable.is-open .contact-form-area {
  display: block;
  opacity: 1;

  border-top-color: var(--line-dark);

  animation: contactOpen 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes contactOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-inner {
  overflow: hidden;
}