/* MotionOS / Kite — Shared Design System */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400&family=Geist:wght@400;500&family=Geist+Mono:wght@400&display=swap');

:root {
  --ink: #0a0a0a; --ink-soft: #1a1a1a;
  --mute: #6b6b6b; --mute-soft: #9a9a9a;
  --line: #ececec; --line-soft: #f6f6f6;
  --paper: #ffffff; --signal: #ff5a1f;
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Geist', system-ui, -apple-system, sans-serif;
  --mono:  'Geist Mono', ui-monospace, monospace;
  --max: 1240px; --gutter: clamp(20px, 4vw, 56px);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-size: 16px; line-height: 1.55;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--ink); color: var(--paper); }

/* ── Logo mark ── */
.mark { width: 22px; height: 22px; position: relative; display: inline-block; }
.mark svg { width: 100%; height: 100%; overflow: visible; }
.mark .mark-rhombus { fill: none; stroke: var(--ink); stroke-width: 1.4; transform-origin: center; animation: markBreath 4s ease-in-out infinite; }
.mark .mark-dot { fill: var(--signal); transform-origin: 11px 11px; animation: markOrbit 7s linear infinite; }
@keyframes markBreath { 0%, 100% { transform: scale(1); } 50% { transform: scale(0.94); } }
@keyframes markOrbit { 0% { transform: rotate(0deg) translateX(11px) rotate(0deg); } 100% { transform: rotate(360deg) translateX(11px) rotate(-360deg); } }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.wordmark { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: -0.01em; font-style: italic; }
.nav-links { display: flex; gap: 32px; font-size: 14px; }
.nav-links a { color: var(--mute); position: relative; transition: color 200ms ease; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform 240ms ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { font-size: 14px; padding: 9px 16px; border: 1px solid var(--ink); border-radius: 999px; transition: background 200ms ease, color 200ms ease; }
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; cursor: pointer;
  width: 36px; height: 36px; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.6px; background: var(--ink);
  position: relative; transition: transform 240ms ease, opacity 240ms ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 1.6px; background: var(--ink);
  transition: transform 240ms ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after  { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: block; position: fixed; top: 67px; left: 0; right: 0;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 24px var(--gutter); z-index: 49;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 280ms ease, opacity 280ms ease;
}
.nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile a {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 18px; color: var(--ink);
  font-family: var(--serif); font-style: italic;
}
.nav-mobile a:last-child { border: 0; }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 761px) { .nav-mobile { display: none !important; } }

/* ── Buttons ── */
.btn-primary, .btn-quiet { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; padding: 14px 22px; border-radius: 999px; transition: all 220ms ease; }
.btn-primary { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.btn-primary:hover { background: var(--paper); color: var(--ink); }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-quiet { color: var(--ink); border: 1px solid transparent; padding: 14px 4px; }
.btn-quiet:hover { color: var(--mute); }
.arrow { display: inline-block; transition: transform 220ms ease; }

/* ── Eyebrow / signal ── */
.eyebrow, .caption { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mute); display: inline-flex; align-items: center; gap: 10px; }
.signal-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); display: inline-block; }
.signal-dot.pulse { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,90,31,0.4); } 50% { box-shadow: 0 0 0 6px rgba(255,90,31,0); } }

/* ── Shared keyframes ── */
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinRev  { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes tileDot  { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes sigBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes drift1   { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(0,-4px); } }
@keyframes drift2   { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(2px,-3px); } }
@keyframes drift3   { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-3px,-2px); } }
@keyframes drift4   { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(2px,3px); } }

