/* =========================================================================
   Febrees Tech — design tokens
   Palette: white base, deep ink text, blue→cyan gradient reserved for
   interactive / hero moments. Angular clip-path cuts echo the logo's
   blade / wing motif instead of rounded "SaaS card" corners.
   Type: Sora (display, geometric/tech) + Inter (body, Cyrillic-ready).
   ========================================================================= */

:root {
  --ink: #0a0e1a;
  --ink-soft: #454d61;
  --grey: #6b7386;
  --line: #e4e8f2;
  --surface: #f4f7fc;
  --white: #ffffff;
  --blue: #1b4fd8;
  --blue-deep: #0e2e86;
  --cyan: #38c6ff;

  --grad: linear-gradient(115deg, var(--blue-deep) 0%, var(--blue) 45%, var(--cyan) 100%);

  --cut: 22px;                 /* diagonal corner cut, echoes the "F" blade */
  --container: 1220px;

  --ff-display: "Sora", "Inter", sans-serif;
  --ff-body: "Inter", sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-soft); max-width: 62ch; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 10px 30px -12px rgba(27, 79, 216, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(27, 79, 216, 0.65); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* -------------------------------------------------------------------------
   Header / Nav
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(10, 14, 26, 0.3);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; }
.brand img { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 22px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch button {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--ink);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.lang-switch button:hover { border-color: var(--blue); }
.lang-switch svg { width: 12px; height: 12px; transition: transform 0.25s var(--ease); }
.lang-switch.is-open svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px -18px rgba(10, 14, 26, 0.25);
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.lang-switch.is-open .lang-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lang-menu form button {
  all: unset;
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--ink-soft);
  box-sizing: border-box;
}
.lang-menu form button:hover { background: var(--surface); color: var(--ink); }
.lang-menu form.is-active button { color: var(--blue); font-weight: 600; }

.burger { display: none; }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 168px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-deep);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 14px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  margin-bottom: 26px;
}
.eyebrow-tag span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); }

.hero h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  color: var(--ink);
  max-width: 12ch;
}
.hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { font-size: 1.14rem; max-width: 46ch; margin-top: 22px; }
.hero-cta { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

.hero-stage {
  position: relative;
  height: 480px;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--grey);
}
.hero-scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--grey), transparent); animation: scrollcue 2.2s ease-in-out infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 50.01% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* -------------------------------------------------------------------------
   Trust bar / Stats
   ------------------------------------------------------------------------- */
.stats-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-value { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 0.88rem; color: var(--grey); margin-top: 4px; }

/* -------------------------------------------------------------------------
   Section scaffolding
   ------------------------------------------------------------------------- */
.section { padding: 118px 0; }
.section-alt { background: var(--surface); }
.section-head { max-width: 640px; margin-bottom: 64px; }
.section-kicker { font-family: var(--ff-display); font-weight: 600; font-size: 0.85rem; color: var(--blue); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }

/* Services grid — angular cards */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.service-card {
  background: var(--white);
  padding: 40px 34px;
  position: relative;
  transition: background 0.3s var(--ease);
}
.service-card:hover { background: var(--surface); }
.service-icon {
  width: 46px; height: 46px;
  margin-bottom: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.service-card:hover .service-icon { background: var(--grad); }
.service-icon svg { width: 22px; height: 22px; stroke: var(--blue); transition: stroke 0.3s; }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; margin: 0; }

/* Process — numbered, genuinely sequential */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-number { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700; color: var(--line); }
.process-item.in-view .process-number { color: transparent; -webkit-background-clip: text; background-clip: text; background: var(--grad); transition: color 0.5s; }
.process-body h3 { font-size: 1.24rem; margin-bottom: 8px; }
.process-body p { margin: 0; }

/* Projects grid */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project-card {
  background: var(--white);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, var(--cut) 100%, 0 calc(100% - var(--cut)));
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -26px rgba(10, 14, 26, 0.32); }
.project-media { aspect-ratio: 16/10; background: var(--grad); position: relative; overflow: hidden; }
.project-media img { width: 100%; height: 100%; object-fit: cover; }
.project-status {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--ff-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
  background: rgba(10, 14, 26, 0.55); color: var(--white);
  padding: 5px 10px;
  backdrop-filter: blur(6px);
}
.project-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.project-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.project-body p { font-size: 0.93rem; flex: 1; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.project-tags span { font-size: 0.76rem; color: var(--grey); border: 1px solid var(--line); padding: 3px 9px; }
.project-link { margin-top: 18px; font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem; color: var(--blue); }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { border: 1px solid var(--line); background: var(--white); transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -26px rgba(10, 14, 26, 0.28); }
.blog-media { aspect-ratio: 16/10; background: var(--surface); overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px 24px 28px; }
.blog-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--grey); margin-bottom: 12px; font-family: var(--ff-display); font-weight: 600; }
.blog-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-body p { font-size: 0.92rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1;
  background: var(--surface);
  margin-bottom: 16px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.02rem; margin-bottom: 2px; }
.team-card .role { font-size: 0.85rem; color: var(--grey); }

/* CTA band */
.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: -30% -10% auto auto;
  width: 480px; height: 480px;
  background: var(--grad);
  filter: blur(140px);
  opacity: 0.5;
}
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.2vw, 2.4rem); max-width: 16ch; margin: 0; }
.cta-band p { color: rgba(255,255,255,0.7); }

/* Footer */
.site-footer { background: var(--white); border-top: 1px solid var(--line); padding: 70px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--ff-display); font-size: 0.85rem; color: var(--grey); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--ink-soft); }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); font-size: 0.84rem; color: var(--grey); flex-wrap: wrap; gap: 12px; }
.social-row { display: flex; gap: 14px; }
.social-row a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.social-row a:hover { border-color: var(--blue); }
.social-row svg { width: 16px; height: 16px; }

/* -------------------------------------------------------------------------
   Reveal-on-scroll (single orchestrated pattern, not per-card noise)
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* -------------------------------------------------------------------------
   Page hero (inner pages: about, blog, projects)
   ------------------------------------------------------------------------- */
.page-hero { padding: 168px 0 70px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.page-hero p { font-size: 1.05rem; max-width: 56ch; margin-top: 16px; }

/* About page */
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); margin-top: 40px; }
.about-values .value-card { background: var(--white); padding: 34px; }
.about-values .value-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.about-values .value-card p { margin: 0; font-size: 0.94rem; }

