:root {
  --ink: #05070b;
  --ink-soft: #080c12;
  --panel: #0d121a;
  --panel-light: #121924;
  --text: #f3efe6;
  --muted: #9aa3af;
  --muted-dark: #68717d;
  --gold: #c8a96a;
  --gold-light: #dec486;
  --blue: #6aa6c8;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --page-pad: clamp(24px, 6vw, 96px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
.tic24-site-active,
.tic24-site-active #page,
.tic24-site-active #content,
.tic24-site-active .site-main,
.elementor-widget-tic24-landing,
.elementor-widget-tic24-landing > .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100%;
}
.tic24-site-active .elementor-element:has(> .elementor-widget-tic24-landing) { padding: 0 !important; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: #08090b; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

.tic24-page {
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}
.tic24-page button:disabled { cursor: wait; opacity: .68; }

.site-header {
  height: 84px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  transition: transform .3s ease, background .3s ease;
}
.brand:hover .brand-mark { transform: rotate(45deg); background: rgba(200, 169, 106, .08); }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.desktop-nav a {
  color: #9199a4;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--text); }
.header-link {
  justify-self: end;
  display: flex;
  gap: 14px;
  align-items: center;
  color: #c9cdd3;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  border-bottom: 1px solid #6b7079;
  padding-bottom: 6px;
}
.header-link span { color: var(--gold); }

.hero {
  min-height: calc(100vh - 84px);
  margin: auto;
  padding: 72px clamp(24px, 8vw, 128px) 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, .94fr);
  align-items: center;
  gap: 5vw;
  position: relative;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px),
    radial-gradient(circle at 78% 45%, rgba(63, 111, 142, 0.17), transparent 29%),
    linear-gradient(115deg, #06090e 0%, #070a0f 55%, #0b1018 100%);
  background-size: 72px 72px, 72px 72px, auto, auto;
}
.hero::before {
  content: "";
  position: absolute;
  left: clamp(24px, 5vw, 76px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, var(--line), transparent);
}
.hero::after {
  content: "PRIVATE PREVIEW";
  position: absolute;
  right: 22px;
  top: 50%;
  color: rgba(255,255,255,.13);
  font-size: 8px;
  letter-spacing: .35em;
  writing-mode: vertical-rl;
}
.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: -240px;
  bottom: -230px;
  background: rgba(196, 164, 98, .09);
  border-radius: 50%;
  filter: blur(60px);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
  font-weight: 700;
  margin: 0 0 30px;
}
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
h1, h2 { text-wrap: balance; }
h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(62px, 7.2vw, 118px);
  font-weight: 400;
  line-height: .89;
  letter-spacing: -.055em;
  margin: 0;
}
h1 em, h2 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,240,231,.56);
  font-weight: 400;
}
.hero-lead {
  max-width: 620px;
  color: #a9afb8;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
  margin: 34px 0 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
  font-weight: 700;
  transition: .25s ease;
}
.button-primary { background: var(--gold); color: #0b0b0b; }
.button-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(200,169,106,.12); }
.button-ghost { border: 1px solid var(--line); color: #d6d7da; }
.button-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }
.private-note {
  margin: 40px 0 0;
  font-size: 9px;
  color: #626a75;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.concept-visual {
  --card-tilt-x: 4deg;
  --card-tilt-y: -8deg;
  --card-shift-x: 0px;
  --card-shift-y: 0px;
  --spin-x: 0deg;
  --spin-y: 0deg;
  --light-x: 50%;
  --light-y: 50%;
  aspect-ratio: 1;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.concept-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 4%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  background: radial-gradient(circle, rgba(58,88,110,.12), transparent 65%);
  animation: visual-breathe 6s ease-in-out infinite;
}
.concept-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at var(--light-x) var(--light-y), rgba(106,166,200,.13), transparent 31%);
  pointer-events: none;
  transition: background-position .12s linear;
}
.radar-sweep {
  position: absolute;
  z-index: 0;
  inset: 10%;
  border-radius: 50%;
  background: conic-gradient(from 20deg, transparent 0 69%, rgba(106,166,200,.03) 73%, rgba(106,166,200,.13) 81%, transparent 88% 100%);
  mask-image: radial-gradient(circle, transparent 0 34%, #000 35% 100%);
  animation: rotate 9s linear infinite;
  pointer-events: none;
}
.energy-pulse {
  position: absolute;
  z-index: 1;
  width: 36%;
  aspect-ratio: 1;
  border: 1px solid rgba(200,169,106,.28);
  border-radius: 50%;
  pointer-events: none;
  animation: energy-pulse 5s ease-out infinite;
}
.energy-pulse-two { border-color: rgba(106,166,200,.24); animation-delay: 2.5s; }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(200,169,106,.18); border-radius: 50%; pointer-events: none; }
.orbit::before,
.orbit::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 49%;
}
.orbit::after {
  background: var(--gold);
  left: -3px;
  box-shadow: 0 0 14px var(--gold);
}
.orbit::before {
  right: -3px;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
}
.orbit > span { position: absolute; top: -3px; left: calc(50% - 3px); width: 6px; height: 6px; border-radius: 50%; background: #d9c18e; box-shadow: 0 0 18px rgba(217,193,142,.8); }
.orbit-one { width: 82%; height: 82%; animation: rotate 13s linear infinite; }
.orbit-two { width: 62%; height: 62%; border-style: dashed; animation: rotate 19s linear infinite reverse; }
.orbit-three { width: 46%; height: 46%; border-color: rgba(106,166,200,.18); animation: rotate 8s linear infinite; }
.core-stage {
  --grab-scale: 1;
  width: 44%;
  aspect-ratio: .78;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transform: translate3d(var(--card-shift-x), var(--card-shift-y), 30px) rotateX(calc(var(--card-tilt-x) + var(--spin-x))) rotateY(calc(var(--card-tilt-y) + var(--spin-y))) scale(var(--grab-scale));
  transition: transform .14s ease-out;
  will-change: transform;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.core-stage *, .core-stage *::before, .core-stage *::after { user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
.core-stage[data-dragging="true"] { --grab-scale: 1.025; cursor: grabbing; transition: none; }
.core-stage[data-returning="true"] { --grab-scale: 1.01; transition: none; }
.core-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: card-float 6s ease-in-out infinite;
}
.core-face {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(145deg, rgba(24,31,42,.98), rgba(8,11,17,.99));
  border: 1px solid rgba(200,169,106,.35);
  box-shadow: 0 30px 90px rgba(0,0,0,.55), inset 0 0 70px rgba(83,124,153,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.core-front { transform: rotateY(0deg) translateZ(1px); }
.core-back { transform: rotateY(180deg) translateZ(1px); align-items: center; background: radial-gradient(circle at 50% 46%, rgba(106,166,200,.14), transparent 34%), linear-gradient(145deg, #111924, #080c12); }
.core-face::after { content: ""; position: absolute; z-index: 3; inset: 9px; border: 1px solid rgba(255,255,255,.06); pointer-events: none; }
.core-stage[data-dragging="true"] .core-card { animation-play-state: paused; }
.core-stage[data-dragging="true"] .core-face { border-color: rgba(222,196,134,.62); box-shadow: 0 38px 105px rgba(0,0,0,.62), 0 0 40px rgba(200,169,106,.1), inset 0 0 70px rgba(83,124,153,.11); }
.core-stage[data-returning="true"] .core-card { animation-play-state: paused; }
.card-light { position: absolute; z-index: 0; inset: 0; background: radial-gradient(circle at var(--light-x) var(--light-y), rgba(106,166,200,.17), transparent 43%); transition: background-position .12s linear; pointer-events: none; }
.card-scan { position: absolute; z-index: 1; top: 10px; bottom: 10px; left: 8%; width: 1px; background: linear-gradient(transparent, rgba(222,196,134,.55), transparent); box-shadow: 0 0 16px rgba(200,169,106,.28); animation: card-scan 4.8s ease-in-out infinite; pointer-events: none; }
.core-topline, .core-footer { position: relative; z-index: 2; display: flex; justify-content: space-between; text-transform: uppercase; font-size: 7px; color: #8f98a6; letter-spacing: .15em; }
.core-monogram { position: relative; z-index: 2; align-self: center; font-family: Georgia, serif; font-size: clamp(70px, 8vw, 112px); line-height: 1; color: #d9c18e; letter-spacing: -.08em; text-shadow: 0 0 38px rgba(200,169,106,.15); animation: monogram-glow 3.6s ease-in-out infinite; }
.core-monogram span { display: block; margin-top: -13px; font-family: Arial, sans-serif; font-size: 12px; color: var(--blue); letter-spacing: .5em; text-align: center; }
.back-topline { position: relative; z-index: 2; width: 100%; display: flex; justify-content: space-between; color: #7e8995; font-size: 7px; text-transform: uppercase; letter-spacing: .16em; }
.back-emblem { position: relative; z-index: 2; width: 55%; aspect-ratio: 1; border: 1px solid rgba(200,169,106,.42); border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle, rgba(200,169,106,.1), transparent 67%); box-shadow: 0 0 55px rgba(106,166,200,.08), inset 0 0 40px rgba(200,169,106,.04); }
.back-emblem::before, .back-emblem::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(106,166,200,.15); }
.back-emblem::before { inset: 10%; }
.back-emblem::after { inset: -13%; border-style: dashed; animation: rotate 14s linear infinite; }
.back-emblem strong { font-family: Georgia, serif; color: #d9c18e; font-size: clamp(52px, 6vw, 82px); font-weight: 400; line-height: 1; }
.back-emblem small { position: absolute; bottom: 18%; color: var(--blue); font-size: 9px; letter-spacing: .45em; margin-left: .45em; }
.back-caption { position: relative; z-index: 2; display: grid; justify-items: center; gap: 7px; text-align: center; text-transform: uppercase; }
.back-caption span { color: #b7bec7; font-size: 7px; letter-spacing: .18em; }
.back-caption small { color: #5f6a76; font-size: 6px; letter-spacing: .14em; }
.signal {
  position: absolute;
  z-index: 3;
  min-width: 130px;
  padding: 13px 16px;
  background: rgba(10,14,20,.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  transition: border-color .25s ease, background .25s ease;
}
.signal:hover { border-color: rgba(200,169,106,.48); background: rgba(14,20,29,.96); }
.signal small { color: var(--gold); font-size: 8px; letter-spacing: .14em; }
.signal strong { font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.signal-a { top: 18%; left: 0; animation: signal-float-a 5.4s ease-in-out infinite; }
.signal-b { top: 24%; right: -1%; animation: signal-float-b 6.2s ease-in-out .8s infinite; }
.signal-c { bottom: 15%; right: 5%; animation: signal-float-c 5.8s ease-in-out .35s infinite; }
.scroll-cue {
  position: absolute;
  left: var(--page-pad);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #606975;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .17em;
}
.scroll-cue i { width: 40px; height: 1px; background: #3b424b; position: relative; }
.scroll-cue i::after { content: ""; position: absolute; width: 6px; height: 6px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); right: 0; top: -3px; transform: rotate(-45deg); }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes visual-breathe { 0%, 100% { transform: scale(1); box-shadow: inset 0 0 0 rgba(106,166,200,0); } 50% { transform: scale(1.018); box-shadow: inset 0 0 70px rgba(106,166,200,.055); } }
@keyframes energy-pulse { 0% { transform: scale(.72); opacity: 0; } 18% { opacity: .65; } 78% { opacity: .12; } 100% { transform: scale(2.25); opacity: 0; } }
@keyframes card-float { 0%, 100% { transform: translateY(0) rotateZ(-.3deg); } 50% { transform: translateY(-10px) rotateZ(.3deg); } }
@keyframes card-scan { 0%, 12% { left: 8%; opacity: 0; } 26% { opacity: .65; } 74% { opacity: .65; } 88%, 100% { left: 92%; opacity: 0; } }
@keyframes monogram-glow { 0%, 100% { color: #d9c18e; text-shadow: 0 0 28px rgba(200,169,106,.14); } 50% { color: #ead49f; text-shadow: 0 0 46px rgba(200,169,106,.34), 0 0 80px rgba(106,166,200,.1); } }
@keyframes signal-float-a { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(7px, -8px); } }
@keyframes signal-float-b { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-8px, 6px); } }
@keyframes signal-float-c { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(6px, 8px); } }

.section {
  position: relative;
  padding: clamp(96px, 11vw, 176px) var(--page-pad);
  border-top: 1px solid var(--line-soft);
}
.section-heading { display: grid; grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr); gap: 7vw; align-items: start; margin-bottom: clamp(60px, 7vw, 110px); }
.section-kicker { margin: 7px 0 0; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .19em; line-height: 1.6; text-transform: uppercase; }
h2 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(48px, 5.5vw, 88px); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
h3 { margin: 0; }
.lead-paragraph { color: #e0e0de !important; font-size: clamp(20px, 2vw, 30px) !important; line-height: 1.42 !important; letter-spacing: -.02em; }

.about-section { background: linear-gradient(135deg, #090d13, #06090e 60%); }
.about-section::before { content: ""; position: absolute; top: 0; right: 18%; height: 100%; width: 1px; background: linear-gradient(transparent, var(--line-soft), transparent); }
.about-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(42px, 8vw, 130px); align-items: start; max-width: 1280px; margin-left: auto; }
.about-intro { padding-top: 30px; }
.about-intro p { color: var(--muted); font-size: 15px; line-height: 1.8; margin: 0 0 28px; }
.difference-card { position: relative; padding: clamp(34px, 5vw, 70px); border: 1px solid var(--line); background: linear-gradient(145deg, rgba(18,24,33,.86), rgba(9,13,19,.74)); box-shadow: 0 30px 70px rgba(0,0,0,.17); }
.difference-card::after { content: ""; position: absolute; width: 42px; height: 42px; right: -1px; bottom: -1px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.card-index { display: flex; justify-content: space-between; color: #727b87; font-size: 8px; letter-spacing: .19em; margin-bottom: 70px; }
.card-index span { color: var(--gold); }
.difference-card h3 { max-width: 620px; font-family: Georgia, serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 400; line-height: 1.1; letter-spacing: -.035em; }
.difference-card > p { max-width: 680px; color: var(--muted); font-size: 14px; line-height: 1.8; margin: 28px 0 38px; }
.difference-tags, .tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.difference-tags span, .tech-tags span { padding: 9px 12px; border: 1px solid var(--line); color: #b3bac3; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.principle-strip { margin-top: clamp(72px, 9vw, 136px); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-strip > div { position: relative; padding: 34px 32px; display: grid; grid-template-columns: auto 1fr; column-gap: 20px; row-gap: 10px; }
.principle-strip > div + div { border-left: 1px solid var(--line); }
.principle-strip small { grid-row: 1 / 3; color: var(--gold); font-family: Georgia, serif; font-size: 18px; }
.principle-strip strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.principle-strip span { color: var(--muted-dark); font-size: 11px; line-height: 1.5; }

.market-section { min-height: 760px; display: grid; align-content: center; overflow: hidden; background: #07101a; }
.market-section::before { content: ""; position: absolute; inset: 0; opacity: .38; background: linear-gradient(rgba(106,166,200,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(106,166,200,.08) 1px, transparent 1px); background-size: 92px 92px; mask-image: linear-gradient(90deg, transparent, black 42%, black); }
.market-orb { position: absolute; right: -18vw; top: 50%; transform: translateY(-50%); width: 65vw; height: 65vw; max-width: 950px; max-height: 950px; border-radius: 50%; border: 1px solid rgba(106,166,200,.16); box-shadow: inset 0 0 160px rgba(54,114,151,.1), 0 0 100px rgba(54,114,151,.05); }
.market-orb::before, .market-orb::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(200,169,106,.15); }
.market-orb::before { inset: 15%; }
.market-orb::after { inset: 34%; background: radial-gradient(circle, rgba(106,166,200,.12), transparent 68%); }
.compact-heading { position: relative; z-index: 2; margin-bottom: 70px; }
.market-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; max-width: 1220px; margin-left: auto; align-items: end; }
.market-statement { margin: 0; color: #b2bbc5; font-family: Georgia, serif; font-size: clamp(21px, 2.25vw, 34px); line-height: 1.5; }
.market-points { margin-top: 44px; display: grid; border-top: 1px solid rgba(255,255,255,.15); }
.market-points > div { display: grid; grid-template-columns: 44px 1fr; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.market-points span { color: var(--gold); font-size: 8px; letter-spacing: .15em; }
.market-points p { margin: 0; color: #d5d9dd; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }

.mechanics-section { background: #f0ece2; color: #101217; }
.mechanics-section .section-kicker { color: #8b6e37; }
.mechanics-heading { grid-template-columns: 1.35fr .65fr; align-items: end; }
.mechanics-heading h2 em { -webkit-text-stroke-color: rgba(16,18,23,.45); }
.mechanics-heading > p { max-width: 450px; margin: 0 0 5px; color: #60636a; font-size: 13px; line-height: 1.75; }
.mechanic-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 22px; align-items: center; }
.mechanic-flow article { position: relative; min-height: 330px; padding: 30px; border: 1px solid rgba(16,18,23,.17); background: rgba(255,255,255,.22); display: flex; flex-direction: column; transition: transform .3s ease, background .3s ease; }
.mechanic-flow article:hover { transform: translateY(-6px); background: rgba(255,255,255,.47); }
.flow-number { color: #8e7443; font-size: 8px; letter-spacing: .16em; }
.flow-symbol { width: 72px; height: 72px; margin: 38px 0 auto; border: 1px solid rgba(16,18,23,.25); border-radius: 50%; display: grid; place-items: center; font-family: Georgia, serif; font-size: 18px; color: #775e2f; }
.mechanic-flow h3 { margin-top: 34px; font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.mechanic-flow p { min-height: 54px; margin: 14px 0 0; color: #6a6d72; font-size: 11px; line-height: 1.65; }
.flow-line { color: #a99060; font-family: Georgia, serif; font-style: normal; }
.confidential-note { margin: 42px 0 0; display: flex; align-items: center; gap: 12px; color: #75777b; font-size: 9px; letter-spacing: .06em; }
.confidential-note span { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid #a7a295; border-radius: 50%; font-family: Georgia, serif; color: #7c6a46; }

.technology-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(70px, 11vw, 170px); align-items: center; background: linear-gradient(120deg, #070a0f, #0b111a); }
.tech-copy h2 { margin: 38px 0 44px; }
.tech-copy > p:not(.section-kicker) { max-width: 580px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.tech-copy .lead-paragraph { margin-bottom: 26px; }
.tech-tags { margin-top: 42px; }
.architecture { position: relative; padding: 34px; border: 1px solid rgba(106,166,200,.19); background: linear-gradient(145deg, rgba(18,28,40,.78), rgba(8,12,19,.92)); box-shadow: 0 34px 90px rgba(0,0,0,.28); }
.architecture::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.04); pointer-events: none; }
.architecture-label { display: flex; justify-content: space-between; margin-bottom: 46px; color: #6b7581; font-size: 7px; letter-spacing: .18em; }
.architecture-label span { color: var(--gold); }
.architecture-stack { position: relative; z-index: 2; max-width: 500px; margin: auto; display: grid; justify-items: center; }
.architecture-stack article { width: 100%; padding: 23px 28px; border: 1px solid var(--line); background: #0b1017; text-align: center; display: grid; gap: 8px; }
.architecture-stack small { color: #697582; font-size: 7px; letter-spacing: .17em; }
.architecture-stack strong { font-family: Georgia, serif; font-size: 22px; font-weight: 400; }
.architecture-stack span { color: #717b86; font-size: 8px; letter-spacing: .06em; }
.architecture-stack i { height: 42px; color: #8b754b; font-family: Georgia, serif; font-style: normal; display: grid; place-items: center; }
.architecture-stack .architecture-core { border-color: rgba(200,169,106,.47); background: linear-gradient(90deg, rgba(200,169,106,.09), #0e141d, rgba(106,166,200,.09)); box-shadow: 0 0 40px rgba(200,169,106,.04); }
.architecture > p { margin: 42px 0 0; display: flex; align-items: center; gap: 10px; color: #5d6773; font-size: 8px; line-height: 1.6; }
.architecture > p span { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.roadmap-section { background: #090c11; }
.roadmap-heading { position: sticky; top: 130px; float: left; width: 36%; display: block; margin: 0; }
.roadmap-heading .section-kicker { margin-bottom: 38px; }
.roadmap-list { width: 57%; margin-left: auto; }
.roadmap-list article { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 0 0 80px; }
.roadmap-list article:not(:last-child)::before { content: ""; position: absolute; left: 24px; top: 48px; bottom: 0; width: 1px; background: linear-gradient(var(--gold), var(--line)); opacity: .5; }
.roadmap-marker { position: relative; z-index: 2; width: 49px; height: 49px; display: grid; place-items: center; border: 1px solid rgba(200,169,106,.4); background: #0b0e13; transform: rotate(45deg); }
.roadmap-marker span { color: var(--gold); font-family: Georgia, serif; font-size: 13px; transform: rotate(-45deg); }
.roadmap-list small { display: block; color: #66717d; font-size: 7px; letter-spacing: .18em; margin: 4px 0 13px; }
.roadmap-list h3 { font-family: Georgia, serif; font-size: clamp(27px, 3vw, 42px); font-weight: 400; }
.roadmap-list p { max-width: 520px; margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.faq-section { background: #080b10; }
.faq-list { max-width: 960px; margin-left: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; padding: 28px 0; display: grid; grid-template-columns: 48px 1fr auto; gap: 16px; align-items: center; cursor: pointer; font-family: Georgia, serif; font-size: 20px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font-family: Arial, sans-serif; font-size: 8px; }
.faq-list summary i { color: var(--gold); font-style: normal; font-size: 24px; transition: transform .25s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { max-width: 720px; margin: -4px 0 30px 64px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.deck-section { display: flex; justify-content: space-between; align-items: end; gap: 50px; background: #0a111a; }
.deck-section .section-kicker { margin-bottom: 30px; }

.contact-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 9vw, 140px); background: radial-gradient(circle at 78% 46%, rgba(76,119,151,.12), transparent 34%), linear-gradient(135deg, #0d1621, #070a0f 72%); }
.contact-section::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(200,169,106,.08); border-radius: 50%; left: -260px; top: 5%; box-shadow: 0 0 100px rgba(200,169,106,.03); animation: contact-orbit 12s ease-in-out infinite; }
.contact-intro { position: relative; z-index: 2; }
.contact-intro h2 { margin: 38px 0 34px; }
.contact-intro > p:not(.section-kicker) { max-width: 460px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.direct-contact { margin-top: 58px; display: grid; gap: 12px; }
.direct-contact small { color: #626d79; font-size: 7px; letter-spacing: .18em; }
.direct-contact a { width: fit-content; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.25); font-family: Georgia, serif; font-size: 18px; transition: color .25s ease, border-color .25s ease; }
.direct-contact a:hover { color: var(--gold-light); border-color: var(--gold); }
.direct-contact a span { display: inline-block; margin-left: 16px; color: var(--gold); transition: transform .25s ease; }
.direct-contact a:hover span { transform: translate(4px, -4px); }
.contact-form { position: relative; z-index: 2; isolation: isolate; overflow: hidden; padding: clamp(34px, 4vw, 62px); border: 1px solid rgba(200,169,106,.22); background: linear-gradient(145deg, rgba(25,34,47,.97), rgba(14,20,29,.96)); box-shadow: 0 28px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05); display: grid; gap: 29px; animation: contact-breathe 7s ease-in-out infinite; }
.contact-form::before { content: ""; position: absolute; z-index: 0; top: 0; left: -45%; width: 42%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light), var(--blue), transparent); filter: drop-shadow(0 0 7px rgba(106,166,200,.55)); animation: contact-scan 5.5s ease-in-out infinite; }
.contact-form::after { content: ""; position: absolute; z-index: 0; width: 300px; height: 300px; top: -185px; right: -145px; border-radius: 50%; background: radial-gradient(circle, rgba(106,166,200,.17), rgba(106,166,200,0) 68%); pointer-events: none; animation: contact-aura 9s ease-in-out infinite; }
.contact-form > * { position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { display: grid; gap: 11px; color: #bac3ce; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; transition: color .25s ease, transform .25s ease; }
.contact-form label:focus-within { color: var(--gold-light); transform: translateY(-2px); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: #f2f1ed; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.3); border-radius: 0; padding: 11px 0 14px; outline: none; text-transform: none; letter-spacing: normal; font-size: 13px; resize: vertical; transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.contact-form select { color-scheme: dark; }
.contact-form select option { color: #f2f1ed; background: #17202c; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #87929f; opacity: 1; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold-light); background: rgba(255,255,255,.018); box-shadow: 0 10px 18px -18px rgba(222,196,134,.8); }
.form-footer { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.form-footer p { max-width: 260px; margin: 0; color: #8b96a2; font-size: 8px; line-height: 1.6; }
.contact-form .button span { display: inline-block; transition: transform .25s ease; }
.contact-form .button:hover span { transform: translate(4px, -4px); }

@keyframes contact-breathe {
  0%, 100% { border-color: rgba(200,169,106,.22); box-shadow: 0 28px 80px rgba(0,0,0,.28), 0 0 0 rgba(106,166,200,0), inset 0 1px 0 rgba(255,255,255,.05); }
  50% { border-color: rgba(106,166,200,.34); box-shadow: 0 32px 90px rgba(0,0,0,.3), 0 0 42px rgba(106,166,200,.055), inset 0 1px 0 rgba(255,255,255,.07); }
}
@keyframes contact-scan {
  0%, 14% { transform: translateX(0); opacity: 0; }
  25% { opacity: .9; }
  72% { opacity: .9; }
  84%, 100% { transform: translateX(350%); opacity: 0; }
}
@keyframes contact-aura {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .55; }
  50% { transform: translate(-34px, 28px) scale(1.16); opacity: .9; }
}
@keyframes contact-orbit {
  0%, 100% { transform: scale(1); opacity: .75; }
  50% { transform: scale(1.08); opacity: 1; }
}

.site-footer { min-height: 110px; padding: 30px var(--page-pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); background: #040609; }
.footer-brand { justify-self: start; }
.site-footer p { margin: 0; color: #505966; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; text-align: center; }
.site-footer > a:last-child { justify-self: end; color: #737d89; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }

/* Native Elementor layout compatibility. Content remains in normal Elementor
   widgets, while these classes preserve the original visual system. */
.tic24-page.tic24-native-container,
.tic24-page .tic24-native-container {
  --padding-top: 0px;
  --padding-right: 0px;
  --padding-bottom: 0px;
  --padding-left: 0px;
  --row-gap: 0px;
  --column-gap: 0px;
}
.tic24-page.tic24-native-container {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
}
.tic24-page > .site-header,
.tic24-page > .site-footer {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.tic24-page .hero-actions,
.tic24-page .card-index,
.tic24-page .difference-tags,
.tic24-page .tech-tags { --flex-direction: row; }
:where(.tic24-page) .mechanic-flow { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tic24-page .elementor-widget-text-editor p:first-child { margin-top: 0; }
.tic24-page .elementor-widget-text-editor p:last-child { margin-bottom: 0; }
.tic24-page .elementor-widget-button.button {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.tic24-page .elementor-widget-button.button .elementor-button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
  font-weight: 700;
}
.tic24-page .elementor-widget-button.button-primary .elementor-button { background: var(--gold); color: #0b0b0b; }
.tic24-page .elementor-widget-button.button-primary:hover .elementor-button { background: var(--gold-light); }
.tic24-page .elementor-widget-button.button-ghost .elementor-button { border: 1px solid var(--line); background: transparent; color: #d6d7da; }
.tic24-page .elementor-widget-button.button-ghost:hover .elementor-button { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }

.tic24-native-brand .elementor-widget-container,
.tic24-native-nav .elementor-widget-container,
.tic24-native-header-link .elementor-widget-container { display: flex; align-items: center; }
.tic24-native-nav .elementor-widget-container { justify-content: center; }
.tic24-native-header-link { justify-self: end; }
.tic24-native-header-link .elementor-widget-container { justify-content: flex-end; }

.tic24-hero-decoration,
.tic24-market-decoration { position: absolute; inset: 0; pointer-events: none; }
.tic24-hero-decoration { z-index: 0; }
.tic24-market-decoration { z-index: 1; }
.tic24-hero-decoration > .elementor-widget-container,
.tic24-market-decoration > .elementor-widget-container { position: static; }
.tic24-native-concept-visual { position: relative; z-index: 2; }
.tic24-native-concept-visual > .elementor-widget-container { width: 100%; }
.eyebrow > .elementor-widget-container { display: flex; align-items: center; gap: 12px; }
.eyebrow > .elementor-widget-container::before { content: ""; width: 28px; height: 1px; flex: 0 0 28px; background: currentColor; }
.eyebrow p,
.hero-lead p,
.private-note p,
.section-kicker p { margin: 0; color: inherit; font: inherit; letter-spacing: inherit; line-height: inherit; text-transform: inherit; }
.hero-actions > .elementor-widget-button { width: auto; }
.tic24-page .scroll-cue.elementor-widget-button { min-height: 0; padding: 0; background: transparent; }
.tic24-page .scroll-cue .elementor-button { min-height: 0; padding: 0; background: transparent; color: inherit; font: inherit; letter-spacing: inherit; }

.difference-card > .elementor-widget-text-editor:not(.card-index):not(.difference-tags) p {
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 28px 0 38px;
}
.card-index p { margin: 0; color: inherit; font: inherit; letter-spacing: inherit; }
.card-index > .elementor-widget-text-editor:last-child p { color: var(--gold); }
.difference-tags > .elementor-widget-container,
.tech-tags > .elementor-widget-container { display: flex; flex-wrap: wrap; gap: 8px; }
.difference-tags p,
.tech-tags p { margin: 0; padding: 9px 12px; border: 1px solid var(--line); color: #b3bac3; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.principle-item > .principle-index { grid-row: 1 / 3; }
.principle-index p { margin: 0; color: var(--gold); font-family: Georgia, serif; font-size: 18px; }
.principle-item h3 { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.principle-item > .elementor-widget-text-editor:last-child p { color: var(--muted-dark); font-size: 11px; line-height: 1.5; }

.market-statement p { margin: 0; color: inherit; font: inherit; line-height: inherit; }
.market-point-index p { margin: 0; color: var(--gold) !important; font-size: 8px !important; letter-spacing: .15em !important; }
.market-point > .elementor-widget-text-editor:last-child p { margin: 0; color: #d5d9dd; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }

.mechanics-heading > .elementor-widget-text-editor { max-width: 450px; margin: 0 0 5px; color: #60636a; font-size: 13px; line-height: 1.75; }
.mechanics-heading > .elementor-widget-text-editor p { margin: 0; color: inherit; font: inherit; line-height: inherit; }
.mechanic-flow > .mechanic-card { position: relative; min-height: 330px; padding: 30px; border: 1px solid rgba(16,18,23,.17); background: rgba(255,255,255,.22); display: flex; flex-direction: column; transition: transform .3s ease, background .3s ease; }
.mechanic-flow > .mechanic-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.47); }
.flow-number p { margin: 0; color: #8e7443; font-size: 8px; letter-spacing: .16em; }
.mechanic-card > .flow-symbol { flex: 0 0 72px; margin: 38px 0 auto; }
.flow-symbol > .elementor-widget-container { width: 72px; height: 72px; border: 1px solid rgba(16,18,23,.25); border-radius: 50%; display: grid; place-items: center; }
.flow-symbol p { margin: 0; font-family: Georgia, serif; font-size: 18px; color: #775e2f; }
.mechanic-card h3 { margin-top: 34px; font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.mechanic-card > .elementor-widget-text-editor:last-child p { min-height: 54px; margin: 14px 0 0; color: #6a6d72; font-size: 11px; line-height: 1.65; }
.confidential-note::before { content: "i"; width: 20px; height: 20px; flex: 0 0 20px; display: grid; place-items: center; border: 1px solid #a7a295; border-radius: 50%; font-family: Georgia, serif; color: #7c6a46; }
.confidential-note p { margin: 0; color: inherit; font: inherit; letter-spacing: inherit; }

.tech-copy > .elementor-widget-text-editor:not(.section-kicker):not(.tech-tags) p { max-width: 580px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.tech-copy > .lead-paragraph p { color: #e0e0de; font-size: clamp(20px, 2vw, 30px); line-height: 1.42; }
.architecture > .elementor-widget-html { width: 100%; }
.architecture > .elementor-widget-html > .elementor-widget-container { position: relative; z-index: 2; }

.roadmap-list > .roadmap-item { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 0 0 80px; }
.roadmap-list > .roadmap-item:not(:last-child)::before { content: ""; position: absolute; left: 24px; top: 48px; bottom: 0; width: 1px; background: linear-gradient(var(--gold), var(--line)); opacity: .5; }
.roadmap-marker p { margin: 0; color: var(--gold); font-family: Georgia, serif; font-size: 13px; transform: rotate(-45deg); }
.roadmap-phase p { margin: 4px 0 13px; color: #66717d; font-size: 7px; letter-spacing: .18em; }
.roadmap-item h3 { font-family: Georgia, serif; font-size: clamp(27px, 3vw, 42px); font-weight: 400; }
.roadmap-item-copy > .elementor-widget-text-editor:last-child p { max-width: 520px; margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.faq-list > .faq-item { display: grid; grid-template-columns: 48px minmax(0, 1fr); column-gap: 16px; padding: 28px 0; border-top: 1px solid var(--line); }
.faq-list > .faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-index { grid-row: 1 / 3; }
.faq-index p { margin: 0; color: var(--gold); font-size: 8px; }
.faq-item h3 { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.faq-item > .elementor-widget-text-editor:last-child { grid-column: 2; }
.faq-item > .elementor-widget-text-editor:last-child p { max-width: 720px; margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.tic24-native-contact-form > .elementor-widget-container { width: 100%; }
.direct-contact p { margin: 0; color: inherit; font: inherit; line-height: 1.8; white-space: pre-line; }
.direct-contact-label p { color: #626d79; font-size: 7px; letter-spacing: .18em; }
.direct-contact-link p { margin: 0; }
.tic24-native-footer { width: 100%; }
.tic24-native-footer > .elementor-widget-container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.tic24-native-footer p { margin: 0; color: #505966; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; text-align: center; }
.tic24-native-footer a:last-child { justify-self: end; color: #737d89; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }

@supports (animation-timeline: view()) {
  .section-heading h2,
  .about-layout,
  .market-content,
  .mechanic-flow,
  .tech-copy,
  .architecture,
  .roadmap-list {
    animation: fade-up both linear;
    animation-timeline: view();
    animation-range: entry 5% cover 27%;
  }
}
@keyframes fade-up { from { opacity: .08; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .desktop-nav { display: none; }
  .tic24-native-nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr); padding-left: 7vw; padding-right: 7vw; }
  .mechanic-flow { grid-template-columns: 1fr 1fr; }
  .flow-line { display: none; }
  .technology-section { gap: 7vw; }
}

@media (max-width: 820px) {
  .site-header { height: 74px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 68px; padding-bottom: 112px; }
  .hero::before { display: none; }
  .concept-visual { width: min(100%, 560px); margin: 12px auto 0; }
  .section-heading, .about-layout, .market-content, .mechanics-heading, .technology-section, .contact-section { grid-template-columns: 1fr; }
  .section-heading { gap: 28px; }
  .about-layout, .market-content, .technology-section, .contact-section { gap: 54px; }
  .principle-strip { grid-template-columns: 1fr; }
  .principle-strip > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .market-section { min-height: auto; }
  .market-orb { width: 100vw; height: 100vw; right: -50vw; }
  .mechanics-heading > p { max-width: 620px; }
  .roadmap-heading { position: static; float: none; width: auto; margin-bottom: 72px; }
  .roadmap-list { width: 100%; }
  .site-footer { grid-template-columns: 1fr auto; row-gap: 24px; }
  .site-footer p { grid-row: 2; grid-column: 1 / -1; text-align: left; }
  .tic24-native-footer > .elementor-widget-container { grid-template-columns: 1fr auto; row-gap: 24px; }
  .tic24-native-footer p { grid-row: 2; grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 560px) {
  :root { --page-pad: 22px; }
  .site-header { padding: 0 20px; }
  .header-link { font-size: 0; gap: 0; width: 35px; height: 35px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); }
  .header-link span { font-size: 13px; }
  .hero { padding: 54px 22px 108px; background-size: 52px 52px, 52px 52px, auto, auto; }
  .hero::after { display: none; }
  h1 { font-size: clamp(58px, 19vw, 82px); }
  h2 { font-size: clamp(43px, 13.5vw, 64px); }
  .hero-lead { margin-top: 28px; }
  .button { width: 100%; }
  .tic24-page .elementor-widget-button.button .elementor-button { width: 100%; }
  .concept-visual { width: 114%; margin-left: -7%; }
  .signal { min-width: 105px; padding: 10px 12px; }
  .signal strong { font-size: 7px; }
  .scroll-cue { left: 22px; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .section-heading { margin-bottom: 52px; }
  .difference-card { padding: 32px 24px; }
  .card-index { margin-bottom: 48px; }
  .principle-strip > div { padding: 26px 18px; }
  .market-content { gap: 48px; }
  .market-statement { font-size: 22px; }
  .mechanic-flow { grid-template-columns: 1fr; }
  .mechanic-flow article, .mechanic-flow > .mechanic-card { min-height: 290px; }
  .architecture { padding: 25px 18px; }
  .architecture-stack article { padding: 21px 16px; }
  .roadmap-list article, .roadmap-list > .roadmap-item { grid-template-columns: 52px 1fr; gap: 20px; }
  .roadmap-list article:not(:last-child)::before, .roadmap-list > .roadmap-item:not(:last-child)::before { left: 19px; }
  .roadmap-marker { width: 40px; height: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .form-footer p { max-width: none; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > a:last-child { justify-self: start; }
  .site-footer p { grid-row: auto; grid-column: auto; }
  .tic24-native-footer > .elementor-widget-container { grid-template-columns: 1fr; }
  .tic24-native-footer > .elementor-widget-container > * { justify-self: start; }
  .tic24-native-footer p { grid-row: auto; grid-column: auto; text-align: left; }
}

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