/* ============ VNCLOUD — Galaxy theme ============ */
:root {
  --bg: #050014;
  --bg-2: #0b0226;
  --text: #e9e6ff;
  --text-dim: #a9a3c9;
  --purple: #7b2ff7;
  --cyan: #00d4ff;
  --pink: #ff6ec7;
  --green: #3ae374;
  --glass: rgba(126, 87, 255, 0.08);
  --glass-border: rgba(160, 120, 255, 0.22);
  --radius: 18px;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---------- background layers ---------- */
#galaxy-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; display: block;
}
.nebula {
  position: fixed; border-radius: 50%;
  filter: blur(120px); opacity: 0.35;
  z-index: 0; pointer-events: none;
}
.nebula-1 { width: 55vw; height: 55vw; top: -18vw; right: -15vw; background: radial-gradient(circle, var(--purple), transparent 65%); animation: drift 22s ease-in-out infinite alternate, hueSpin 30s linear infinite; }
.nebula-2 { width: 45vw; height: 45vw; bottom: -12vw; left: -12vw; background: radial-gradient(circle, var(--cyan), transparent 65%); animation: drift 26s ease-in-out infinite alternate-reverse, hueSpin 38s linear infinite reverse; }
@keyframes drift { to { transform: translate(6vw, -4vw) scale(1.15); } }
@keyframes hueSpin {
  0% { filter: blur(120px) hue-rotate(0deg); }
  100% { filter: blur(120px) hue-rotate(360deg); }
}

main, .navbar, .footer { position: relative; z-index: 2; }

/* ---------- navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 5vw; z-index: 100;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.navbar.scrolled {
  background: rgba(7, 1, 26, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 38px; height: 38px; }
.brand-name {
  font-family: var(--font-display); font-weight: 900; font-size: 1.25rem;
  color: var(--text); letter-spacing: 2px;
}
.brand-name span {
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--text-dim); text-decoration: none; font-size: 0.95rem; font-weight: 500;
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: flex; border: 1px solid var(--glass-border); border-radius: 999px;
  overflow: hidden; background: rgba(10, 3, 30, 0.6);
}
.lang-switch button {
  border: 0; background: transparent; color: var(--text-dim);
  padding: 6px 14px; cursor: pointer; font-family: var(--font-body);
  font-weight: 600; font-size: 0.82rem; transition: all 0.25s;
}
.lang-switch button.active {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  color: #fff;
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px 5vw 60px; position: relative;
}
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 999px;
  border: 1px solid var(--glass-border); background: var(--glass);
  backdrop-filter: blur(8px); font-size: 0.88rem; color: var(--text-dim);
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.1rem, 5.4vw, 4.2rem); line-height: 1.18;
  max-width: 1000px; margin-bottom: 24px;
  background: linear-gradient(115deg, #fff, var(--cyan), var(--purple), var(--pink), var(--cyan), #fff);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 80px rgba(123, 47, 247, 0.35);
  animation: gradientFlow 8s linear infinite;
}
@keyframes gradientFlow { to { background-position: 300% 0; } }
.hero-subtitle { max-width: 680px; color: var(--text-dim); font-size: 1.08rem; margin-bottom: 38px; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-block; padding: 14px 34px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; text-decoration: none; cursor: pointer;
  border: 0; font-family: var(--font-body); transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  color: #fff; box-shadow: 0 8px 30px rgba(123, 47, 247, 0.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0, 212, 255, 0.5); }
.btn-ghost {
  border: 1px solid var(--glass-border); color: var(--text); background: var(--glass);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--cyan); }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--glass-border); border-radius: 14px;
}
.scroll-hint span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--cyan); border-radius: 2px; animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- sections ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 5vw; }
.section { padding: 110px 0; }
.section-kicker {
  font-family: var(--font-display); color: var(--cyan); letter-spacing: 3px;
  font-size: 0.8rem; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700; margin-bottom: 16px;
}
.section-subtitle { color: var(--text-dim); max-width: 620px; margin-bottom: 48px; }

/* glass card base */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- stats ---------- */
.stats-band { padding: 10px 0 30px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.stat-card {
  text-align: center; padding: 30px 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); backdrop-filter: blur(14px);
}
.stat-value {
  font-family: var(--font-display); font-size: 2.3rem; font-weight: 900;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { color: var(--text-dim); font-size: 0.92rem; margin-top: 6px; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.about-text .lead { font-size: 1.15rem; font-weight: 500; margin-bottom: 18px; }
.about-text p:not(.lead) { color: var(--text-dim); }
.about-cards { display: flex; flex-direction: column; gap: 18px; }
.about-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); backdrop-filter: blur(14px);
  transition: transform 0.3s, border-color 0.3s;
}
.about-card:hover { transform: translateX(8px); border-color: var(--cyan); }
.about-card .icon { font-size: 1.7rem; }
.about-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.about-card p { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- services ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  padding: 34px 28px; border-radius: var(--radius); position: relative; overflow: hidden;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 212, 255, 0.12), transparent 45%);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(0, 212, 255, 0.5); box-shadow: 0 20px 50px rgba(6, 0, 40, 0.6); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px; display: grid; place-items: center; font-size: 1.7rem;
  border-radius: 16px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.35), rgba(0, 212, 255, 0.25));
  border: 1px solid var(--glass-border);
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: 0.93rem; }