/* Blog detail */
.post-header { padding: 168px 0 50px; border-bottom: 1px solid var(--line); }
.post-header h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); max-width: 22ch; }
.post-cover { margin: 0 0 50px; aspect-ratio: 21/9; background: var(--surface); overflow: hidden; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-content { max-width: 74ch; margin: 0 auto; font-size: 1.05rem; }
.post-content p { max-width: none; color: var(--ink); }

/* Filters (blog list categories) */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 50px; }
.filter-row a { font-family: var(--ff-display); font-size: 0.86rem; font-weight: 600; padding: 9px 16px; border: 1px solid var(--line); color: var(--ink-soft); }
.filter-row a.is-active, .filter-row a:hover { border-color: var(--blue); color: var(--blue); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 54px; }
.pagination a, .pagination span { padding: 9px 15px; border: 1px solid var(--line); font-family: var(--ff-display); font-size: 0.88rem; }
.pagination a:hover { border-color: var(--blue); color: var(--blue); }
.pagination .is-current { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form label { display: block; font-family: var(--ff-display); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.contact-form .field { margin-bottom: 22px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 0.96rem;
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.contact-info-item { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-info-item:last-child { border-bottom: 1px solid var(--line); }
.contact-info-item .label { font-family: var(--ff-display); font-size: 0.8rem; color: var(--grey); }
.contact-info-item .value { font-size: 1rem; margin-top: 2px; }
.alert { padding: 14px 18px; margin-bottom: 22px; font-size: 0.92rem; border-left: 3px solid var(--blue); background: var(--surface); }
.alert-error { border-color: #d84343; }

/* Empty state */
.empty-state { padding: 80px 0; text-align: center; color: var(--grey); }

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .services-grid, .projects-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { height: 320px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; height: calc(100vh - 76px); height: calc(100dvh - 76px); overflow-y: auto; background: var(--white); flex-direction: column; justify-content: flex-start; padding: 40px 28px; gap: 26px; transform: translateX(100%); transition: transform 0.35s var(--ease); }
  .nav-links.is-open { transform: translateX(0); }
  .burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
  .burger span { width: 22px; height: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
  .burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .services-grid, .projects-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 56px 1fr; }
  .section { padding: 80px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* Landing page / 2026 redesign */
.landing-home .site-header { background: rgba(5, 11, 25, .75); border-bottom-color: rgba(167, 205, 255, .12); }
.landing-home .site-header .brand, .landing-home .site-header .nav-links a { color: #eaf2ff; }
.landing-home .site-header .brand span span { color: #9db2d1 !important; }
.landing-home .site-header .lang-toggle { background: rgba(129, 187, 255, .1); color: #eaf2ff; border-color: rgba(167, 205, 255, .2); }
.landing-home .site-header .nav-right > .btn-primary { background: #a3eaff; color: #061529; }
.landing-home .site-header.is-scrolled { background: rgba(255, 255, 255, .94); border-bottom-color: var(--line); }
.landing-home .site-header.is-scrolled .brand, .landing-home .site-header.is-scrolled .nav-links a { color: var(--ink); }
.landing-home .site-header.is-scrolled .brand span span { color: var(--grey) !important; }
.landing-home .site-header.is-scrolled .lang-toggle { background: var(--surface); color: var(--ink); border-color: var(--line); }
.landing-home .site-header.is-scrolled .nav-right > .btn-primary { background: var(--grad); color: #fff; }
.landing-hero {
  min-height: min(900px, 100svh);
  padding: 150px 0 34px;
  color: #f5f8ff;
  background: radial-gradient(circle at 76% 43%, #163572 0, #0c1b3b 26%, transparent 55%), #050b19;
  isolation: isolate;
}
.landing-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(125, 174, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(125, 174, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
  pointer-events: none;
}
.landing-hero .hero-grid { position: relative; z-index: 2; grid-template-columns: 1.04fr .96fr; gap: 0; min-height: 620px; }
.landing-hero .hero-copy { position: relative; z-index: 2; padding: 18px 0 60px; }
.landing-hero .eyebrow-tag { color: #a8dfff; background: rgba(56, 198, 255, .08); border-color: rgba(109, 210, 255, .28); clip-path: none; border-radius: 100px; letter-spacing: .13em; text-transform: uppercase; }
.landing-hero .eyebrow-tag .dot { box-shadow: 0 0 16px #38c6ff; }
.landing-hero h1 { max-width: 11ch; margin: 20px 0 28px; color: #fff; font-size: clamp(3.6rem, 6vw, 6.8rem); line-height: .98; letter-spacing: -.075em; font-weight: 700; }
.landing-hero h1 .accent { background: linear-gradient(115deg, #77e7ff, #69a5ff 52%, #b5a1ff); background-clip: text; -webkit-background-clip: text; }
.landing-hero p.lead { max-width: 48ch; color: #a9b9d3; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.8; }
.landing-hero .hero-cta { margin-top: 38px; }
.landing-hero .btn { clip-path: none; border-radius: 4px; min-height: 55px; gap: 24px; }
.landing-hero .btn-primary { background: #a3eaff; color: #061529; box-shadow: 0 14px 48px rgba(56, 198, 255, .2); }
.landing-hero .btn-primary:hover { background: #fff; }
.landing-hero .btn-ghost { color: #eaf2ff; border-color: rgba(220, 237, 255, .24); }
.landing-hero .btn-ghost:hover { border-color: #a3eaff; color: #a3eaff; }
.hero-footnote { display: flex; align-items: center; gap: 14px; margin-top: 64px; color: #6680a7; font: 600 .72rem var(--ff-display); letter-spacing: .16em; text-transform: uppercase; }
.hero-footnote-mark { display: block; width: 30px; height: 1px; background: #4eaadc; }
.landing-hero .hero-stage { height: 610px; width: 100%; background: radial-gradient(circle at 50% 50%, rgba(44, 112, 224, .18), transparent 62%); }
.stage-grid { position: absolute; inset: 10% 0; border: 1px solid rgba(132, 184, 255, .12); border-radius: 50%; transform: rotate(-26deg) scale(.92); }
.stage-grid::before, .stage-grid::after { content: ""; position: absolute; inset: 11%; border: 1px solid rgba(132, 184, 255, .1); border-radius: 50%; }
.stage-grid::after { inset: 24%; }
.stage-glow { position: absolute; left: 12%; right: 12%; top: 17%; bottom: 17%; background: #267bff; filter: blur(120px); opacity: .17; }
.stage-label { position: absolute; z-index: 2; font: 600 .65rem var(--ff-display); color: #6f8db8; letter-spacing: .17em; }
.stage-label-top { top: 8%; right: 7%; }.stage-label-bottom { bottom: 8%; left: 8%; }
.hero-orbit { position: absolute; width: 390px; height: 390px; border-radius: 50%; background: #1b4fd8; filter: blur(160px); opacity: .12; pointer-events: none; }
.hero-orbit-one { left: -180px; top: 120px; }.hero-orbit-two { right: -180px; bottom: -200px; }
.hero-bottom { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(167, 205, 255, .14); color: #7891b4; font: 600 .72rem var(--ff-display); letter-spacing: .14em; text-transform: uppercase; }
.hero-bottom a { color: #b1dff3; transition: color .2s; }.hero-bottom a:hover { color: #fff; }
.landing-section { padding: 130px 0; }
.landing-section .section-head { max-width: 760px; margin-bottom: 54px; }
.landing-section .section-kicker { color: #276ce2; letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; }
.landing-section .section-head h2 { font-size: clamp(2.4rem, 4vw, 4.3rem); line-height: 1.08; letter-spacing: -.055em; }
.landing-section .services-grid { gap: 16px; background: none; border: none; }
.landing-section .service-card { min-height: 300px; padding: 34px; border: 1px solid #dce5f3; background: #f8faff; overflow: hidden; }
.landing-section .service-card::after { content: "↗"; position: absolute; right: 28px; top: 25px; color: #8aa2c1; font-size: 1.25rem; }
.landing-section .service-card:hover { background: #ecf5ff; transform: translateY(-4px); transition: transform .3s, background .3s; }
.landing-section .service-icon { background: #e7f1ff; clip-path: none; border-radius: 14px; }
.landing-section .service-card h3 { font-size: 1.38rem; letter-spacing: -.03em; }
.landing-section .service-card p { max-width: 28ch; line-height: 1.65; }
.landing-process { background: #071426; color: #edf5ff; }
.landing-process .section-kicker { color: #75d9ff; }
.landing-process .process-item { border-color: rgba(168, 208, 255, .17); grid-template-columns: 120px 1fr; padding: 30px 0; }
.landing-process .process-number { color: #37658e; font-size: 3.2rem; }
.landing-process .process-item.in-view .process-number { background: linear-gradient(130deg, #7cdeff, #588bff); background-clip: text; -webkit-background-clip: text; }
.landing-process .process-body h3 { color: #fff; font-size: 1.5rem; }.landing-process .process-body p { color: #a2b6d2; }
.landing-work .projects-grid, .landing-journal .blog-grid { gap: 18px; }
.landing-work .project-card { clip-path: none; border-radius: 6px; border-color: #dce5f3; }
.landing-work .project-media { background: radial-gradient(circle at 35% 30%, #487ddd, #0e2046 75%); }
.landing-work .project-body h3, .landing-journal .blog-body h3 { font-size: 1.35rem; letter-spacing: -.03em; }
.landing-journal { background: #edf3fb; }.landing-journal .blog-card { border-radius: 6px; overflow: hidden; }
.aurelius-feature { padding: 110px 0; background: #dceaff; overflow: hidden; }
.aurelius-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.aurelius-art { position: relative; min-height: 480px; background: radial-gradient(circle at 50% 43%, #143b80, #081a3e 65%, #07142b); border-radius: 8px; overflow: hidden; isolation: isolate; }
.aurelius-art::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(152, 216, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(152, 216, 255, .06) 1px, transparent 1px); background-size: 40px 40px; }
.aurelius-art-ring { position: absolute; left: 50%; top: 48%; width: 295px; height: 295px; border: 3px solid rgba(117, 216, 255, .65); border-radius: 50%; box-shadow: 0 0 28px rgba(61, 182, 255, .44), inset 0 0 28px rgba(61, 182, 255, .2); }
.aurelius-art-ring-one { transform: translate(-50%, -50%) rotateX(70deg) rotate(-25deg); }
.aurelius-art-ring-two { transform: translate(-50%, -50%) rotateY(70deg) rotate(35deg); border-color: rgba(111, 132, 255, .7); }
.aurelius-art-core { position: absolute; left: 50%; top: 48%; display: grid; place-items: center; width: 162px; height: 162px; transform: translate(-50%, -50%) rotate(-12deg); background: linear-gradient(145deg, #92e6ff, #3d72e9 45%, #102d75); color: #e7faff; font: 700 7rem var(--ff-display); line-height: 1; border-radius: 32px; box-shadow: 28px 32px 55px rgba(0, 0, 0, .45), inset 0 2px 3px rgba(255, 255, 255, .58); text-shadow: 0 8px 18px rgba(0, 25, 77, .35); }
.aurelius-art.has-aurelius-logo { display: grid; place-items: center; }
.aurelius-logo { position: relative; z-index: 1; width: min(72%, 360px); max-height: 300px; object-fit: contain; filter: drop-shadow(0 20px 45px rgba(17, 118, 255, .28)); }
.aurelius-art-caption { position: absolute; left: 28px; bottom: 28px; color: #a3c3e3; font: 600 .65rem var(--ff-display); letter-spacing: .18em; }
.aurelius-copy .section-kicker { color: #276ce2; text-transform: uppercase; letter-spacing: .17em; font-size: .72rem; }
.aurelius-copy h2 { font-size: clamp(3.5rem, 6vw, 7rem); letter-spacing: -.08em; line-height: 1; margin: 18px 0 26px; }
.aurelius-title-dot { color: #3973ec; }
.aurelius-copy p { color: #48617f; font-size: 1.12rem; line-height: 1.8; max-width: 45ch; }
.aurelius-link { display: inline-flex; align-items: center; gap: 28px; margin-top: 20px; padding-bottom: 10px; border-bottom: 1px solid #345a93; color: #102e62; font: 600 .9rem var(--ff-display); }
.aurelius-link:hover { color: #276ce2; }
.landing-cta { background: radial-gradient(circle at 75% 50%, #164579, #08172e 55%, #061024); padding: 110px 0; }
.landing-cta h2 { max-width: 18ch; font-size: clamp(2.6rem, 4.5vw, 5rem); letter-spacing: -.06em; }
.landing-cta .btn-primary { background: #a3eaff; color: #08172e; clip-path: none; border-radius: 4px; }
@media (max-width: 1080px) {
  .landing-hero h1 { font-size: clamp(3.2rem, 6vw, 5.3rem); }
}
@media (max-width: 860px) {
  .aurelius-grid { grid-template-columns: 1fr; gap: 44px; }
  .aurelius-art { min-height: 380px; }
  .landing-hero { min-height: auto; padding-top: 115px; }
  .landing-hero .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .landing-hero .hero-stage { order: 0; height: 430px; margin-top: -20px; }
  .landing-hero .hero-copy { padding-bottom: 0; }
  .landing-hero h1 { max-width: 13ch; }
  .landing-hero .hero-footnote { margin-top: 42px; }
}
@media (max-width: 720px) {
  .aurelius-feature { padding: 80px 0; }
  .aurelius-art { min-height: 310px; }
  .aurelius-art-ring { width: 215px; height: 215px; }
  .aurelius-art-core { width: 120px; height: 120px; font-size: 5rem; border-radius: 25px; }
  .landing-home .site-header .burger span { background: #eaf2ff; }
  .landing-home .site-header.is-scrolled .burger span { background: var(--ink); }
  .landing-home .site-header .nav-links { background: #071426; }
  .landing-home .site-header.is-scrolled .nav-links { background: #fff; }
  .landing-hero { padding-top: 118px; }
  .landing-hero h1 { font-size: clamp(3.1rem, 11vw, 4.8rem); }
  .landing-hero .hero-stage { height: 330px; margin-top: 5px; }
  .landing-hero .hero-cta { gap: 10px; }
  .landing-hero .hero-cta .btn { width: 100%; justify-content: space-between; }
  .landing-section { padding: 85px 0; }
  .landing-section .services-grid { gap: 12px; }
  .landing-section .service-card { min-height: 235px; }
  .landing-process .process-item { grid-template-columns: 68px 1fr; gap: 12px; }
  .landing-process .process-number { font-size: 2rem; }
  .hero-bottom { padding-top: 20px; }
  .stage-label { font-size: .55rem; }
}

/* Brand alignment: black chrome, silver type, electric blue and cyan wings */
:root {
  --ink: #f1f5ff;
  --ink-soft: #b3bfd3;
  --grey: #8190aa;
  --line: #263247;
  --surface: #121a29;
  --white: #090d15;
  --blue: #2677ff;
  --blue-deep: #1846c9;
  --cyan: #34d8ff;
  --grad: linear-gradient(110deg, #1846c9 0%, #2677ff 48%, #34d8ff 100%);
}
body { background: #090d15; color: #f1f5ff; }
.brand { gap: 11px; color: #f4f7ff; }
.brand-mark { display: block; width: 37px; height: 37px; flex: 0 0 37px; filter: drop-shadow(0 2px 6px rgba(27, 124, 255, .35)); }
.brand-wordmark { display: flex; flex-direction: column; color: #f4f7ff; font-size: 1.08rem; line-height: 1; letter-spacing: -.04em; }
.brand-wordmark small { margin-top: 4px; color: #91a5c4; font-size: .38rem; font-weight: 500; letter-spacing: .54em; text-align: center; }
.site-header, .site-header.is-scrolled, .landing-home .site-header.is-scrolled { background: rgba(8, 12, 20, .9); border-bottom-color: rgba(166, 196, 255, .13); box-shadow: 0 8px 35px rgba(0, 0, 0, .18); }
.site-header .nav-links a, .landing-home .site-header.is-scrolled .nav-links a { color: #aab8cf; }
.site-header .nav-links a:hover, .site-header .nav-links a.is-active { color: #fff; }
.site-header .nav-links a::after { background: var(--grad); }
.site-header .lang-toggle, .landing-home .site-header.is-scrolled .lang-toggle { background: #151e2e; color: #e6efff; border-color: #2b3850; }
.lang-menu { background: #121b2b; border-color: #2b3850; }
.lang-menu form button { color: #b9c7dd; }
.lang-menu form button:hover { background: #1e2a40; color: #fff; }
.site-header .nav-right > .btn-primary, .landing-home .site-header.is-scrolled .nav-right > .btn-primary { background: linear-gradient(120deg, #b2eaff, #68c8ff); color: #081321; box-shadow: 0 8px 24px rgba(56, 198, 255, .17); }
.landing-home .site-header.is-scrolled .brand, .landing-home .site-header.is-scrolled .brand span span { color: #f4f7ff !important; }
.landing-hero { background: radial-gradient(circle at 76% 43%, #102f72 0, #0b1830 25%, transparent 55%), #06080d; }
.landing-hero h1 .accent { background: linear-gradient(115deg, #f6faff 0%, #a8c4f3 28%, #3484ff 61%, #44ddf9); background-clip: text; -webkit-background-clip: text; }
.landing-hero .btn-primary, .landing-cta .btn-primary { background: linear-gradient(120deg, #d2efff, #65ccff); color: #071423; }
.landing-section, .section { background: #090d15; color: #f1f5ff; }
.section-alt, .landing-journal { background: #101725; }
.landing-section .section-head h2, .section-head h2, .page-hero h1, .post-header h1 { color: #f5f8ff; }
.landing-section .section-kicker, .section-kicker { color: #59cfff; }
.stats-bar { background: #0c1321; border-color: #24334c; }
.stat-value { background: linear-gradient(110deg, #e7f5ff, #72bdff); background-clip: text; -webkit-background-clip: text; }
.landing-section .service-card, .service-card { background: #121b2b; border-color: #28374e; }
.landing-section .service-card:hover, .service-card:hover { background: #1a2940; }
.landing-section .service-icon, .service-icon { background: #203753; }
.service-card h3, .project-body h3, .blog-body h3, .process-body h3 { color: #f3f7ff; }
.service-card p, .project-body p, .blog-body p, .process-body p { color: #aab9d1; }
.landing-section .services-grid { background: none; border: none; }
.project-card, .blog-card, .landing-work .project-card, .landing-journal .blog-card { background: #121b2b; border-color: #28374e; }
.project-card:hover, .blog-card:hover { box-shadow: 0 22px 48px rgba(0, 0, 0, .35); }
.project-media, .blog-media { background: linear-gradient(140deg, #153c80, #0a172d); }
.project-tags span { border-color: #34445e; color: #a8b9d2; }
.page-hero, .post-header { border-color: #263247; }
.about-values { background: #253047; border-color: #253047; }
.about-values .value-card { background: #121b2b; }
.post-cover, .team-photo { background: #172339; }
.post-content p { color: #c5d0e3; }
.filter-row a, .pagination a, .pagination span { border-color: #34445e; color: #c0cce0; }
.contact-form input, .contact-form textarea { background: #121b2b; border-color: #34445e; color: #fff; }
.contact-form input:focus, .contact-form textarea:focus { background: #17243a; }
.alert { background: #14243a; }
.aurelius-feature { background: #101725; }
.aurelius-copy h2 { color: #f4f7ff; }
.aurelius-copy p { color: #aab9d1; }
.aurelius-link { color: #9ce3ff; border-color: #437ba7; }
.landing-cta, .cta-band { background: radial-gradient(circle at 80% 50%, #12336c, #060b15 60%); }
.site-footer { background: #070b12; border-color: #253047; }
.footer-col a { color: #aebdd3; }
.footer-bottom { border-color: #253047; }
.social-row a { border-color: #34445e; }
@media (max-width: 720px) {
  .site-header .burger span, .landing-home .site-header.is-scrolled .burger span { background: #eef6ff; }
  .site-header .nav-links, .landing-home .site-header.is-scrolled .nav-links { background: #0b121f; }
}

/* Calm studio finish */
:root {
  --ink: #edf2f7;
  --ink-soft: #a8b7c8;
  --grey: #8395aa;
  --line: #263342;
  --surface: #141e2a;
  --white: #0d141d;
  --blue: #5b9bea;
  --blue-deep: #396ec2;
  --cyan: #80cae7;
  --grad: linear-gradient(120deg, #396ec2, #5b9bea 58%, #80cae7);
  --cut: 0px;
}
body { background: #0b1119; color: var(--ink); }
.brand-logo, .brand img.brand-logo { width: 176px; height: 64px; max-width: none; object-fit: contain; display: block; }
.footer-brand .brand-logo { width: 220px; height: 96px; }
.site-header, .site-header.is-scrolled, .landing-home .site-header, .landing-home .site-header.is-scrolled { background: rgba(11, 17, 25, .83); backdrop-filter: blur(22px) saturate(120%); border-bottom-color: rgba(170, 200, 230, .12); }
.nav-links a, .site-header .nav-links a { font-weight: 500; color: #aebdcc; }
.nav-links a:hover, .site-header .nav-links a:hover { color: #edf6ff; }
.btn, .landing-hero .btn, .landing-cta .btn-primary { border-radius: 10px; clip-path: none; transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.btn-primary, .site-header .nav-right > .btn-primary, .landing-home .site-header.is-scrolled .nav-right > .btn-primary { background: linear-gradient(120deg, #b7dff3, #7bbbe8); color: #0c1927; box-shadow: 0 10px 30px rgba(73, 143, 215, .16); }
.btn-primary:hover { background: linear-gradient(120deg, #dbf1fb, #9bd2f0); box-shadow: 0 14px 38px rgba(73, 143, 215, .24); }
.btn-ghost { border-color: #3a4c61; }
.landing-hero { background: radial-gradient(ellipse at 74% 45%, rgba(40, 83, 137, .35), transparent 47%), linear-gradient(140deg, #0d141e, #0a1018 70%); }
.landing-hero::before { opacity: .3; }
.landing-hero h1 { letter-spacing: -.065em; }
.landing-hero h1 .accent { background: linear-gradient(115deg, #f1f5f9, #9db8d9 42%, #70b8df); background-clip: text; -webkit-background-clip: text; }
.landing-hero p.lead { color: #a9bacb; }
.landing-hero .eyebrow-tag { color: #a9ccdf; border-color: #395368; background: rgba(98, 150, 190, .1); }
.landing-hero .btn-primary, .landing-cta .btn-primary { background: linear-gradient(120deg, #b7dff3, #7bbbe8); }
.landing-hero .hero-stage { background: radial-gradient(circle at center, rgba(61, 108, 172, .17), transparent 60%); }
.stage-glow { opacity: .12; }
.hero-bottom { border-color: rgba(174, 205, 234, .12); }
.landing-section, .section { background: #0b1119; }
.section-alt, .landing-journal { background: #101925; }
.section-head h2, .landing-section .section-head h2 { letter-spacing: -.045em; }
.landing-section .section-kicker, .section-kicker { color: #8cc6e3; }
.stats-bar { background: #101925; }
.stat-value { background: linear-gradient(120deg, #ebf0f6, #8ab8dd); background-clip: text; -webkit-background-clip: text; }
.landing-section .service-card, .service-card, .project-card, .blog-card, .landing-work .project-card, .landing-journal .blog-card { background: #16212e; border: 1px solid #293849; border-radius: 16px; clip-path: none; overflow: hidden; }
.landing-section .service-card:hover, .service-card:hover { background: #1d2c3b; }
.landing-section .service-icon, .service-icon { background: #22374d; border-radius: 12px; }
.service-card:hover .service-icon { background: #355b79; }
.project-card:hover, .blog-card:hover { transform: translateY(-4px); }
.project-media, .blog-media { background: linear-gradient(145deg, #1d416b, #162231); }
.landing-process { background: #111c2a; }
.landing-process .process-item { border-color: #2a3b4e; }
.landing-process .process-number { color: #5c7892; }
.aurelius-feature { background: #121c28; }
.aurelius-art { background: radial-gradient(circle at center, #1d4069, #111d2f 68%); border-radius: 18px; }
.aurelius-art-ring { border-color: rgba(121, 185, 221, .5); box-shadow: 0 0 22px rgba(73, 144, 210, .16); }
.aurelius-art-core { background: linear-gradient(145deg, #acd8ed, #568ec4 55%, #24497c); }
.aurelius-title-dot { color: #82bcdf; }
.aurelius-link { color: #a5d3e9; border-color: #5b7996; }
.landing-cta, .cta-band { background: radial-gradient(circle at 77% 50%, #1b3654, #0c1420 62%); }
.site-footer { background: #0a111a; }
.lang-menu { border-radius: 12px; clip-path: none; }
.lang-switch button { clip-path: none; border-radius: 8px; }
.contact-form input, .contact-form textarea { border-radius: 9px; }
.landing-hero .hero-grid { grid-template-columns: 1.15fr .85fr; min-height: 0; }
.landing-hero h1 { font-size: clamp(3.2rem, 4.3vw, 4.4rem); max-width: none; margin: 0 0 22px; }
.landing-hero p.lead { margin-top: 12px; }
.landing-hero .hero-cta { margin-top: 28px; }
.landing-hero .hero-copy { padding-bottom: 42px; }
.landing-hero .hero-footnote { margin-top: 40px; }
.landing-hero .hero-stage { height: 520px; }
.landing-section .service-card .service-icon { color: #9cc9e4; font: 600 1.7rem var(--ff-display); }
@media (max-width: 720px) {
  .brand-logo, .brand img.brand-logo { width: 144px; height: 62px; }
  .footer-brand .brand-logo { width: 190px; height: 84px; }
}

/* Translucent brand art and location */
.landing-hero .hero-watermark { position: absolute; z-index: 0; right: -11%; top: 2%; width: min(74vw, 960px); height: auto; opacity: .48; filter: blur(1px); pointer-events: none; animation: watermark-drift 16s ease-in-out infinite alternate; }
.landing-hero .hero-grid { z-index: 2; }
.landing-hero .hero-orbit { opacity: .08; animation: ambient-drift 18s ease-in-out infinite alternate; }
.landing-hero .hero-orbit-two { animation-delay: -8s; }
.landing-home .landing-section, .landing-home .aurelius-feature, .landing-home .landing-cta { position: relative; isolation: isolate; }
.landing-home .landing-section::before, .landing-home .aurelius-feature::before, .landing-home .landing-cta::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(ellipse at 90% 3%, rgba(113, 172, 219, .045), transparent 45%); pointer-events: none; }
.landing-home .landing-section:nth-of-type(even)::before { background: radial-gradient(ellipse at 7% 7%, rgba(76, 122, 184, .06), transparent 42%); }
.landing-home .service-card, .landing-home .project-card, .landing-home .blog-card { transition: transform .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.landing-home .service-card:hover, .landing-home .project-card:hover, .landing-home .blog-card:hover { border-color: #45617b; transform: translateY(-5px); }
@keyframes watermark-drift { from { transform: translate3d(0, 0, 0) rotate(-4deg); } to { transform: translate3d(-22px, 16px, 0) rotate(1deg); } }
@keyframes ambient-drift { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(35px, -22px, 0); } }
.location-section { position: relative; padding: 108px 0; background: linear-gradient(155deg, #101b29 0%, #0b121b 70%); border-top: 1px solid #26384a; overflow: hidden; }
.location-section::before { content: ""; position: absolute; width: 420px; height: 420px; right: -140px; top: -150px; background: #2b638d; filter: blur(150px); opacity: .12; pointer-events: none; }
.location-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 76px; }
.location-kicker { color: #94c7df; font: 600 .72rem var(--ff-display); text-transform: uppercase; letter-spacing: .18em; }
.location-copy h2 { color: #f2f6fa; font-size: clamp(2.8rem, 5vw, 5.4rem); letter-spacing: -.065em; line-height: 1; margin: 20px 0 24px; }
.location-copy h2 span { color: #8cb8d3; }
.location-copy p { color: #afc1d1; font-size: 1.04rem; line-height: 1.8; margin-bottom: 24px; }
.location-link { display: inline-flex; gap: 30px; align-items: center; padding: 13px 0; color: #afdff1; border-bottom: 1px solid #5b8ba8; font: 600 .9rem var(--ff-display); transition: color .3s, border-color .3s; }
.location-link:hover { color: #fff; border-color: #fff; }
.location-map { position: relative; height: 380px; overflow: hidden; border: 1px solid #385168; border-radius: 18px; background: #192739; box-shadow: 0 35px 70px rgba(0, 0, 0, .22); }
.location-map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(.78) saturate(.5) brightness(.84); }
@media (max-width: 860px) {
  .location-grid { grid-template-columns: 1fr; gap: 42px; }
  .location-map { height: 340px; }
}
@media (max-width: 720px) {
  .landing-hero .hero-watermark { width: 130vw; right: -55%; top: 15%; opacity: .22; }
  .location-section { padding: 80px 0; }
  .location-map { height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  .landing-hero .hero-watermark, .landing-hero .hero-orbit { animation: none; }
}

/* Sculptural hero and restrained typography movement */
.landing-hero .hero-stage {
  position: relative;
  isolation: isolate;
  background: radial-gradient(ellipse at 51% 53%, rgba(65, 135, 200, .17), transparent 62%);
}
.landing-hero .hero-stage::before {
  content: "";
  position: absolute;
  inset: 12% 5%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(86, 165, 221, .17), transparent 65%);
  filter: blur(36px);
  pointer-events: none;
}
.landing-hero .hero-stage.no-webgl::after {
  content: "";
  position: absolute;
  width: min(56%, 280px);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
  border: 24px solid #a7d0e9;
  border-right-color: #387bae;
  border-bottom-color: #264e83;
  border-radius: 42% 58% 47% 53%;
  box-shadow: inset 0 0 48px #416d9f, 0 0 90px rgba(85, 170, 229, .2);
}
.landing-hero h1 {
  animation: hero-type-in 1s var(--ease) both;
}
.landing-hero h1 .accent {
  background-size: 200% 100%;
  animation: type-light 7s ease-in-out 1.1s infinite alternate;
}
.type-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(22px);
  transition: opacity .75s var(--ease), filter .75s var(--ease), transform .75s var(--ease);
}
.type-reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.landing-home .section-head h2,
.landing-home .aurelius-copy h2,
.location-copy h2,
.landing-home .cta-band h2 {
  text-shadow: 0 0 45px rgba(112, 185, 223, .1);
}
.landing-home .section-head h2:hover,
.landing-home .aurelius-copy h2:hover {
  text-shadow: 0 0 40px rgba(112, 185, 223, .27);
}
@keyframes hero-type-in {
  from { opacity: 0; filter: blur(9px); transform: translateY(24px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
@keyframes type-light {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .type-reveal { opacity: 1; filter: none; transform: none; }
}

/* Aurelius: the official mark takes the lead */
.aurelius-feature {
  padding: clamp(86px, 9vw, 140px) 0;
  background: #111923;
}
.aurelius-feature .aurelius-grid {
  display: block;
}
.aurelius-feature .aurelius-art {
  display: grid;
  place-items: center;
  min-height: clamp(260px, 35vw, 460px);
  padding: 8%;
  border: 1px solid rgba(160, 192, 220, .1);
  border-radius: 22px;
  background: radial-gradient(ellipse at 50% 62%, #171c24 0%, #080a0d 66%);
  box-shadow: 0 38px 90px rgba(0, 0, 0, .24);
}
.aurelius-feature .aurelius-art::before {
  background: none;
}
.aurelius-feature .aurelius-logo {
  position: relative;
  width: min(100%, 900px);
  height: auto;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 12px 25px rgba(180, 220, 250, .1));
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.aurelius-feature .aurelius-art:hover .aurelius-logo {
  transform: scale(1.025);
  filter: drop-shadow(0 14px 35px rgba(180, 220, 250, .2));
}
.aurelius-feature .aurelius-copy {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(35px, 7vw, 110px);
  align-items: start;
  padding: clamp(42px, 5vw, 72px) 12px 0;
}
.aurelius-feature .aurelius-copy .section-kicker {
  color: #99c2dc;
  letter-spacing: .2em;
}
.aurelius-feature .aurelius-copy h2 {
  font-size: clamp(3.3rem, 5.8vw, 6rem);
  letter-spacing: -.07em;
  margin: 12px 0 0;
}
.aurelius-feature .aurelius-copy-detail p {
  max-width: 58ch;
  margin: 0 0 26px;
  color: #b9c5d3;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.75;
}
@media (max-width: 760px) {
  .aurelius-feature .aurelius-copy { grid-template-columns: 1fr; gap: 22px; padding-left: 0; padding-right: 0; }
  .aurelius-feature .aurelius-art { min-height: 260px; border-radius: 16px; }
}
.landing-home .landing-cta h2 { color: #f4f7ff; }

/* Hero palette drawn from the metallic Febrees wordmark */
.landing-home .landing-hero {
  background:
    radial-gradient(ellipse at 74% 46%, rgba(94, 146, 177, .13), transparent 43%),
    linear-gradient(125deg, #0b0e14 0%, #101822 58%, #0b1018 100%);
}
.landing-home .landing-hero::before { opacity: .08; }
.landing-home .landing-hero .hero-stage {
  background: radial-gradient(ellipse at 50% 52%, rgba(113, 178, 202, .13), transparent 62%);
}
.landing-home .landing-hero .stage-glow { opacity: .07; }
.landing-home .landing-hero h1 .accent {
  background-image: linear-gradient(115deg, #f5f7fa, #bdcfdd 42%, #89c6dc 78%, #e9f4f8);
}
.landing-home .landing-hero .hero-bottom { border-color: rgba(200, 225, 237, .1); }

/* Final invitation */
.landing-home .landing-cta {
  padding: clamp(90px, 9vw, 145px) 0;
  overflow: hidden;
  background: linear-gradient(120deg, #0d141d 0%, #172633 100%);
  border-top: 1px solid rgba(170, 201, 219, .16);
}
.landing-home .landing-cta::before {
  z-index: 0;
  background: radial-gradient(ellipse at 90% 15%, rgba(131, 199, 220, .13), transparent 42%);
}
.landing-home .landing-cta::after {
  content: "";
  position: absolute;
  right: -11%;
  bottom: -78%;
  width: min(65vw, 800px);
  aspect-ratio: 1;
  border: 1px solid rgba(180, 220, 236, .1);
  border-radius: 50%;
  pointer-events: none;
}
.landing-home .landing-cta .cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}
.landing-home .landing-cta .cta-kicker {
  display: block;
  margin-bottom: 24px;
  color: #a6d0e0;
  font: 600 .72rem var(--ff-display);
  letter-spacing: .19em;
  text-transform: uppercase;
}
.landing-home .landing-cta h2 {
  max-width: 20ch;
  margin: 0 0 22px;
  color: #f5f8fb;
  font-size: clamp(2.7rem, 5vw, 5.7rem);
  line-height: 1.08;
  letter-spacing: -.065em;
  text-shadow: none;
}
.landing-home .landing-cta p {
  max-width: 55ch;
  margin: 0;
  color: #afc0cc;
  font-size: 1.05rem;
  line-height: 1.7;
}
.landing-home .landing-cta .cta-action {
  min-width: 205px;
  justify-content: space-between;
  padding: 20px 24px;
  white-space: nowrap;
  background: linear-gradient(120deg, #d8edf5, #a8d5e8);
  color: #10202b;
}
.landing-home .landing-cta .cta-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(104, 183, 211, .2);
}
@media (max-width: 800px) {
  .landing-home .landing-cta .cta-inner { grid-template-columns: 1fr; gap: 34px; }
  .landing-home .landing-cta .cta-action { width: fit-content; }
}

/* Social profiles are visible before their URLs are added */
.site-footer .social-row { gap: 10px; flex-wrap: wrap; }
.site-footer .social-row a,
.site-footer .social-row .social-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #34495c;
  border-radius: 11px;
  background: #14202c;
  color: #b8d3e2;
}
.site-footer .social-row a { transition: transform .3s var(--ease), border-color .3s, background .3s; }
.site-footer .social-row a:hover { transform: translateY(-3px); border-color: #84bfdc; background: #1b3448; color: #f1f9ff; }
.site-footer .social-row .social-placeholder { opacity: .8; }
.site-footer .social-row svg { width: 21px; height: 21px; }

/* Organizations and editorial pages */
.partners-strip { padding: 90px 0 105px; background: #0d151e; border-top: 1px solid #263745; }
.partners-strip-head { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 34px; }
.partners-strip-head h2 { max-width: 20ch; margin: 15px 0 0; color: #f2f7fa; font-size: clamp(2.3rem, 3.3vw, 3.8rem); letter-spacing: -.055em; }
.partners-more { display: inline-flex; align-items: center; gap: 25px; padding-bottom: 10px; border-bottom: 1px solid #648ba0; color: #b9e1ec; font: 600 .9rem var(--ff-display); white-space: nowrap; transition: color .25s, border-color .25s; }
.partners-more:hover { color: #fff; border-color: #d5ecf4; }
.partners-strip-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.organization-card { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; min-width: 0; min-height: 165px; padding: 24px; border: 1px solid #293b4b; border-radius: 13px; background: linear-gradient(145deg, #182633, #111b26); color: #e7f0f5; overflow: hidden; transition: transform .38s var(--ease), border-color .38s, background .38s; }
a.organization-card:hover { transform: translateY(-4px); border-color: #78a9bd; background: linear-gradient(145deg, #233749, #142432); }
.organization-wordmark { display: block; max-width: 100%; font: 600 clamp(.9rem, 1.08vw, 1.18rem)/1.35 var(--ff-display); letter-spacing: -.025em; overflow-wrap: anywhere; }
.organization-logo { display: block; width: 100%; max-height: 85px; object-fit: contain; object-position: left center; }
.organization-label { display: block; margin-top: auto; padding-top: 24px; color: #8ca8b9; font: 600 .65rem var(--ff-display); letter-spacing: .12em; text-transform: uppercase; }
.organization-aurelius { background: radial-gradient(ellipse at center, #202936, #0b0e14 78%); }
.organization-aurelius .organization-logo { max-height: 62px; }
.editorial-hero { padding: clamp(130px, 14vw, 215px) 0 clamp(90px, 9vw, 130px); background: radial-gradient(ellipse at 78% 32%, rgba(102, 160, 190, .18), transparent 40%), linear-gradient(125deg, #0d141c, #132332); border-bottom: 1px solid #2c4151; }
.editorial-kicker { color: #9ecad9; font: 600 .72rem var(--ff-display); letter-spacing: .2em; text-transform: uppercase; }
.editorial-hero h1 { max-width: 15ch; margin: 26px 0 30px; color: #f5f8fa; font-size: clamp(3.4rem, 7vw, 7.4rem); letter-spacing: -.075em; line-height: 1.03; }
.editorial-hero h1 span { color: #9fc5d6; }
.editorial-hero p { max-width: 62ch; color: #b4c7d4; font-size: clamp(1.06rem, 1.5vw, 1.35rem); line-height: 1.7; }
.partners-directory, .expertise-directory { padding: 100px 0 130px; background: #0d151e; }
.directory-heading h2 { max-width: 20ch; margin: 16px 0 42px; color: #f0f5f8; font-size: clamp(2.5rem, 4vw, 4.5rem); letter-spacing: -.06em; }
.partners-directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.partners-directory-grid .organization-card { min-height: 250px; padding: 38px; }
.partners-directory-grid .organization-wordmark { max-width: 27ch; font-size: clamp(1.5rem, 2.4vw, 2.6rem); letter-spacing: -.05em; }
.partners-directory-grid .organization-logo { max-height: 130px; }
.partners-directory-grid .organization-label { font-size: .7rem; }
.partner-product { padding: 100px 0; background: #14212d; border-top: 1px solid #304354; }
.partner-product-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.partner-product-art { display: grid; place-items: center; min-height: 330px; padding: 9%; border: 1px solid #344150; border-radius: 18px; background: radial-gradient(ellipse at center, #1a2028, #090b0f 70%); }
.partner-product-art img { width: 100%; height: auto; }
.partner-product-copy h2 { margin: 17px 0 22px; color: #f4f8fa; font-size: clamp(3.2rem, 5vw, 6rem); letter-spacing: -.07em; }
.partner-product-copy h2 span { color: #8ec7de; }
.partner-product-copy p { max-width: 46ch; color: #b2c3d1; font-size: 1.12rem; line-height: 1.8; }
.expertise-list { border-top: 1px solid #304253; }
.expertise-item { display: grid; grid-template-columns: 90px minmax(0, 1fr) 80px; gap: 32px; padding: 58px 0; border-bottom: 1px solid #304253; }
.expertise-index { color: #8bb7c9; font: 600 .82rem var(--ff-display); letter-spacing: .15em; }
.expertise-item h2 { max-width: 22ch; margin: 0 0 18px; color: #f1f6f9; font-size: clamp(2.4rem, 4vw, 4.8rem); letter-spacing: -.06em; }
.expertise-item p { max-width: 65ch; margin: 0; color: #aec0cd; font-size: 1.12rem; line-height: 1.8; }
.expertise-glyph { color: #89b5ca; font-size: 3rem; text-align: right; }
.expertise-next { padding: 85px 0; background: linear-gradient(125deg, #142432, #0e1822); }
.expertise-next .container { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.expertise-next h2 { margin: 16px 0 0; color: #f4f8fa; font-size: clamp(2.5rem, 4vw, 4.5rem); letter-spacing: -.06em; }
@media (max-width: 1120px) {
  .site-header .nav-links { gap: 14px; }
  .site-header .nav-links a { font-size: .82rem; }
}
@media (max-width: 960px) and (min-width: 721px) {
  .site-header .nav-links { position: absolute; top: 76px; left: 0; right: 0; height: calc(100dvh - 76px); overflow-y: auto; background: #0b121f; flex-direction: column; align-items: stretch; padding: 40px 28px; gap: 24px; transform: translateX(100%); transition: transform .35s var(--ease); }
  .site-header .nav-links.is-open { transform: translateX(0); }
  .site-header .burger { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
  .site-header .burger span { width: 22px; height: 2px; background: #eef6ff; }
  .site-header .burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header .burger.is-open span:nth-child(2) { opacity: 0; }
  .site-header .burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 900px) {
  .partners-strip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partner-product-grid { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 650px) {
  .partners-strip-head { align-items: flex-start; flex-direction: column; }
  .partners-strip-grid, .partners-directory-grid { grid-template-columns: 1fr 1fr; }
  .organization-card { min-height: 175px; padding: 20px; }
  .partners-directory-grid .organization-card { min-height: 205px; padding: 22px; }
  .partners-directory-grid .organization-wordmark { font-size: 1.35rem; }
  .editorial-hero h1 { font-size: clamp(3.2rem, 11vw, 5rem); }
  .expertise-item { grid-template-columns: 38px 1fr; gap: 15px; }
  .expertise-glyph { display: none; }
  .expertise-next .container { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 420px) {
  .partners-strip-grid, .partners-directory-grid { grid-template-columns: 1fr; }
}

/* Full-width assembly of the Febrees F mark */
.landing-home .landing-hero { overflow: hidden; }
.landing-home .landing-hero .hero-grid { position: relative; min-height: 600px; }
.landing-home .landing-hero .hero-copy { position: relative; z-index: 3; }
.landing-home .landing-hero .hero-mark-stage {
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  margin: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 76% 52%, rgba(96, 153, 188, .12), transparent 35%);
}
.landing-home .landing-hero .hero-mark-stage::before,
.landing-home .landing-hero .hero-mark-stage::after { display: none; }
.hero-f-mark {
  position: absolute;
  top: 50%;
  right: 6%;
  width: min(42vw, 610px);
  height: auto;
  overflow: visible;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 34px rgba(50, 105, 151, .24));
}
.hero-f-mark .mark-wing {
  will-change: clip-path, opacity;
}
.hero-f-mark .mark-wing-top { animation: forge-top 9s cubic-bezier(.42, 0, .2, 1) infinite; }
.hero-f-mark .mark-wing-bottom { animation: forge-bottom 9s cubic-bezier(.42, 0, .2, 1) infinite; }
.hero-f-mark .mark-trail {
  stroke-dasharray: 115 1200;
  stroke-dashoffset: 1300;
  opacity: 0;
  filter: drop-shadow(0 0 5px #9feeff) drop-shadow(0 0 18px #398fd9);
}
.mark-trail-top { animation: energy-trace-top 9s ease-in-out infinite; }
.mark-trail-bottom { animation: energy-trace-bottom 9s ease-in-out infinite; }
.hero-f-mark .mark-contour {
  stroke-dasharray: 85 1400;
  stroke-dashoffset: 1450;
  opacity: 0;
  filter: drop-shadow(0 0 7px #b9f4ff) drop-shadow(0 0 23px #49b8ee);
}
.mark-contour-top { animation: contour-flash 9s ease-in-out infinite; }
.mark-contour-bottom { animation: contour-flash 9s ease-in-out .35s infinite; }
.hero-ray {
  position: absolute;
  z-index: 2;
  width: 38vw;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 9px #8adcf3);
  will-change: transform, opacity;
}
.hero-ray::before {
  content: "";
  position: absolute;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e7fbff;
  box-shadow: 0 0 18px 5px rgba(143, 224, 245, .8), 0 0 48px 15px rgba(72, 175, 226, .35);
}
.hero-ray-top {
  left: calc(90% - 38vw);
  top: 42%;
  background: linear-gradient(90deg, transparent, rgba(118, 205, 232, .18) 55%, #d5f7ff);
  transform: rotate(-8deg);
  animation: ray-top 9s cubic-bezier(.42, 0, .2, 1) infinite;
}
.hero-ray-top::before { right: -6px; }
.hero-ray-bottom {
  left: 59%;
  top: 60%;
  background: linear-gradient(90deg, #d5f7ff, rgba(118, 205, 232, .18) 45%, transparent);
  transform: rotate(8deg);
  animation: ray-bottom 9s cubic-bezier(.42, 0, .2, 1) infinite;
}
.hero-ray-bottom::before { left: -6px; }
.mark-join-glow {
  position: absolute;
  top: 48%;
  right: 21%;
  width: min(35vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 198, 229, .27), transparent 67%);
  filter: blur(50px);
  animation: mark-pulse 9s ease-in-out infinite;
}
@keyframes forge-top {
  0%, 7% { opacity: 0; clip-path: inset(0 100% 0 0); filter: blur(9px); }
  30% { opacity: 1; clip-path: inset(0 0 0 0); filter: blur(0); }
  59% { opacity: 1; clip-path: inset(0 0 0 0); filter: blur(0); }
  80%, 100% { opacity: 0; clip-path: inset(0 0 0 100%); filter: blur(10px); }
}
@keyframes forge-bottom {
  0%, 7% { opacity: 0; clip-path: inset(0 0 0 100%); filter: blur(9px); }
  30% { opacity: 1; clip-path: inset(0 0 0 0); filter: blur(0); }
  59% { opacity: 1; clip-path: inset(0 0 0 0); filter: blur(0); }
  80%, 100% { opacity: 0; clip-path: inset(0 100% 0 0); filter: blur(10px); }
}
@keyframes energy-trace-top {
  0%, 6% { opacity: 0; stroke-dashoffset: 1300; }
  12% { opacity: .9; }
  31% { opacity: 1; stroke-dashoffset: 0; }
  39%, 58% { opacity: 0; stroke-dashoffset: -250; }
  70% { opacity: .65; }
  85%, 100% { opacity: 0; stroke-dashoffset: -1300; }
}
@keyframes energy-trace-bottom {
  0%, 6% { opacity: 0; stroke-dashoffset: -1300; }
  13% { opacity: .9; }
  31% { opacity: 1; stroke-dashoffset: 0; }
  39%, 58% { opacity: 0; stroke-dashoffset: 250; }
  70% { opacity: .65; }
  85%, 100% { opacity: 0; stroke-dashoffset: 1300; }
}
@keyframes contour-flash {
  0%, 17% { opacity: 0; stroke-dashoffset: 1450; }
  26% { opacity: .9; }
  39% { opacity: 0; stroke-dashoffset: 0; }
  58%, 100% { opacity: 0; stroke-dashoffset: -1400; }
}
@keyframes ray-top {
  0%, 7% { opacity: 0; transform: translateX(-115vw) rotate(-8deg); }
  17% { opacity: .45; }
  27% { opacity: .9; transform: translateX(0) rotate(-8deg); }
  34%, 59% { opacity: 0; transform: translateX(0) rotate(-8deg); }
  70% { opacity: .55; }
  83%, 100% { opacity: 0; transform: translateX(115vw) rotate(-8deg); }
}
@keyframes ray-bottom {
  0%, 7% { opacity: 0; transform: translateX(115vw) rotate(8deg); }
  17% { opacity: .45; }
  27% { opacity: .9; transform: translateX(0) rotate(8deg); }
  34%, 59% { opacity: 0; transform: translateX(0) rotate(8deg); }
  70% { opacity: .55; }
  83%, 100% { opacity: 0; transform: translateX(-115vw) rotate(8deg); }
}
@keyframes mark-pulse {
  0%, 24%, 70%, 100% { opacity: 0; transform: scale(.55); }
  31% { opacity: .95; transform: scale(1.12); }
  40%, 55% { opacity: .28; transform: scale(1); }
}
@media (max-width: 860px) {
  .landing-home .landing-hero .hero-grid { min-height: 700px; }
  .landing-home .landing-hero .hero-copy { max-width: 100%; }
  .hero-f-mark { width: min(78vw, 560px); right: 8%; top: 69%; opacity: .48; }
  .mark-join-glow { top: 66%; right: 22%; }
}
@media (max-width: 600px) {
  .landing-home .landing-hero .hero-grid { min-height: 650px; }
  .hero-f-mark { width: 85vw; right: -10%; top: 73%; opacity: .28; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-f-mark .mark-wing { animation: none; opacity: 1; clip-path: none; filter: none; }
  .hero-f-mark .mark-trail, .hero-f-mark .mark-contour { animation: none; display: none; }
  .hero-ray { animation: none; display: none; }
  .mark-join-glow { animation: none; opacity: .4; transform: none; }
}