/* ── Reveal animations ── */
.fade-up   { opacity: 0; transform: translateY(28px); transition: opacity 900ms cubic-bezier(0.22,1,0.36,1), transform 900ms cubic-bezier(0.22,1,0.36,1); }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-32px); transition: opacity 900ms cubic-bezier(0.22,1,0.36,1), transform 900ms cubic-bezier(0.22,1,0.36,1); }
.fade-left.in { opacity: 1; transform: translateX(0); }
.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity 700ms cubic-bezier(0.22,1,0.36,1), transform 700ms cubic-bezier(0.22,1,0.36,1); }
.stagger.in > *:nth-child(1) { transition-delay:   0ms; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(2) { transition-delay:  90ms; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(3) { transition-delay: 180ms; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(4) { transition-delay: 270ms; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(5) { transition-delay: 360ms; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(6) { transition-delay: 450ms; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(7) { transition-delay: 540ms; opacity:1; transform:translateY(0); }
.stagger.in > *:nth-child(8) { transition-delay: 630ms; opacity:1; transform:translateY(0); }

/* ── Page hero ── */
.page-hero { padding: clamp(80px,10vw,140px) var(--gutter) clamp(60px,7vw,100px); border-bottom: 1px solid var(--line); }
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(44px,6vw,88px); line-height: 1; letter-spacing: -0.025em; margin: 24px 0 32px; max-width: 18ch; }
.page-hero h1 em { font-style: italic; }
.lede { font-size: clamp(17px,1.3vw,20px); line-height: 1.5; color: var(--mute); max-width: 52ch; margin-bottom: 40px; }
.page-hero .lede { margin-bottom: 0; }
.hero-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 36px; }

/* Two-column hero layout */
.page-hero-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 7fr 5fr; gap: clamp(40px,6vw,80px); align-items: center; }
@media (max-width: 860px) { .page-hero-grid { grid-template-columns: 1fr; } }

/* ── Sections ── */
.section { padding: clamp(64px,8vw,120px) var(--gutter); border-bottom: 1px solid var(--line); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-h { font-family: var(--serif); font-weight: 300; font-size: clamp(36px,4.6vw,64px); line-height: 1.05; letter-spacing: -0.02em; margin: 20px 0 16px; max-width: 22ch; }
.section-h em { font-style: italic; }
.section-sub { color: var(--mute); font-size: 16px; line-height: 1.65; max-width: 56ch; margin-bottom: 48px; }

.two-col { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(40px,6vw,96px); align-items: start; }
.two-col-side .caption { display: block; margin-bottom: 12px; }
.two-col-side h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; letter-spacing: -0.015em; line-height: 1.1; }
.two-col-side h3 em { font-style: italic; }
.prose p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 22px; max-width: 64ch; }
.prose p:last-child { margin-bottom: 0; }
.prose p.mute { color: var(--mute); }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }

/* ── Capabilities list ── */
.capabilities { list-style: none; border-top: 1px solid var(--line); margin-top: 16px; }
.capabilities li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; }
.capabilities li em { font-style: italic; }
.capabilities .num { font-family: var(--mono); font-size: 11px; color: var(--mute-soft); letter-spacing: 0.1em; }

/* ── Stats grid ── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-top: 32px; }
.stat { padding: 36px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-num { font-family: var(--serif); font-weight: 300; font-size: 56px; letter-spacing: -0.025em; line-height: 1; margin-bottom: 12px; }
.stat-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mute); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ── Features card grid ── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 48px; }
.feat-card { background: var(--paper); padding: 32px 28px; transition: background 200ms ease; }
.feat-card:hover { background: var(--line-soft); }
.feat-icon { width: 32px; height: 32px; margin-bottom: 16px; }
.feat-name { font-family: var(--serif); font-weight: 300; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.2; }
.feat-name em { font-style: italic; }
.feat-text { font-size: 14px; line-height: 1.65; color: var(--mute); }
@media (max-width: 860px) { .feat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .feat-grid { grid-template-columns: 1fr; } }

/* ── Index / table list ── */
.index-list { border-top: 1px solid var(--line); margin-top: 16px; }
.index-list a { display: grid; grid-template-columns: 140px 1fr 2fr 80px; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: baseline; transition: background 160ms ease, padding 240ms ease; }
.index-list a:hover { background: var(--line-soft); padding-left: 16px; padding-right: 16px; }
.index-meta  { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mute-soft); }
.index-title { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; line-height: 1.2; }
.index-title em { font-style: italic; }
.index-snip  { color: var(--mute); font-size: 14px; line-height: 1.55; }
.index-arrow { text-align: right; color: var(--mute-soft); font-size: 14px; }
.index-list a:hover .index-arrow { color: var(--ink); }
@media (max-width: 860px) { .index-list a { grid-template-columns: 120px 1fr; } .index-snip, .index-arrow { display: none; } }

