/* ═══════════════════════════════════════════════
   FARALAI — CONVERGING INTELLIGENCE
   Global Stylesheet
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --black:      #080808;
  --off-black:  #0D0D0D;
  --dark:       #111111;
  --dark2:      #161616;
  --dark3:      #1C1C1C;
  --lime:       #CCFF00;
  --lime-dim:   rgba(204,255,0,0.08);
  --lime-mid:   rgba(204,255,0,0.35);
  --lime-glow:  rgba(204,255,0,0.15);
  --purple:     #7B6FF0;
  --purple-dim: rgba(123,111,240,0.12);
  --white:      #F4F2EC;
  --white-dim:  rgba(244,242,236,0.6);
  --muted:      #666662;
  --muted2:     #444441;
  --border:     rgba(255,255,255,0.06);
  --border2:    rgba(255,255,255,0.1);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:      72px;
  --max-w:      1200px;
  --section-pad: 120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grid texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(204,255,0,0.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.4s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: rgba(204,255,0,0.6);
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: 20px; font-weight: 600; }

p { font-size: 16px; line-height: 1.8; color: var(--white-dim); }
a { color: inherit; text-decoration: none; }

.lime { color: var(--lime); }
.muted { color: var(--muted); }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--lime);
  opacity: 0.6;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.3s ease;
}
.btn:hover::before { transform: scaleX(1); }
.btn-primary {
  border-color: var(--lime);
  color: var(--lime);
}
.btn-primary:hover { color: var(--black); }
.btn-ghost {
  border-color: var(--border2);
  color: var(--white-dim);
}
.btn-ghost:hover { color: var(--black); border-color: var(--lime); }
.btn-arrow::after { content: ' →'; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex; align-items: center;
  padding: 0 48px;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .ai { color: var(--lime); }
.nav-logo .ai-line {
  display: inline-block;
  border-bottom: 2px solid var(--lime);
  line-height: 1;
}
.nav-links {
  display: flex; gap: 36px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--lime);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex; align-items: center; gap: 24px;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex; gap: 4px;
  list-style: none;
}
.lang-switcher button {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 4px 6px;
  transition: color 0.2s;
}
.lang-switcher button:hover,
.lang-switcher button.active { color: var(--lime); }
.nav-cta {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid rgba(204,255,0,0.4);
  color: var(--lime);
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--lime);
  color: var(--black);
}
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-burger span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ── CONVERGENCE LINE SVG BG ── */
.convergence-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.convergence-bg svg {
  position: absolute;
  width: 100%; height: 100%;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-tagline::before, .hero-tagline::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime-mid));
  max-width: 60px;
}
.hero-tagline::after {
  background: linear-gradient(90deg, var(--lime-mid), transparent);
}
.hero h1 {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
  position: relative;
  display: inline-block;
}
.hero-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 48px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}
.hero-stat {
  background: var(--off-black);
  padding: 32px 24px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CONVERGENCE NODE VISUAL ── */
.hero-visual {
  position: relative;
  height: 500px;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.6s forwards;
}
.hero-visual svg {
  width: 100%; height: 100%;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--dark2);
  border: 1px solid var(--border2);
  padding: 48px;
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--purple));
}
.about-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}
.about-title {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.about-bio {
  font-size: 15px;
  line-height: 1.9;
  color: var(--white-dim);
  margin-bottom: 32px;
}
.expertise-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border2);
  color: var(--muted);
  transition: all 0.2s;
}
.tag:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 20px; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
  background: var(--border);
}
.pillar {
  background: var(--dark);
  padding: 24px;
}
.pillar-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}
.pillar h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.pillar p {
  font-size: 13px;
  color: var(--muted);
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-intro {
  max-width: 640px;
  margin-bottom: 80px;
}
.services-intro h2 { margin-bottom: 20px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--off-black);
  padding: 48px 36px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--dark2); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--lime);
  opacity: 0.5;
  margin-bottom: 28px;
  display: block;
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--lime);
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.service-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.service-list li {
  font-size: 12px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--lime);
  font-size: 11px;
}

/* ══════════════════════════════════════
   NEWS / RSS
══════════════════════════════════════ */
.news { background: var(--off-black); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}
.news-card {
  background: var(--dark);
  padding: 36px 32px;
  transition: background 0.25s;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.news-card:hover { background: var(--dark2); }
.news-card:hover .news-title { color: var(--lime); }
.news-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.news-source {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.7;
}
.news-date {
  font-size: 11px;
  color: var(--muted);
}
.news-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 12px;
  transition: color 0.2s;
  flex: 1;
}
.news-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.news-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.news-card:hover .news-link { opacity: 1; }
.news-loading {
  text-align: center;
  padding: 80px;
  color: var(--muted);
  font-size: 14px;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.contact-item:hover { border-color: var(--lime); }
.contact-item-icon {
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px;
  color: var(--white);
}
.contact-form {
  background: var(--dark2);
  border: 1px solid var(--border2);
  padding: 48px;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--purple));
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lime);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand .logo .ai { color: var(--lime); }
.footer-brand .logo .ai-line { border-bottom: 2px solid var(--lime); }
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--muted2); }
.footer-bar {
  height: 3px;
  display: flex;
  margin-bottom: 40px;
}
.footer-bar-left { flex: 1; background: var(--lime); opacity: 0.6; }
.footer-bar-right { flex: 1; background: var(--purple); opacity: 0.6; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}
@keyframes rotateNode {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── PAGE TRANSITION ── */
.page-transition {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9000;
  transform: scaleY(0);
  transform-origin: top;
}

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: var(--lime);
  z-index: 9001;
  width: 0%;
  transition: width 0.1s;
}

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0; top: var(--nav-h);
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--lime); }

/* ══════════════════════════════════════
   PAGE-SPECIFIC
══════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero p {
  font-size: 18px;
  max-width: 600px;
  color: var(--white-dim);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb span { color: var(--muted2); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 320px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .lang-switcher { display: none; }
  h1 { font-size: clamp(36px, 10vw, 64px); }
}
