/* Tektyum EN (gaming) · shared design system
   Ice language (2026-07-03 redesign): cold near-black #030509 + Ice White #EAF4FA,
   Chakra Petch display, Geist body, Geist Mono labels. Hairline precision, zero violet.
   Static multi-page. z: bg 0 · lines 1 · grain 2 · ui 5 · nav 20 */

:root {
  --ink: #030509;
  --ink-2: #020306;
  --fog: #06090f;
  --panel: #05080d;
  --dust: #93a4ae;
  --lilac: #c9d8e2;
  --accent: #e8f2f8;
  --hot: #bfe0f5;
  --hot-deep: #8fb8d4;
  --text: #EAF4FA;
  --dim: #8FA1AC;
  --faint: #5e6b74;
  --hairline: rgba(210, 235, 248, 0.12);
  --hairline-2: rgba(210, 235, 248, 0.22);
  --glow: rgba(185, 225, 248, 0.5);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: thin; scrollbar-color: rgba(210,235,248,.25) transparent; -webkit-text-size-adjust: 100%; }
html:not(.lenis) { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

::selection { background: var(--hot); color: #04121c; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--hot); outline-offset: 4px; border-radius: 2px; }

/* ---------- fixed ambience layers ---------- */
.bg-ambience {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 18% 12%, rgba(191,224,245,0.06), rgba(191,224,245,0) 60%),
    radial-gradient(55% 50% at 88% 8%, rgba(232,242,248,0.035), rgba(3,5,9,0) 55%),
    radial-gradient(120% 90% at 50% 120%, #020306 0%, rgba(2,3,6,0) 60%),
    linear-gradient(180deg, #030509 0%, #020306 100%);
}
.grain {
  position: fixed; inset: -32px; z-index: 2; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(125% 95% at 50% 45%, transparent 55%, rgba(2,3,6,0.55) 100%);
}

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
main { position: relative; z-index: 5; }
.section { padding: clamp(64px, 11vh, 132px) 0; position: relative; overflow: hidden; /* crops the giant sec-cry outlines + kills mobile x-overflow */ }
.section--tight { padding: clamp(44px, 7vh, 84px) 0; }
.section + .section { border-top: 1px solid var(--hairline); }
.center { text-align: center; }

/* ---------- type ---------- */
.kicker {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--lilac); display: inline-flex; align-items: center; gap: 0.7em;
}
.kicker::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--hot); box-shadow: 0 0 9px rgba(185,225,248,0.8); }
.kicker--plain::before { display: none; }

h1, h2, h3 { font-family: "Chakra Petch", system-ui, sans-serif; font-weight: 700; line-height: 1.02; letter-spacing: -0.01em; color: #fff; }
.h-hero { font-size: clamp(2.7rem, 7vw, 5.4rem); letter-spacing: 0.005em; line-height: 0.96; }
.h-1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.h-2 { font-size: clamp(1.55rem, 3vw, 2.3rem); }
.h-3 { font-size: clamp(1.18rem, 2vw, 1.5rem); }
.dot { color: var(--hot); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.32rem); line-height: 1.55; color: var(--dim); max-width: 56ch; }
.muted { color: var(--dim); }
.faint { color: var(--faint); }
p { max-width: 64ch; }