/* ---------- projects ---------- */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.project-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.project-card:hover { transform: translateY(-8px) scale(1.01); border-color: var(--pink); box-shadow: 0 24px 60px rgba(6, 0, 40, 0.7); }
.project-body { padding: 22px 24px 26px; }
.project-tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cyan); border: 1px solid rgba(0, 212, 255, 0.4); border-radius: 999px;
  padding: 3px 12px; margin-bottom: 12px;
}
.project-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.project-card p { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.team-card {
  text-align: center; padding: 34px 22px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); transition: transform 0.35s, border-color 0.35s;
}
.team-card:hover { transform: translateY(-8px); border-color: var(--purple); }
.team-card img {
  width: 110px; height: 110px; border-radius: 50%; margin-bottom: 18px;
  box-shadow: 0 0 0 3px rgba(123, 47, 247, 0.4), 0 0 40px rgba(0, 212, 255, 0.25);
}
.team-card h3 { font-size: 1.05rem; }
.team-role {
  font-size: 0.85rem; font-weight: 600; margin: 4px 0 10px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.team-card p { color: var(--text-dim); font-size: 0.87rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: start; }
.contact-form { padding: 34px; display: flex; flex-direction: column; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 0.88rem; color: var(--text-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input, .contact-form textarea {
  background: rgba(5, 0, 22, 0.55); border: 1px solid var(--glass-border);
  border-radius: 12px; color: var(--text); padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.95rem; resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--pink); }
.info-card { padding: 34px; }
.info-card h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 16px; color: var(--cyan); }
.info-card p { color: var(--text-dim); font-size: 0.93rem; margin-bottom: 10px; }
.info-card a { color: var(--text); text-decoration: none; }
.info-card a:hover { color: var(--cyan); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--glass-border); background: var(--glass);
  color: var(--text); text-decoration: none; font-size: 1.05rem; transition: all 0.25s;
}
.socials a:hover { border-color: var(--cyan); transform: translateY(-4px); color: var(--cyan); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--glass-border); padding: 26px 0; background: rgba(5, 0, 20, 0.6); backdrop-filter: blur(10px); }
.footer-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--text-dim); font-size: 0.88rem; }
.footer-tagline {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 600;
}

/* ============ continuous motion (Microsoft-style, always running) ============ */

/* floating planet orbs in hero */
.orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; }
.orb-1 {
  width: 130px; height: 130px; top: 18%; left: 9%;
  background: radial-gradient(circle at 32% 28%, #cfeaff, var(--cyan) 45%, #063a63 100%);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.5), inset -18px -14px 40px rgba(0, 0, 30, 0.65);
  animation: orbFloat 11s ease-in-out infinite alternate;
}
.orb-2 {
  width: 72px; height: 72px; bottom: 24%; right: 12%;
  background: radial-gradient(circle at 32% 28%, #ffd9f1, var(--pink) 45%, #5b0f4c 100%);
  box-shadow: 0 0 44px rgba(255, 110, 199, 0.5), inset -10px -8px 24px rgba(30, 0, 30, 0.65);
  animation: orbFloat 9s ease-in-out 1.2s infinite alternate-reverse;
}
.orb-3 {
  width: 44px; height: 44px; top: 26%; right: 22%;
  background: radial-gradient(circle at 32% 28%, #e6dcff, var(--purple) 45%, #2a0a5e 100%);
  box-shadow: 0 0 34px rgba(123, 47, 247, 0.55), inset -8px -6px 18px rgba(10, 0, 40, 0.6);
  animation: orbFloat 13s ease-in-out 0.6s infinite alternate;
}
.orb-ring {
  position: absolute; width: 190px; height: 190px; top: 15.5%; left: calc(9% - 30px);
  border: 1.5px solid rgba(0, 212, 255, 0.35); border-radius: 50%;
  transform: rotateX(68deg);
  animation: ringSpin 14s linear infinite;
}
.orb-ring::before {
  content: ''; position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--cyan); top: -5px; left: 50%;
  box-shadow: 0 0 12px var(--cyan);
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(14px, -22px) scale(1.05); }
  100% { transform: translate(-10px, 14px) scale(0.97); }
}
@keyframes ringSpin { to { transform: rotateX(68deg) rotate(360deg); } }

/* icons / avatars gently bob all the time */
.service-icon { animation: bob 5s ease-in-out infinite; }
.service-card:nth-child(2n) .service-icon { animation-delay: 1.1s; }
.service-card:nth-child(3n) .service-icon { animation-delay: 2.2s; }
.about-card .icon { display: inline-block; animation: bob 6s ease-in-out infinite; }
.about-card:nth-child(2) .icon { animation-delay: 1.4s; }
.about-card:nth-child(3) .icon { animation-delay: 2.8s; }
.team-card img { animation: bob 7s ease-in-out infinite; }
.team-card:nth-child(2n) img { animation-delay: 1.6s; }
.team-card:nth-child(3n) img { animation-delay: 3.1s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* stat values pulse-glow */
.stat-value { animation: statGlow 3.6s ease-in-out infinite; }
.stat-card:nth-child(2) .stat-value { animation-delay: 0.9s; }
.stat-card:nth-child(3) .stat-value { animation-delay: 1.8s; }
.stat-card:nth-child(4) .stat-value { animation-delay: 2.7s; }
@keyframes statGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(0, 212, 255, 0); }
  50% { text-shadow: 0 0 26px rgba(0, 212, 255, 0.75); }
}