/* ── Integration card grid ── */
.int-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 40px; }
.int-card { background: var(--paper); padding: 24px 20px; transition: background 200ms ease; }
.int-card:hover { background: var(--line-soft); }
.int-cat  { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mute-soft); margin-bottom: 8px; }
.int-name { font-family: var(--serif); font-size: 17px; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 6px; }
.int-desc { font-size: 13px; color: var(--mute); line-height: 1.55; }

/* ── Checklist ── */
.checklist { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 13px; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.check { width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; margin-top: 1px; flex-shrink: 0; }
.check svg { display: block; }

/* ── Contact ── */
.contact-card { margin-top: 16px; padding: 40px 0 8px; border-top: 1px solid var(--line); }
.contact-email { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(36px,4.8vw,56px); letter-spacing: -0.02em; line-height: 1; color: var(--ink); display: inline-block; padding-bottom: 4px; border-bottom: 1px solid var(--line); transition: border-color 200ms ease; }
.contact-email:hover { border-bottom-color: var(--signal); }
.contact-note { margin-top: 20px; color: var(--mute); font-size: 16px; line-height: 1.55; max-width: 52ch; }
.contact-meta { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-meta-item .caption { display: block; margin-bottom: 8px; }
.contact-meta-val { font-family: var(--serif); font-size: 18px; letter-spacing: -0.01em; line-height: 1.3; color: var(--ink); }
@media (max-width: 600px) { .contact-meta { grid-template-columns: 1fr; } }

/* ── Form ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 720px; margin-top: 16px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mute); }
.form-row input, .form-row select, .form-row textarea { font-family: var(--sans); font-size: 16px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 10px 0; transition: border-color 200ms ease; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-bottom-color: var(--ink); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 24px; background: var(--ink); color: var(--paper); border: 1px solid var(--ink); padding: 14px 28px; border-radius: 999px; font-size: 15px; font-family: var(--sans); cursor: pointer; transition: all 200ms ease; display: inline-flex; align-items: center; gap: 10px; }
.form-submit:hover { background: var(--paper); color: var(--ink); }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ── CTA band ── */
.cta-band { padding: clamp(80px,10vw,160px) var(--gutter); text-align: center; }
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta-band h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(36px,4.6vw,64px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 36px; }
.cta-band h2 em { font-style: italic; }
.cta-actions { display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* ── Dark section ── */
.section-dark { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.08); }
.section-dark .eyebrow { color: rgba(255,255,255,0.40); }
.section-dark .section-h { color: rgba(255,255,255,0.92); }
.section-dark .section-sub { color: rgba(255,255,255,0.50); }
.section-dark .two-col-side h3 { color: rgba(255,255,255,0.88); }
.section-dark .capabilities li { border-color: rgba(255,255,255,0.10); color: rgba(255,255,255,0.80); }
.section-dark .capabilities { border-color: rgba(255,255,255,0.10); }
.section-dark .capabilities .num { color: rgba(255,255,255,0.28); }

/* ── Footer ── */
.footer { padding: 80px var(--gutter) 32px; border-top: 1px solid var(--line); }
.footer-top { max-width: var(--max); margin: 0 auto 64px; display: flex; align-items: baseline; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-tag { color: var(--mute); font-size: 14px; max-width: 40ch; }
.footer-cols { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; padding-bottom: 64px; border-bottom: 1px solid var(--line); }
.footer-cols a { display: block; color: var(--mute); font-size: 14px; padding: 5px 0; transition: color 160ms ease; }
.footer-cols a:hover { color: var(--ink); }
.footer-h { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink); margin-bottom: 14px; }
.footer-bottom { max-width: var(--max); margin: 28px auto 0; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mute-soft); }
.uae-stamp { display: inline-flex; align-items: center; gap: 8px; }
.uae-flag { display: inline-flex; width: 18px; height: 12px; border: 1px solid var(--line); border-radius: 1px; overflow: hidden; }
.uae-flag svg { display: block; width: 100%; height: 100%; }
@media (max-width: 600px) { .footer-cols { grid-template-columns: 1fr 1fr; } }

/* ── Inner page stage SVG ── */
.mot-stage { width: 100%; aspect-ratio: 1/1; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.mot-stage svg { width: 100%; height: 100%; display: block; }
.guide { stroke: var(--line); stroke-width: 0.5; stroke-dasharray: 2 4; }
.mot-artery { stroke: #cecece; stroke-width: 1.2; fill: none; }
.mot-artery.hot { stroke: var(--signal); stroke-opacity: 0.22; stroke-width: 3; }
.mot-veh-body { fill: var(--ink); }
.mot-veh-wind { fill: rgba(255,255,255,0.18); }
.mot-veh-dot  { fill: var(--signal); animation: tileDot 1.4s ease-in-out infinite; }
.mot-veh-dot.d2 { animation-delay: 0.5s; }
.mot-veh-dot.d3 { animation-delay: 1.1s; }
.mot-veh-dot.d4 { animation-delay: 1.7s; }
.mot-car-a { animation: motCarA  9s linear infinite; }
.mot-car-b { animation: motCarB 12s linear infinite; }
.mot-car-c { animation: motCarC 10.5s linear infinite; animation-delay: -4.2s; }
.mot-car-d { animation: motCarD 13s  linear infinite; animation-delay: -7.1s; }
@keyframes motCarA { from { transform: translate(-20px,160px); } to { transform: translate(500px,160px); } }
@keyframes motCarB { from { transform: translate(320px,-20px); } to { transform: translate(320px,500px); } }
@keyframes motCarC { from { transform: translate(500px,320px); } to { transform: translate(-20px,320px); } }
@keyframes motCarD { from { transform: translate(160px,500px); } to { transform: translate(160px,-20px); } }
.mot-hub-fill  { fill: var(--ink); }
.mot-hub-ring  { fill: none; stroke: var(--ink); stroke-width: 0.8; stroke-dasharray: 6 3; transform-origin: 240px 240px; animation: spinSlow 16s linear infinite; }
.mot-hub-arc   { fill: none; stroke: var(--signal); stroke-width: 1.5; transform-origin: 240px 240px; animation: spinSlow 5s linear infinite; }
.mot-hub-pulse { fill: none; stroke: var(--signal); stroke-width: 0.9; opacity: 0; }
.mot-hub-pulse.p1 { animation: motHubPulse 3s ease-out infinite; }
.mot-hub-pulse.p2 { animation: motHubPulse 3s ease-out infinite; animation-delay: 1.5s; }
@keyframes motHubPulse { 0% { opacity: 0.65; r: 26; } 100% { opacity: 0; r: 76; } }
.mot-conn    { stroke: var(--signal); stroke-width: 0.8; fill: none; stroke-dasharray: 3 5; opacity: 0.4; animation: motConnFlow 1.6s linear infinite; }
.mot-conn.c2 { animation-delay: -0.53s; }
.mot-conn.c3 { animation-delay: -1.07s; }
.mot-conn.c4 { animation-delay: -0.27s; }
@keyframes motConnFlow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -16; } }
.mot-tile   { fill: var(--paper); stroke: var(--ink); stroke-width: 0.8; }
.mot-lbl    { font-family: var(--mono); font-size: 7px; fill: var(--mute); letter-spacing: 0.1em; }
.mot-val    { font-family: var(--mono); font-size: 9.5px; fill: var(--ink); letter-spacing: 0.05em; }
.mot-val.sig { fill: var(--signal); }
.mot-val-lg  { font-family: var(--mono); font-size: 16px; fill: var(--signal); letter-spacing: 0.02em; }
.mot-bar-bg  { fill: var(--line); }
.mot-bar-fill { fill: var(--signal); }
.mot-ping    { fill: var(--signal); animation: tileDot 1.1s ease-in-out infinite; }
.mot-ping.p2 { animation-delay: 0.55s; }
.core-glyph  { fill: var(--paper); font-family: var(--serif); font-style: italic; animation: glyphBreath 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes glyphBreath { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }
.tile-grp.float-a { animation: drift1 9s ease-in-out infinite; }
.tile-grp.float-b { animation: drift2 11s ease-in-out infinite; }
.tile-grp.float-c { animation: drift3 8s ease-in-out infinite; }
.tile-grp.float-d { animation: drift4 12s ease-in-out infinite; }