/* ---------- buttons ----------
   Glassy ice (Nyxon-style): primary .btn = frosted ice glass with a looping
   shine glint; .btn--ghost = neutral glass, the same glint fires once on hover. */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: "Geist", sans-serif; font-weight: 700; font-size: 0.96rem;
  padding: 0.92em 1.6em; border-radius: 999px; border: 1px solid rgba(210,235,248,0.5);
  background: rgba(191,224,245,0.13);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.35s var(--ease), color 0.4s var(--ease), border-color 0.35s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 55%;
  background: linear-gradient(105deg, transparent 18%, rgba(255,255,255,0.38) 46%, rgba(191,224,245,0.95) 54%, transparent 82%);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: tk-shine 3s cubic-bezier(0.4, 0, 0.25, 1) infinite;
}
.btn:hover, .btn:focus-visible {
  background-color: rgba(191,224,245,0.24); color: #fff;
  border-color: rgba(232,242,248,0.85); transform: translateY(-2px); outline: none;
}
.btn--ghost {
  background: rgba(226,243,252,0.045);
  border-color: var(--hairline-2);
  box-shadow: none;
}
.btn--ghost::after { animation: none; }
.btn--ghost:hover::after, .btn--ghost:focus-visible::after { animation: tk-shine 0.9s cubic-bezier(0.4, 0, 0.25, 1); }
.btn--ghost:hover, .btn--ghost:focus-visible {
  background-color: rgba(226,243,252,0.09); color: #fff;
  border-color: rgba(232,242,248,0.55);
}
.btn--lg { font-size: 1.02rem; padding: 1.04em 1.9em; }
@keyframes tk-shine { 0% { left: -60%; } 70% { left: 120%; } 100% { left: 120%; } }
@media (prefers-reduced-motion: reduce) {
  .btn::after, .btn--ghost:hover::after, .btn--ghost:focus-visible::after { animation: none; opacity: 0; }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: "Geist Mono", monospace; font-size: 0.84rem; letter-spacing: 0.06em;
  color: var(--accent); transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow .arrow { transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 0.8em; color: #fff; }
.link-arrow:hover .arrow { transform: translateX(3px); }

.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- nav: floating pill · collapses to a crystal orb on scroll down ---------- */
.nav {
  position: fixed; top: 14px; left: 0; right: 0; margin-inline: auto; width: fit-content; z-index: 40;
  display: flex; align-items: center; gap: clamp(10px, 1.5vw, 20px);
  min-height: 54px; padding: 0 12px 0 18px;
  max-width: min(94vw, 1040px);
  background: rgba(4, 7, 12, 0.74); backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid var(--hairline-2); border-radius: 27px;
  box-shadow: 0 10px 44px rgba(0, 0, 0, 0.5);
  overflow: hidden; white-space: nowrap;
  transition: max-width .6s cubic-bezier(.26, 1.25, .4, 1), padding .6s cubic-bezier(.26, 1.25, .4, 1),
    transform .35s cubic-bezier(.16, 1, .3, 1), border-color .35s var(--ease), border-radius .4s var(--ease);
  animation: nav-in .8s cubic-bezier(.16, 1, .3, 1) .1s backwards;
}
@keyframes nav-in { from { transform: translateY(-72px); opacity: 0; } }
.nav-brand { display: inline-flex; align-items: center; gap: 0.6em; font-family: "Chakra Petch", sans-serif; font-weight: 700; letter-spacing: 0.14em; font-size: 1rem; color: #fff; }
.nav-brand svg { width: 17px; height: 25px; display: block; flex-shrink: 0; filter: drop-shadow(0 0 8px rgba(185,225,248,0.35)); transition: transform .6s cubic-bezier(.26, 1.25, .4, 1); }
.nav-brand span, .nav-intro, .lang-toggle, .nav-cta, .nav-burger {
  transition: opacity .32s var(--ease), transform .5s cubic-bezier(.16, 1, .3, 1), visibility 0s linear 0s;
}
.nav-links { display: flex; gap: clamp(14px, 2vw, 26px); margin-left: clamp(6px, 2vw, 22px); }
.nav-links a { font-size: 0.92rem; color: var(--dim); position: relative;
  transition: color .25s var(--ease) 0s, opacity .32s var(--ease), transform .5s cubic-bezier(.16, 1, .3, 1), visibility 0s linear 0s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px; background: var(--hot); }
.nav-spacer { display: none; }
/* staggered re-entry when the pill expands */
.nav:not(.nav-mini) .nav-brand span { transition-delay: .06s, .06s, 0s; }
.nav:not(.nav-mini) .nav-links a:nth-child(1) { transition-delay: 0s, .1s, .1s, 0s; }
.nav:not(.nav-mini) .nav-links a:nth-child(2) { transition-delay: 0s, .16s, .16s, 0s; }
.nav:not(.nav-mini) .nav-links a:nth-child(3) { transition-delay: 0s, .22s, .22s, 0s; }
.nav:not(.nav-mini) .nav-links a:nth-child(4) { transition-delay: 0s, .28s, .28s, 0s; }
.nav:not(.nav-mini) .nav-links a:nth-child(5) { transition-delay: 0s, .28s, .28s, 0s; } /* Contact (after the hidden .nav-sub pair) */
.nav:not(.nav-mini) .nav-intro { transition-delay: .32s, .32s, 0s; }
.nav:not(.nav-mini) .lang-toggle { transition-delay: .36s, .36s, 0s; }
.nav:not(.nav-mini) .nav-cta { transition-delay: .4s, .4s, 0s; }
/* collapsed orb */
.nav-mini { max-width: 54px; padding: 0 17px; cursor: pointer; border-color: rgba(210, 235, 248, 0.32); }
.nav-mini:hover { transform: scale(1.1); border-color: rgba(210, 235, 248, 0.55); }
.nav-mini:active { transform: scale(0.95); }
.nav-mini .nav-brand { pointer-events: none; }
.nav-mini .nav-brand svg { transform: rotate(180deg); }
.nav-mini .nav-brand span, .nav-mini .nav-links a, .nav-mini .nav-intro, .nav-mini .lang-toggle, .nav-mini .nav-cta, .nav-mini .nav-burger {
  opacity: 0; transform: translateX(-16px); visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .28s var(--ease), visibility 0s linear .28s;
}
.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px;
  border: 1px solid var(--hairline-2); font-family: "Geist Mono", monospace; font-size: 0.74rem; letter-spacing: 0.05em;
}
.lang-toggle a { padding: 4px 10px; border-radius: 999px; color: var(--faint); transition: all 0.25s var(--ease); }
.lang-toggle a[aria-current="page"] { color: #04121c; background: rgba(191,224,245,0.85); }
.lang-toggle a:not([aria-current]):hover { color: var(--text); }
.nav-cta { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.9rem; font-weight: 600; padding: 0.6em 1.1em; border-radius: 999px;
  background: rgba(226,243,252,0.06);
  border: 1px solid rgba(210,235,248,0.32); color: var(--text);
  transition: background-color 0.35s var(--ease), color 0.4s var(--ease), border-color 0.35s var(--ease); }
.nav-cta::after { content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 55%;
  background: linear-gradient(105deg, transparent 18%, rgba(255,255,255,0.38) 46%, rgba(191,224,245,0.95) 54%, transparent 82%);
  transform: skewX(-18deg); pointer-events: none; }
.nav-cta:hover::after, .nav-cta:focus-visible::after { animation: tk-shine 0.9s cubic-bezier(0.4, 0, 0.25, 1); }
.nav-cta:hover, .nav-cta:focus-visible { background-color: rgba(226,243,252,0.11); color: #fff; border-color: rgba(232,242,248,0.6); outline: none; }
@media (prefers-reduced-motion: reduce) { .nav-cta:hover::after, .nav-cta:focus-visible::after { animation: none; opacity: 0; } }
.nav-burger { display: none; width: 40px; height: 40px; border: 1px solid var(--hairline-2); border-radius: 10px; background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 18px; height: 1.6px; background: var(--text); position: relative; transition: all 0.3s var(--ease); }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.6px; background: var(--text); transition: all 0.3s var(--ease); }
.nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }
body.nav-open .nav-burger span { background: transparent; }
body.nav-open .nav-burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-burger span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Work dropdown ----------
   The panel lives OUTSIDE .nav in the DOM: the pill has overflow:hidden (orb collapse)
   and backdrop-filter makes it the containing block, so any child panel would clip.
   JS (en.js) positions it under the trigger on desktop; on mobile the .nav-sub links
   render inside the burger menu instead and this panel stays hidden. */
.nav-caret { width: 9px; height: 6px; margin-left: 7px; display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.nav-links a.drop-open .nav-caret { transform: rotate(180deg); }
.nav-drop {
  position: fixed; z-index: 39; min-width: 224px;
  background: rgba(4, 7, 12, 0.86); backdrop-filter: blur(16px) saturate(1.15); -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid var(--hairline-2); border-radius: 16px; padding: 7px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.55);
  opacity: 0; transform: translateY(-7px); pointer-events: none;
  transition: opacity .24s var(--ease), transform .34s var(--ease);
}
.nav-drop.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-drop::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; } /* hover bridge to the pill */
.nav-drop a { display: block; padding: 10px 14px 11px; border-radius: 10px; font-weight: 600; font-size: 0.92rem; color: var(--text); transition: background-color .25s var(--ease), color .25s var(--ease); }
.nav-drop a + a { margin-top: 2px; }
.nav-drop a span { display: block; margin-top: 2px; font-family: "Geist Mono", ui-monospace, monospace; font-size: 0.64rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); transition: color .25s var(--ease); }
.nav-drop a:hover, .nav-drop a:focus-visible { background: rgba(226, 243, 252, 0.07); color: #fff; outline: none; }
.nav-drop a:hover span, .nav-drop a:focus-visible span { color: var(--dim); }
.nav-sub { display: none; }

@media (max-width: 1180px) {
  .nav-brand span, .nav-intro { display: none; }
}
@media (max-width: 900px) {
  /* the pill grows into a menu card in place; links live inside it (no fixed panel:
     backdrop-filter makes .nav the containing block, so a fixed child would clip) */
  .nav { flex-wrap: wrap; width: auto; max-width: min(94vw, 400px); padding: 0 12px; row-gap: 0; justify-content: space-between; }
  .nav-brand { padding: 13px 0 13px 6px; }
  .nav-burger { display: inline-flex; order: 3; border: 0; }
  .nav-cta { display: none; }
  .nav-links {
    order: 4; flex-basis: 100%; flex-direction: column; gap: 0; margin: 0;
    max-height: 0; opacity: 0; overflow: hidden; pointer-events: none;
    transition: max-height .45s cubic-bezier(.16, 1, .3, 1), opacity .3s var(--ease);
  }
  body.nav-open .nav { border-radius: 22px; }
  body.nav-open .nav-links { max-height: 460px; opacity: 1; pointer-events: auto; padding: 4px 6px 16px; }
  .nav-links a { padding: 12px 0; font-size: 1.05rem; border-bottom: 1px solid var(--hairline); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a[aria-current="page"]::after { display: none; }
  /* Work sub-links live inside the burger menu on mobile; the fixed panel stays off */
  .nav-links a.nav-sub { display: block; padding: 10px 0 10px 20px; font-size: 0.95rem; color: var(--dim); }
  .nav-links a.nav-sub:hover { color: #fff; }
  .nav-caret { display: none; }
  .nav-drop { display: none; }
  .lang-toggle { margin-left: auto; }
  /* collapsed orb on mobile: hidden items keep their boxes (visibility), so without
     nowrap they wrap into a tall oval · force a single clipped row + drop the menu */
  .nav-mini { max-width: 54px; flex-wrap: nowrap; justify-content: flex-start; }
  .nav-mini .nav-links { display: none; }
  .nav-mini .nav-brand { padding: 0; margin-left: 3px; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: clamp(620px, 90vh, 920px); display: flex; align-items: center; overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.hero-fallback { position: absolute; inset: 0; z-index: 0; display: none; background: radial-gradient(46% 52% at 72% 50%, rgba(191,224,245,0.14), rgba(191,224,245,0) 62%); }
html.no-webgl .hero-canvas { display: none; }
html.no-webgl .hero-fallback { display: block; }
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero .lead { margin-top: 22px; }
.hero .actions { margin-top: 34px; }
.hero-glow { position: absolute; right: -6%; top: 50%; transform: translateY(-50%); width: 46vw; max-width: 640px; aspect-ratio: 1; z-index: 1; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(191,224,245,0.08), rgba(191,224,245,0) 70%); }

/* ---------- statement band ---------- */
.statement h2 { max-width: 18ch; }
.statement .lead { margin-top: 20px; }

/* ---------- cards / grids ---------- */
.card-grid { display: grid; gap: clamp(14px, 1.6vw, 20px); margin-top: clamp(36px, 5vw, 56px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  position: relative; padding: clamp(22px, 2.4vw, 32px); border-radius: 14px;
  background: linear-gradient(180deg, rgba(6,9,15,0.72), rgba(4,7,12,0.55));
  border: 1px solid var(--hairline); overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% -10%, rgba(191,224,245,0.07), transparent 60%); opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none; }
.card:hover { transform: translateY(-4px); border-color: var(--hairline-2); }
.card:hover::before { opacity: 1; }
.card .card-facet { width: 26px; height: 38px; margin-bottom: 18px; filter: drop-shadow(0 0 10px rgba(185,225,248,0.3)); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--dim); font-size: 0.98rem; }
.card .card-list { list-style: none; margin-top: 16px; display: grid; gap: 8px; }
.card .card-list li { position: relative; padding-left: 20px; font-size: 0.92rem; color: var(--dim); }
.card .card-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; border-radius: 2px; background: var(--hot); transform: rotate(45deg); }

/* ---------- work cards ---------- */
.work-card { display: flex; flex-direction: column; padding: 0; }
.work-shot { position: relative; aspect-ratio: 16/10; overflow: hidden; border-bottom: 1px solid var(--hairline); background: var(--panel); }
.work-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-shot img { transform: scale(1.04); }
.work-body { padding: clamp(20px, 2.2vw, 28px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.proj-meta { display: flex; justify-content: space-between; gap: 12px; font-family: "Geist Mono", monospace; font-size: 0.74rem; letter-spacing: 0.06em; color: var(--faint); text-transform: uppercase; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.tag { font-family: "Geist Mono", monospace; font-size: 0.7rem; letter-spacing: 0.04em; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--hairline); color: var(--lilac); }
/* featured / flagship work card */
.work-card.is-featured { border-color: rgba(191,224,245,0.4); box-shadow: 0 0 0 1px rgba(191,224,245,0.16); }
.work-card.is-featured .work-shot { border-bottom-color: rgba(191,224,245,0.26); }
.work-card.is-featured:hover { border-color: rgba(191,224,245,0.55); }
.work-flag { position: absolute; top: 12px; left: 12px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px; font-family: "Geist Mono", monospace; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #04121c; background: var(--hot); box-shadow: 0 6px 18px rgba(185,225,248,0.3); }
.work-flag svg { width: 11px; height: 11px; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(36px, 5vw, 56px); }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { position: relative; padding: clamp(24px, 2.6vw, 34px); border-radius: 14px; background: linear-gradient(180deg, rgba(6,9,15,0.6), rgba(4,7,12,0.45)); border: 1px solid var(--hairline); display: flex; flex-direction: column; gap: 14px; }
.price-card.is-featured { border-color: rgba(191,224,245,0.38); box-shadow: 0 0 0 1px rgba(191,224,245,0.14); }
.price-flag { display: inline-block; font-family: "Geist Mono", monospace; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: #04121c; background: var(--hot-deep); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
.price-tag { font-family: "Chakra Petch", sans-serif; font-weight: 700; font-size: clamp(2rem, 3.4vw, 2.7rem); color: #fff; }
.price-tag span { font-size: 0.9rem; color: var(--dim); font-family: "Geist Mono", monospace; }
.price-card ul { list-style: none; display: grid; gap: 9px; margin-top: 4px; }
.price-card ul li { position: relative; padding-left: 20px; font-size: 0.92rem; color: var(--dim); }
.price-card ul li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; border-radius: 2px; background: var(--hot); transform: rotate(45deg); }
.price-note { margin-top: 26px; font-size: 0.9rem; color: var(--faint); }

/* ---------- service rows (services page) ---------- */
.svc { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: clamp(24px,3vw,38px) 0; border-top: 1px solid var(--hairline); }
.svc:first-child { border-top: 0; }
.svc-facet { width: 30px; height: 44px; filter: drop-shadow(0 0 10px rgba(185,225,248,0.3)); }
.svc h3 { margin-bottom: 8px; }
.svc p { color: var(--dim); }
.svc .card-list { list-style: none; margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.svc .card-list li { position: relative; padding-left: 18px; font-size: 0.9rem; color: var(--lilac); }
.svc .card-list li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; border-radius: 2px; background: var(--hot); transform: rotate(45deg); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; margin-top: clamp(28px,4vw,44px); border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: "Chakra Petch", sans-serif; font-weight: 600; font-size: clamp(1.02rem,1.6vw,1.22rem); color: #fff; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q-mark { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
.faq summary .q-mark::before, .faq summary .q-mark::after { content: ""; position: absolute; background: var(--hot); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq summary .q-mark::before { left: 10px; top: 4px; width: 2px; height: 14px; }
.faq summary .q-mark::after { left: 4px; top: 10px; width: 14px; height: 2px; }
.faq details[open] summary .q-mark::before { transform: scaleY(0); }
.faq details p { color: var(--dim); padding: 0 0 24px; max-width: 70ch; }

/* ---------- contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: "Geist Mono", monospace; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lilac); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px; background: rgba(3,5,9,0.6);
  border: 1px solid var(--hairline-2); color: var(--text); font-family: "Geist", sans-serif; font-size: 0.98rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(191,224,245,0.55); background: rgba(3,5,9,0.85); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A9A3C2' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px; }
.hp { position: absolute; left: -9999px; }
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status.ok { color: #8be0a0; } .form-status.err { color: #ff8a8a; }

.contact-aside { display: grid; gap: 14px; }
.contact-row { display: flex; flex-direction: column; gap: 3px; padding: 18px 20px; border-radius: 12px; border: 1px solid var(--hairline); background: rgba(6,9,15,0.5); }
.contact-row .c-label { font-family: "Geist Mono", monospace; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.contact-row .c-value { font-size: 1.04rem; color: #fff; }
button.contact-row { cursor: pointer; text-align: left; font: inherit; }
.contact-row .c-hint { font-family: "Geist Mono", monospace; font-size: 0.7rem; color: var(--hot); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- landing (SEO) hero ---------- */
.lander-hero { padding: clamp(70px, 12vh, 150px) 0 clamp(40px, 6vh, 80px); position: relative; }
.lander-hero .h-1 { max-width: 16ch; }
.lander-hero .lead { margin-top: 20px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(34px,5vw,52px); }
@media (max-width: 860px) { .benefit-grid { grid-template-columns: 1fr; } }
.cta-band { text-align: center; padding: clamp(56px, 9vh, 110px) 0; }
.cta-band .h-1 { margin: 0 auto 20px; max-width: 18ch; }
.cta-band .actions { justify-content: center; }

/* ---------- footer ---------- */
.footer { position: relative; z-index: 5; border-top: 1px solid var(--hairline); padding: clamp(48px,7vw,80px) 0 40px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 32px 64px; justify-content: space-between; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.6em; font-family: "Chakra Petch", sans-serif; font-weight: 700; letter-spacing: 0.14em; font-size: 1.1rem; color: #fff; }
.footer-brand svg { width: 20px; height: 30px; filter: drop-shadow(0 0 8px rgba(185,225,248,0.3)); }
.footer-brand + p { margin-top: 14px; color: var(--dim); max-width: 38ch; font-size: 0.95rem; }
.footer-cols { display: flex; gap: clamp(32px, 6vw, 80px); flex-wrap: wrap; }
.footer-col h4 { font-family: "Geist Mono", monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); font-weight: 500; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: var(--dim); font-size: 0.94rem; margin-bottom: 9px; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: clamp(40px,6vw,64px); padding-top: 22px; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-family: "Geist Mono", monospace; font-size: 0.78rem; color: var(--faint); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .nav { animation: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- preloader: lines form TEKTYUM STUDIO ---------- */
.en-pl {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 100% at 50% 40%, #05070d 0%, #030509 72%, #020306 100%);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease), filter 0.7s var(--ease);
}
.en-pl.is-done { opacity: 0; transform: scale(1.045); filter: blur(8px); pointer-events: none; }
html.en-pl-skip .en-pl { display: none !important; }
.en-pl-inner { display: flex; flex-direction: column; align-items: center; }
.en-pl-cry { width: 52px; aspect-ratio: 64/96; margin-bottom: 24px; display: block; }
.en-pl-cry .facet { opacity: 0; animation: enFacet 1s var(--ease) forwards; }
.en-pl-cry .f1 { --fo: .10; animation-delay: 1.0s } .en-pl-cry .f2 { --fo: .06; animation-delay: 1.08s } .en-pl-cry .f3 { --fo: .04; animation-delay: 1.16s }
.en-pl-cry .f4 { --fo: .08; animation-delay: 1.24s } .en-pl-cry .f5 { --fo: .05; animation-delay: 1.32s } .en-pl-cry .f6 { --fo: .07; animation-delay: 1.40s }
@keyframes enFacet { to { opacity: var(--fo, .07); } }
.en-pl-cry .draw { stroke-opacity: .55; stroke-dasharray: 240; stroke-dashoffset: 240; animation: enDraw 1.1s var(--ease) forwards; }
.en-pl-cry .d1 { animation-delay: 0s } .en-pl-cry .d2 { animation-delay: 0.3s } .en-pl-cry .d3 { animation-delay: 0.4s } .en-pl-cry .d4 { animation-delay: 0.5s }
@keyframes enDraw { to { stroke-dashoffset: 0; } }
.en-pl-word { position: relative; display: flex; font-family: "Chakra Petch", system-ui, sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: clamp(26px, 5vw, 44px); color: #EAF4FA; line-height: 1.04; }
/* printed by the scan-line (WAAPI from en.js, compositor-only) */
.en-pl-word span { display: inline-block; opacity: 0; transform-origin: 50% 88%; will-change: transform, opacity, filter; }
.en-pl-rule { width: 0; height: 1px; margin: 15px 0 14px; background: linear-gradient(90deg, transparent, rgba(210,235,248,0.55), transparent); animation: enRule 0.7s var(--ease) 0.1s forwards; }
@keyframes enRule { to { width: min(320px, 72vw); } }
.en-pl-sub { font-family: "Geist Mono", ui-monospace, monospace; letter-spacing: 0.34em; text-transform: uppercase; font-size: 0.66rem; color: var(--lilac); opacity: 0; animation: enFade 0.7s var(--ease) 0.95s forwards; }
@keyframes enFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.en-pl-bar { width: min(220px, 60vw); height: 1px; margin-top: 30px; background: rgba(210,235,248,0.14); overflow: hidden; }
.en-pl-bar i { display: block; height: 100%; width: 100%; transform: scaleX(0); transform-origin: left; background: #EAF4FA; animation: enBar 1.6s var(--ease) 0.2s forwards; }
@keyframes enBar { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .en-pl-cry .facet, .en-pl-cry .draw, .en-pl-word span, .en-pl-rule, .en-pl-sub, .en-pl-bar i { animation: none !important; opacity: 1 !important; transform: none !important; width: min(320px,72vw) !important; stroke-dashoffset: 0 !important; }
  .en-pl-cry .facet { opacity: var(--fo, .07) !important; }
  .scan-line { display: none !important; }
}

/* ===================== ice components (2026-07-03 redesign) ===================== */
h1, h2, h3 { text-wrap: balance; }
html.js .reveal { opacity: 0; transform: translateY(22px); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal { opacity: 1; transform: none; } /* default visible: no-JS / crawlers always see content */

/* --- scan-line print: the light sweeps, letters rise from blur in its wake (compositor-only WAAPI) --- */
.decode { position: relative; }
.dch { display: inline-block; opacity: 0; white-space: pre; transform-origin: 50% 88%; will-change: transform, opacity, filter; }
.decode .dot { opacity: 0; transition: opacity .5s var(--ease) .2s; }
.decode.decoded .dot { opacity: 1; }
.scan-line { position: absolute; top: -14%; bottom: -14%; left: -2px; width: 2px; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(234, 244, 250, .95) 30%, rgba(234, 244, 250, .95) 70%, transparent);
  filter: drop-shadow(0 0 10px rgba(185, 225, 248, .9)) drop-shadow(0 0 26px rgba(185, 225, 248, .4));
  opacity: 0; will-change: transform, opacity; }

/* --- pill (the gate's signature button, ported) --- */
.pill { position: relative; height: 50px; min-width: 232px; padding: 0 28px; display: inline-grid; place-items: center;
  background: none; border: 0; cursor: pointer; font: inherit; color: var(--text); outline: none; }
.pill-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.pill-svg rect { x: .5px; y: .5px; width: calc(100% - 1px); height: calc(100% - 1px); rx: 7px; fill: none;
  stroke: rgba(210, 235, 248, .34); stroke-width: 1; stroke-dasharray: 46 4;
  transition: stroke .35s var(--ease), filter .45s var(--ease); }
.pill:hover .pill-svg rect, .pill:focus-visible .pill-svg rect { stroke: rgba(226, 243, 252, .95);
  filter: drop-shadow(0 0 6px var(--glow)) drop-shadow(0 0 20px rgba(185, 225, 248, .28)); }
.pill:focus-visible { outline: 1px solid rgba(210, 235, 248, .4); outline-offset: 4px; }
.pill-labels { display: flex; flex-direction: column; height: 1.2em; overflow: hidden;
  font-family: "Geist Mono", ui-monospace, monospace; font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.pill-l { height: 1.2em; line-height: 1.2em; white-space: nowrap; transition: transform .45s var(--ease); }
.pill:hover .pill-l, .pill:focus-visible .pill-l { transform: translateY(-1.2em); }
.pill-line { position: absolute; left: 28px; right: 28px; bottom: 12px; height: 1px; background: var(--text);
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.pill:hover .pill-line, .pill:focus-visible .pill-line { transform: scaleX(1); }
.pill.pf { pointer-events: none; }
.pill.pf.pf-done { pointer-events: auto; }

.link-under { display: inline-block; padding: 2px 0; font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text); border-bottom: 1px solid rgba(210, 235, 248, .45);
  transition: border-color .3s, color .3s; cursor: pointer; }
.link-under:hover, .link-under:focus-visible { color: #fff; border-color: #fff; outline: none; }

/* --- rule label: mono tag on a hairline that draws across on reveal --- */
.rule-label { display: flex; align-items: center; gap: 18px; margin-bottom: clamp(30px, 4vw, 46px); }
.rule-label span { font-family: "Geist Mono", monospace; font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--dust); white-space: nowrap; }
.rule-label::after { content: ""; flex: 1; height: 1px; background: var(--hairline-2); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease) .15s; }
.rule-label.in::after, html:not(.js) .rule-label::after { transform: scaleX(1); }

/* --- services: precision rows instead of cards --- */
.svc-rows { display: flex; flex-direction: column; border-top: 1px solid var(--hairline); }
.svc-row { display: grid; grid-template-columns: minmax(200px, .85fr) 1.8fr 44px; align-items: center; gap: clamp(16px, 3vw, 44px);
  padding: clamp(20px, 2.6vw, 30px) 4px; border-bottom: 1px solid var(--hairline); cursor: pointer; position: relative;
  transition: background .35s var(--ease); }
.svc-row:hover, .svc-row:focus-visible { background: rgba(191, 224, 245, .035); outline: none; }
.svc-row-name { font-family: "Chakra Petch", sans-serif; font-weight: 700; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--text); position: relative; width: max-content; max-width: 100%; }
.svc-row-name::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.svc-row:hover .svc-row-name::after, .svc-row:focus-visible .svc-row-name::after { transform: scaleX(1); }
.svc-row-desc { color: var(--dim); font-size: .96rem; max-width: 58ch; }
.svc-row-go { font-family: "Geist Mono", monospace; color: var(--dust); justify-self: end; transition: transform .35s var(--ease), color .35s var(--ease); }
.svc-row:hover .svc-row-go, .svc-row:focus-visible .svc-row-go { transform: translateX(5px); color: var(--text); }
@media (max-width: 780px) {
  .svc-row { grid-template-columns: 1fr 34px; row-gap: 8px; }
  .svc-row-desc { grid-column: 1 / -1; }
}

/* --- hero: hairline crystal traces in on the right --- */
.hero-cry { position: absolute; right: clamp(-30px, 6vw, 140px); top: 50%; transform: translateY(-52%);
  width: clamp(190px, 23vw, 330px); aspect-ratio: 64/96; z-index: 1; pointer-events: none; }
.hero-cry svg { width: 100%; height: 100%; display: block; }
.hero-cry .cf { opacity: 0; transition: opacity 1.3s var(--ease); }
.hero.cry-filled .hc1 { opacity: .07 } .hero.cry-filled .hc2 { opacity: .04 } .hero.cry-filled .hc3 { opacity: .03 }
.hero.cry-filled .hc4 { opacity: .06 } .hero.cry-filled .hc5 { opacity: .035 } .hero.cry-filled .hc6 { opacity: .05 }
.hero-cry .cd { stroke-opacity: .5; stroke-dasharray: 1; stroke-dashoffset: 1; }
.hero.cry-go .hero-cry .cd { animation: enTrace 1.7s var(--ease) forwards; }
.hero.cry-go .hero-cry .cd:nth-child(2) { animation-delay: .35s } .hero.cry-go .hero-cry .cd:nth-child(3) { animation-delay: .5s } .hero.cry-go .hero-cry .cd:nth-child(4) { animation-delay: .65s }
@keyframes enTrace { to { stroke-dashoffset: 0 } }
@media (max-width: 900px) { .hero-cry { opacity: .45; right: -70px; } }
html.js .hero-rest { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--ease) .5s, transform .8s var(--ease) .5s; }
html.js .hero-rest.in { opacity: 1; transform: none; }

/* --- scroll-driven line layer (home only; paths built in JS at document size) --- */
.line-layer { position: absolute; inset: 0; z-index: 1; pointer-events: none; will-change: transform; }
.line-layer path { stroke: rgba(210, 235, 248, .13); stroke-width: 1; }

/* --- giant section crystals: trace when their section reveals --- */
.sec-cry { position: absolute; pointer-events: none; z-index: 0; width: min(560px, 52vw); aspect-ratio: 64/96; }
.sec-cry svg { width: 100%; height: 100%; display: block; overflow: visible; }
.sec-cry .cd { fill: none; stroke: var(--hairline); stroke-width: .12; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.section.sec-in .sec-cry .cd { animation: enTrace 2.2s var(--ease) forwards; }
.section.sec-in .sec-cry .cd:nth-child(2) { animation-delay: .4s } .section.sec-in .sec-cry .cd:nth-child(3) { animation-delay: .55s } .section.sec-in .sec-cry .cd:nth-child(4) { animation-delay: .7s }
html:not(.js) .sec-cry .cd { stroke-dashoffset: 0; }

@media (prefers-reduced-motion: reduce) {
  .dch { opacity: 1 !important; clip-path: none !important; color: inherit !important; }
  .decode .dot { opacity: 1 !important; }
  .hero-cry .cd, .sec-cry .cd { animation: none !important; stroke-dashoffset: 0 !important; }
  .hero-cry .cf { transition: none !important; }
  html.js .hero-rest, html.js .reveal { opacity: 1 !important; transform: none !important; }
  .rule-label::after { transform: none !important; transition: none !important; }
  .pill-svg rect { stroke-dasharray: 46 4 !important; stroke-dashoffset: 0 !important; }
}

/* --- back to the intro experience --- */
.nav-intro { font-family: "Geist Mono", monospace; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--faint); padding: 4px 2px; border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease); }
.nav-intro:hover, .nav-intro:focus-visible { color: var(--text); border-color: rgba(210, 235, 248, .45); }
@media (max-width: 640px) { .nav-intro { display: none; } }

/* --- RO one-pager bits (shared system additions) --- */
.section[id] { scroll-margin-top: 84px; }
.hero-note { font-family: "Geist Mono", monospace; font-size: .74rem; letter-spacing: .08em; color: var(--faint); }
div.svc-row { cursor: default; }
.ai-caps { list-style: none; margin-top: 26px; display: grid; grid-template-columns: repeat(2, minmax(260px, 1fr)); gap: 12px 40px; max-width: 900px; }
@media (max-width: 780px) { .ai-caps { grid-template-columns: 1fr; } }
.ai-caps li { position: relative; padding-left: 22px; color: var(--dim); font-size: .98rem; }
.ai-caps li::before { content: ""; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; background: var(--hot); transform: rotate(45deg); }
.t-quote { margin: clamp(34px, 5vw, 52px) 0 0; padding-top: 26px; border-top: 1px solid var(--hairline); max-width: 720px; }
.t-quote blockquote { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.6; color: var(--text); }
.t-quote figcaption { margin-top: 16px; display: flex; align-items: center; gap: 14px; }
.t-quote figcaption img { width: 96px; height: auto; opacity: .9; }
.t-quote figcaption span { font-family: "Geist Mono", monospace; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--dust); }
.t-quote figcaption small { color: var(--faint); text-transform: none; letter-spacing: .04em; }
.cf-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .cf-2col { grid-template-columns: 1fr; } }
.dword { display: inline-block; white-space: nowrap; }
.h-hero--ro { font-size: clamp(2.3rem, 5.6vw, 4.1rem); }

/* --- legal pages (confidentialitate / cookies / termeni · privacy / terms) --- */
.legal { padding: clamp(96px, 13vh, 140px) 0 clamp(56px, 9vh, 110px); }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 10px; }
.legal .updated { font-family: "Geist Mono", monospace; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 36px; }
.legal h2 { font-size: clamp(1.15rem, 2vw, 1.45rem); margin: 36px 0 12px; }
.legal p, .legal li { color: var(--dim); font-size: .98rem; line-height: 1.75; max-width: 72ch; }
.legal ul { margin: 10px 0 14px 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); border-bottom: 1px solid rgba(210, 235, 248, .3); transition: color .25s var(--ease), border-color .25s var(--ease); }
.legal a:hover { color: #fff; border-color: #fff; }
.legal strong { color: var(--text); font-weight: 600; }
.legal .fill { font-family: "Geist Mono", monospace; font-size: .85em; color: var(--hot); white-space: nowrap; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; font-size: .84rem; color: var(--faint); }
.footer-legal a { color: var(--faint); transition: color .25s var(--ease); }
.footer-legal a:hover { color: var(--text); }
.form-consent { font-size: .8rem; color: var(--faint); max-width: 52ch; line-height: 1.6; }
.form-consent a { color: var(--dust); border-bottom: 1px solid rgba(210, 235, 248, .25); }

/* --- section wipe: a cold curtain with holo scan edges sweeps between sections/pages --- */
html.wiping::before { content: ""; position: fixed; inset: 0; z-index: 900; background: #030509; }
.wipe { position: fixed; inset: 0; z-index: 900; pointer-events: none; }
.wipe-curtain { position: absolute; inset: -2px 0; background: #030509; transform: translateX(-103%); will-change: transform; }
.wipe-curtain::before, .wipe-curtain::after { content: ""; position: absolute; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, rgba(234, 244, 250, .95) 22%, rgba(234, 244, 250, .95) 78%, transparent);
  filter: drop-shadow(0 0 12px rgba(185, 225, 248, .9)) drop-shadow(0 0 32px rgba(185, 225, 248, .45)); }
.wipe-curtain::before { left: -1px; }
.wipe-curtain::after { right: -1px; }

/* --- wide e-commerce package card on the pricing surfaces --- */
.price-wide { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; gap: clamp(20px, 3vw, 44px); border-color: rgba(191, 224, 245, 0.3); }
.price-wide .pw-info { display: flex; flex-direction: column; gap: 12px; max-width: 62ch; }
.price-wide .pw-price { text-align: right; flex-shrink: 0; }
.price-wide .pw-price .price-tag { white-space: nowrap; }
.price-wide .pw-price small { display: block; margin-top: 6px; font-family: "Geist Mono", monospace; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
@media (max-width: 860px) { .price-wide { flex-direction: column; align-items: flex-start; } .price-wide .pw-price { text-align: left; } }

/* --- accepted payments band (pricing, EN home): mono label + glass chips --- */
.pay-band {
  margin-top: clamp(28px, 4vw, 42px);
  padding: clamp(18px, 2.4vw, 26px) clamp(16px, 3vw, 32px);
  border: 1px solid var(--hairline); border-radius: 14px;
  background: linear-gradient(180deg, rgba(6, 9, 15, 0.5), rgba(4, 7, 12, 0.35));
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 24px;
}
.pay-label { font-family: "Geist Mono", ui-monospace, monospace; font-size: .72rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--dust); }
.pay-chips { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0; padding: 0; }
.pay-chip {
  display: inline-flex; align-items: center; gap: 9px; height: 42px; padding: 0 18px;
  border: 1px solid var(--hairline-2); border-radius: 999px; background: rgba(6, 9, 15, 0.55);
  transition: border-color .3s var(--ease);
}
.pay-chip:hover { border-color: rgba(210, 235, 248, 0.42); }
.pay-chip svg { width: 18px; height: 18px; display: block; flex: 0 0 auto; filter: drop-shadow(0 0 6px rgba(185, 225, 248, 0.25)); }
.pay-name { font-family: "Geist Mono", ui-monospace, monospace; font-size: .78rem; font-weight: 500; letter-spacing: .06em; color: var(--text); line-height: 1; }

/* ---------- card border glow: the pill's traveling ice light, scaled to cards ---------- */
.glow-host { position: relative; transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.glow-host:hover { transform: translateY(-4px); border-color: rgba(210, 235, 248, 0.4); box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45); }
.card-trace { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; z-index: 3; }
.card-trace rect { fill: none; stroke: rgba(191, 224, 245, 0.55); stroke-width: 1.2;
  stroke-dasharray: 20 80; opacity: 0.35;
  filter: drop-shadow(0 0 5px rgba(185, 225, 248, 0.5));
  transition: opacity .4s var(--ease), filter .4s var(--ease); }
.glow-host:hover .card-trace rect, .glow-host:focus-visible .card-trace rect {
  opacity: 1; filter: drop-shadow(0 0 9px rgba(185, 225, 248, 0.9)) drop-shadow(0 0 26px rgba(185, 225, 248, 0.35)); }
@media (prefers-reduced-motion: reduce) { .card-trace rect { stroke-dasharray: none; opacity: 0; } .glow-host:hover .card-trace rect { opacity: 0.6; } }

/* --- testimoniale (homepage RO, secțiune dedicată sub proiecte) --- */
.tst-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 1.6vw, 20px); margin-top: clamp(36px, 5vw, 56px); }
.tst-card {
  position: relative; padding: clamp(22px, 2.4vw, 32px); border-radius: 14px;
  background: linear-gradient(180deg, rgba(6,9,15,0.72), rgba(4,7,12,0.55));
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 16px; margin: 0;
}
.tst-card blockquote { font-size: clamp(0.98rem, 1.2vw, 1.05rem); line-height: 1.65; color: var(--text); flex: 1; }
.tst-card figcaption {
  font-family: "Geist Mono", monospace; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--dust);
  padding-top: 14px; border-top: 1px solid var(--hairline);
}
.tst-card figcaption small { color: var(--faint); text-transform: none; letter-spacing: 0.04em; }
@media (max-width: 900px) { .tst-grid { grid-template-columns: 1fr; } }

/* --- scroll CTA (demo gratuit / free demo) · RO + EN homepages --- */
.tkcta-backdrop {
  position: fixed; inset: 0; z-index: 240;
  background: rgba(3, 5, 9, 0.72);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  animation: tkctaFade 0.45s var(--ease) both;
}
.tkcta-wrap { position: fixed; inset: 0; z-index: 241; display: grid; place-items: center; padding: 20px; pointer-events: none; }
.tkcta {
  pointer-events: auto; position: relative; overflow: hidden;
  width: min(480px, 94vw); padding: clamp(30px, 4.5vw, 44px); text-align: center;
  background: linear-gradient(180deg, rgba(8, 12, 19, 0.96), rgba(4, 7, 12, 0.94));
  border: 1px solid var(--hairline-2); border-radius: 16px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  animation: tkctaPop 0.55s var(--ease) both; outline: none;
}
.tkcta-glow {
  position: absolute; left: 50%; top: -130px; transform: translateX(-50%);
  width: 360px; height: 260px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(191, 224, 245, 0.16), transparent 62%);
}
.tkcta-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: none; border: 1px solid var(--hairline); border-radius: 10px;
  color: var(--dust); cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.tkcta-close:hover { color: var(--text); border-color: var(--hairline-2); }
.tkcta-close:active { transform: scale(0.92); }
.tkcta-mark {
  margin: 0 auto; width: 58px; height: 58px; display: grid; place-items: center;
  border: 1px solid var(--hairline); border-radius: 13px;
  background: rgba(210, 235, 248, 0.03);
}
.tkcta-mark img { width: 30px; height: 30px; display: block; }
.tkcta-kicker {
  margin-top: 22px; font-family: "Geist Mono", monospace; font-size: 0.7rem;
  letter-spacing: 0.26em; text-indent: 0.26em; text-transform: uppercase; color: var(--dust);
}
.tkcta-title {
  margin: 14px auto 0; max-width: 15ch; font-family: "Geist", sans-serif;
  font-weight: 700; font-size: clamp(1.5rem, 4.4vw, 1.95rem); line-height: 1.16;
  letter-spacing: -0.02em; color: var(--text);
}
.tkcta-copy { margin: 14px auto 0; max-width: 36ch; font-size: 0.95rem; line-height: 1.65; color: var(--dim); }
.tkcta-badge {
  margin-top: 22px; display: inline-flex; align-items: stretch; overflow: hidden;
  border: 1px solid var(--hairline); border-radius: 10px; background: rgba(6, 9, 15, 0.6);
}
.tkcta-badge .b-ic {
  display: flex; align-items: center; padding: 0 12px;
  border-right: 1px solid var(--hairline); background: rgba(191, 224, 245, 0.07); color: var(--hot);
}
.tkcta-badge .b-tx {
  display: flex; align-items: center; padding: 9px 14px;
  font-family: "Geist Mono", monospace; font-size: 0.76rem; letter-spacing: 0.06em; color: var(--text);
}
.tkcta .btn { margin-top: 24px; width: 100%; justify-content: center; }
.tkcta-no {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer;
  font-family: "Geist Mono", monospace; font-size: 0.76rem; letter-spacing: 0.06em; color: var(--dust);
  transition: color 0.3s var(--ease);
}
.tkcta-no:hover { color: var(--text); }
.tkcta-no i {
  font-style: normal; padding: 2px 7px; border: 1px solid var(--hairline); border-radius: 6px;
  font-size: 0.64rem; color: var(--faint);
}
@keyframes tkctaFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes tkctaPop { from { opacity: 0; transform: translateY(16px) scale(0.96); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .tkcta, .tkcta-backdrop { animation: none; } }