/* primary button: continuous shimmer sweep + glow pulse */
.btn-primary { position: relative; overflow: hidden; animation: ctaPulse 3s ease-in-out infinite; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 40%;
  left: -60%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: shimmer 2.8s ease-in-out infinite;
}
@keyframes shimmer { 0% { left: -60%; } 55%, 100% { left: 130%; } }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(123, 47, 247, 0.45); }
  50% { box-shadow: 0 8px 44px rgba(0, 212, 255, 0.65); }
}

/* hero badge breathing border */
.hero-badge { animation: badgeBreathe 4s ease-in-out infinite; }
@keyframes badgeBreathe {
  0%, 100% { border-color: var(--glass-border); }
  50% { border-color: rgba(0, 212, 255, 0.65); box-shadow: 0 0 22px rgba(0, 212, 255, 0.25); }
}

/* ---------- tech marquee ---------- */
.marquee-band { padding: 34px 0 10px; }
.marquee-label {
  text-align: center; color: var(--text-dim); font-size: 0.8rem;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px;
  font-family: var(--font-display);
}
.marquee {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 18px; width: max-content;
  padding: 4px 0;
  animation: marqueeScroll 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-chip {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 10px 22px; border-radius: 999px; font-size: 0.92rem; font-weight: 500;
  color: var(--text-dim); background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ---------- projects carousel (auto-advancing) ---------- */
.projects-carousel { overflow: hidden; }
.carousel-track { display: flex; gap: 26px; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; }
.carousel-track .project-card { flex: 0 0 calc((100% - 52px) / 3); }
@media (max-width: 980px) { .carousel-track .project-card { flex: 0 0 calc((100% - 26px) / 2); } }
@media (max-width: 640px)  { .carousel-track .project-card { flex: 0 0 100%; } }
.carousel-dots { display: flex; gap: 10px; justify-content: center; margin-top: 28px; }
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(160, 120, 255, 0.3); transition: all 0.3s; padding: 0;
}
.carousel-dots button.active {
  width: 30px; background: linear-gradient(90deg, var(--purple), var(--cyan));
}

/* Ken Burns drift on project images (continuous) */
.project-card { position: relative; }
.project-card .img-wrap { overflow: hidden; aspect-ratio: 600/340; }
.project-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  animation: kenburns 16s ease-in-out infinite alternate;
}
.carousel-track .project-card:nth-child(2n) .img-wrap img { animation-delay: 3s; }
.carousel-track .project-card:nth-child(3n) .img-wrap img { animation-delay: 6s; }
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.14) translate(2.5%, -2.5%); }
}

/* team avatar orbiting spark */
.team-card { position: relative; }
.avatar-wrap { position: relative; width: 110px; height: 110px; margin: 0 auto 18px; }
.avatar-wrap img { width: 110px; height: 110px; margin: 0; }
.avatar-wrap::after {
  content: ''; position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
  top: 50%; left: 50%; margin: -4.5px;
  animation: orbitSpark 6s linear infinite;
}
.team-card:nth-child(2n) .avatar-wrap::after { animation-duration: 8s; background: var(--pink); box-shadow: 0 0 10px var(--pink); }
@keyframes orbitSpark {
  from { transform: rotate(0deg) translateX(64px); }
  to   { transform: rotate(360deg) translateX(64px); }
}

/* respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .carousel-track { transition: none; }
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; top: 70px; right: 5vw; flex-direction: column; gap: 4px;
    background: rgba(10, 2, 32, 0.96); border: 1px solid var(--glass-border);
    border-radius: 16px; padding: 14px 22px; display: none; min-width: 180px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 8px 0; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}
