@import url("https://fonts.googleapis.com/css2?family=Azeret+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700&family=Oswald:wght@600;700&family=Space+Mono:wght@400;700&display=swap");

/* USURAL homepage V2.
   Scoped to the final root homepage. */

:root {
  --font-display: "Inter", sans-serif;
  --font-body: "Azeret Mono", "Space Mono", monospace;
  --font-accent: "Oswald", sans-serif;
  --v2-black: #111111;
  --v2-white: #ffffff;
  --v2-warm: #faf8f5;
  --v2-warm-deep: #f1ede7;
  --v2-warm-glow: #fff3e7;
  --v2-muted: #6e6e6e;
  --v2-border: rgba(0, 0, 0, 0.08);
  --v2-accent: #002fa7;
  --v2-radius: 0;
  --v2-max: 1480px;
  --v2-side: clamp(1.25rem, 4vw, 4rem);
  --v2-section: clamp(5rem, 10vw, 9rem);
  --v2-font-display: var(--font-display);
  --v2-font-body: var(--font-body);
  --v2-font-label: var(--font-accent);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.usural-v2 {
  background: var(--v2-white);
  color: var(--v2-black);
  font-family: var(--v2-font-body);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.v2-page {
  overflow: hidden;
}

.v2-container {
  margin: 0 auto;
  max-width: var(--v2-max);
  padding: 0 var(--v2-side);
  width: 100%;
}

.v2-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--v2-border);
  backdrop-filter: blur(18px);
  display: flex;
  height: clamp(72px, 7vw, 92px);
  justify-content: space-between;
  padding: 0 var(--v2-side);
  position: relative;
  z-index: 50;
}

.v2-logo {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
  text-decoration: none;
}

.v2-logo img {
  display: block;
  height: clamp(36px, 3.4vw, 46px);
  object-fit: contain;
  width: auto;
}

.v2-nav-links {
  align-items: center;
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.75rem);
}

.v2-nav-links a,
.v2-mobile-panel a,
.v2-eyebrow,
.v2-section-kicker,
.v2-button,
.v2-project-meta,
.v2-service-index,
.v2-footer-label {
  font-family: var(--v2-font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.v2-nav-links a,
.v2-mobile-panel a {
  color: var(--v2-black);
  opacity: 0.78;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.v2-nav-links a:hover,
.v2-mobile-panel a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.v2-menu-button {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--v2-black);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.v2-menu-lines,
.v2-menu-lines::before,
.v2-menu-lines::after {
  background: currentColor;
  content: "";
  display: block;
  height: 1px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 24px;
}

.v2-menu-lines {
  position: relative;
}

.v2-menu-lines::before,
.v2-menu-lines::after {
  left: 0;
  position: absolute;
}

.v2-menu-lines::before {
  top: -7px;
}

.v2-menu-lines::after {
  top: 7px;
}

.v2-menu-button[aria-expanded="true"] .v2-menu-lines {
  background: transparent;
}

.v2-menu-button[aria-expanded="true"] .v2-menu-lines::before {
  transform: translateY(7px) rotate(45deg);
}

.v2-menu-button[aria-expanded="true"] .v2-menu-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

.v2-mobile-panel {
  background: var(--v2-white);
  border-bottom: 1px solid var(--v2-border);
  display: none;
  flex-direction: column;
  gap: 1rem;
  left: 0;
  padding: 1.25rem var(--v2-side) 1.75rem;
  position: fixed;
  right: 0;
  top: clamp(72px, 7vw, 92px);
  z-index: 45;
}

.v2-mobile-panel a {
  align-items: center;
  border-top: 1px solid var(--v2-border);
  display: flex;
  min-height: 54px;
}

.v2-mobile-panel.is-open {
  display: flex;
}

.v2-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 47, 167, 0.22), transparent 28vw),
    linear-gradient(135deg, var(--v2-warm) 0%, var(--v2-white) 48%, #f3eee8 100%);
  min-height: calc(100svh - clamp(72px, 7vw, 92px));
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
  position: relative;
}

.v2-hero::before {
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.11), transparent);
  content: "";
  height: 1px;
  left: var(--v2-side);
  position: absolute;
  right: var(--v2-side);
  top: clamp(1.4rem, 3vw, 3rem);
}

.v2-hero::after {
  background: var(--v2-accent);
  content: "";
  height: clamp(5rem, 12vw, 14rem);
  opacity: 0.88;
  position: absolute;
  right: clamp(1rem, 5vw, 6rem);
  top: clamp(8rem, 14vw, 14rem);
  transform: rotate(24deg);
  transform-origin: center;
  width: 1px;
}

.v2-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  position: relative;
  z-index: 1;
}

.v2-hero-content {
  padding-top: clamp(1rem, 3vw, 3.5rem);
}

.v2-eyebrow,
.v2-section-kicker {
  color: var(--v2-muted);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.v2-hero h1,
.v2-section-title,
.v2-cta h2 {
  color: var(--v2-black);
  font-family: var(--v2-font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.94;
  margin: 0;
}

.v2-hero h1 {
  font-size: clamp(4.1rem, 9.7vw, 10.6rem);
  max-width: 10.6ch;
}

.v2-hero h1 span {
  display: block;
  will-change: transform;
}

.v2-hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin: clamp(1.6rem, 3vw, 2.5rem) 0 0;
  max-width: 760px;
}

.v2-hero-services span {
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  color: var(--v2-black);
  font-size: clamp(1.05rem, 1.45vw, 1.55rem);
  line-height: 1;
  padding: 0.72rem 1rem;
}

.v2-hero-copy {
  color: var(--v2-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.55;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  max-width: 620px;
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(2rem, 4vw, 3.25rem);
}

.v2-button {
  align-items: center;
  border: 1px solid var(--v2-black);
  color: var(--v2-black);
  display: inline-flex;
  min-height: 48px;
  padding: 0 1.25rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.v2-button:hover {
  background: var(--v2-black);
  color: var(--v2-white);
}

.v2-button.is-primary {
  background: var(--v2-black);
  color: var(--v2-white);
}

.v2-button.is-primary:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
}

.v2-hero-original {
  align-items: stretch;
  background: var(--v2-black);
  color: var(--v2-white);
  display: flex;
  isolation: isolate;
  min-height: calc(100svh - clamp(72px, 7vw, 92px));
  overflow: hidden;
  padding: 0;
  position: relative;
}

.v2-hero-original::before,
.v2-hero-original::after {
  display: none;
}

.v2-hero-background,
.v2-hero-shade {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.v2-hero-background {
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: -3;
}

.v2-background-image-frame {
  background: var(--v2-black);
  height: 20vw;
  max-height: none;
  max-width: none;
  min-height: 180px;
  min-width: 180px;
  overflow: hidden;
  position: relative;
  transition: width 2s cubic-bezier(0.65, 0, 0.35, 1), height 2s cubic-bezier(0.65, 0, 0.35, 1);
  width: 20vw;
  will-change: width, height;
}

.v2-background-image-frame.is-expanded {
  height: 100%;
  width: 100%;
}

.v2-hero-background-image {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transition: opacity 150ms ease;
  width: 100%;
}

.v2-hero-background-image.is-visible {
  opacity: 1;
}

.v2-hero-shade {
  background:
    radial-gradient(circle at 76% 22%, rgba(0, 47, 167, 0.25), transparent 32vw),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.62)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  pointer-events: none;
  z-index: -2;
}

.v2-hero-original-inner {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: calc(100svh - clamp(72px, 7vw, 92px));
  padding-bottom: clamp(1.75rem, 4vw, 3.5rem);
  padding-top: clamp(2.25rem, 5vw, 4.75rem);
  position: relative;
  z-index: 2;
}

.v2-hero-original-copy {
  max-width: min(1120px, 90vw);
}

.v2-hero-eyebrow {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: clamp(0.8rem, 1.6vw, 1.35rem);
}

.v2-hero-title {
  color: var(--v2-white);
  font-family: var(--v2-font-display);
  font-size: clamp(4.5rem, 8.2vw, 9.4rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.86;
  margin: 0;
  max-width: 11.5ch;
  text-wrap: balance;
}

.v2-title-line {
  display: block;
}

.v2-hero-char {
  display: inline-block;
  filter: blur(1vw);
  opacity: 0;
  transform: translate3d(0, 0.08em, 0);
  transition: opacity 900ms ease, filter 900ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.v2-hero-char.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.v2-hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  line-height: 1.45;
  margin: clamp(1.5rem, 3vw, 2.4rem) 0 0;
  max-width: 720px;
}

.v2-hero-service-list {
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  font-family: var(--v2-font-display);
  font-size: clamp(1.15rem, 1.55vw, 1.7rem);
  font-weight: 500;
  gap: 0.22rem;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: clamp(1.25rem, 2.4vw, 2rem) 0 0;
}

.v2-hero-service-list span {
  display: block;
}

.v2-hero-actions {
  margin-top: clamp(1.3rem, 2.5vw, 2.15rem);
}

.v2-hero-actions .v2-button {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--v2-white);
  min-height: 52px;
  padding: 0 1.35rem;
}

.v2-hero-actions .v2-button.is-primary {
  background: var(--v2-white);
  border-color: var(--v2-white);
  color: var(--v2-black);
}

.v2-hero-actions .v2-button:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: var(--v2-white);
}

.v2-hero-scroll {
  align-self: end;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.v2-hero-media {
  aspect-ratio: 0.76;
  background: var(--v2-black);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 92%);
  margin: 0;
  overflow: hidden;
  position: relative;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  z-index: 2;
}

.v2-hero-media::after {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.24));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.v2-hero-visual {
  min-height: clamp(600px, 72vw, 760px);
  position: relative;
}

.v2-hero-mark {
  bottom: 5%;
  color: rgba(17, 17, 17, 0.055);
  font-family: var(--v2-font-display);
  font-size: clamp(4.4rem, 10.5vw, 12rem);
  font-weight: 600;
  left: -18%;
  letter-spacing: -0.05em;
  line-height: 0.88;
  pointer-events: none;
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  white-space: nowrap;
  z-index: 1;
}

.v2-hero-float {
  background: var(--v2-warm-deep);
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.12);
  margin: 0;
  overflow: hidden;
  position: absolute;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  z-index: 3;
}

.v2-hero-float img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.v2-hero-float.is-one {
  aspect-ratio: 1.12;
  left: -9%;
  top: 10%;
  width: min(46%, 270px);
}

.v2-hero-float.is-two {
  aspect-ratio: 0.82;
  bottom: 8%;
  right: -4%;
  width: min(36%, 210px);
}

.v2-hero-line {
  background: var(--v2-accent);
  bottom: 18%;
  height: 1px;
  left: -8%;
  position: absolute;
  transform: rotate(-12deg);
  transform-origin: left center;
  width: 78%;
  z-index: 4;
}

.v2-hero-media img,
.v2-project-card img,
.v2-service-card img,
.v2-insight-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
  width: 100%;
}

.v2-hero-media:hover img,
.v2-project-card:hover img,
.v2-service-card:hover img,
.v2-insight-media:hover img {
  transform: scale(1.06);
}

.v2-section {
  padding: var(--v2-section) 0;
  position: relative;
}

.v2-section.is-warm {
  background:
    linear-gradient(180deg, var(--v2-warm) 0%, #f4efe8 100%);
}

.v2-section.is-black {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 47, 167, 0.22), transparent 26vw),
    var(--v2-black);
  color: var(--v2-white);
}

.v2-section-head {
  align-items: end;
  border-top: 1px solid var(--v2-border);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
}

.v2-section-title {
  font-size: clamp(3rem, 7vw, 7.5rem);
  max-width: 12ch;
}

.v2-section-text {
  color: var(--v2-muted);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  margin: 0;
}

.v2-project-grid {
  display: grid;
  gap: clamp(1.75rem, 3vw, 3.5rem);
  grid-template-columns: repeat(12, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.v2-project-card {
  color: var(--v2-black);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-column: span 6;
  text-decoration: none;
  transition: transform 260ms ease;
}

.v2-project-card.is-large {
  grid-column: span 7;
}

.v2-project-card.is-small {
  grid-column: span 5;
}

.v2-project-card.is-featured {
  margin-top: clamp(1.5rem, 4vw, 3.5rem);
}

.v2-project-card.is-offset {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.v2-project-card.is-lift {
  margin-top: clamp(-3rem, -3vw, -1rem);
}

.v2-project-card:hover {
  transform: translateY(-8px);
}

.v2-project-image {
  aspect-ratio: 1.18;
  background: var(--v2-warm-deep);
  clip-path: inset(0 round 0);
  overflow: hidden;
  position: relative;
}

.v2-project-image::after {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.24));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 220ms ease;
}

.v2-project-card:hover .v2-project-image::after {
  opacity: 1;
}

.v2-project-card.is-small .v2-project-image {
  aspect-ratio: 0.82;
}

.v2-project-card.is-large:nth-child(4) .v2-project-image {
  aspect-ratio: 1.4;
}

.v2-project-info {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
}

.v2-project-info h3,
.v2-service-card h3,
.v2-reason h3,
.v2-insight h3 {
  color: inherit;
  font-family: var(--v2-font-display);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.v2-project-meta {
  color: var(--v2-muted);
  display: block;
  margin: 0.6rem 0 0;
  transition: color 180ms ease, transform 180ms ease;
}

.v2-project-copy,
.v2-service-card p,
.v2-reason p,
.v2-insight p {
  color: var(--v2-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0.75rem 0 0;
}

.v2-arrow {
  align-items: center;
  border: 1px solid var(--v2-border);
  border-radius: 999px;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  opacity: 0.72;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  width: 40px;
}

.v2-project-card:hover h3,
.v2-project-card:hover .v2-project-meta {
  transform: translateX(4px);
}

.v2-project-card:hover .v2-project-meta {
  color: var(--v2-accent);
}

.v2-project-card:hover .v2-arrow {
  background: var(--v2-black);
  color: var(--v2-white);
  opacity: 1;
  transform: translate(2px, -2px);
}

.v2-services-grid {
  display: grid;
  align-items: start;
  gap: clamp(1rem, 2vw, 2rem);
  grid-template-columns: repeat(12, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.v2-service-card {
  background: var(--v2-white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--v2-black);
  grid-column: span 4;
  min-height: 560px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.v2-service-card.is-tall {
  margin-top: clamp(2rem, 5vw, 5rem);
}

.v2-service-card:hover {
  background: var(--v2-black);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.16);
  color: var(--v2-white);
  transform: translateY(-10px);
}

.v2-service-card img {
  height: 58%;
  filter: saturate(0.86);
  transition: filter 260ms ease, transform 700ms ease;
}

.v2-service-card:hover img {
  filter: saturate(1) contrast(1.08);
}

.v2-service-body {
  padding: clamp(1.25rem, 2vw, 2rem);
}

.v2-service-index {
  color: var(--v2-muted);
  display: block;
  margin-bottom: 1.25rem;
  transition: color 220ms ease;
}

.v2-service-card:hover .v2-service-index,
.v2-service-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.v2-about {
  display: grid;
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
}

.v2-about-copy {
  color: var(--v2-black);
  font-family: var(--v2-font-display);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
}

.v2-about-text {
  align-self: end;
  color: var(--v2-muted);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.55;
  margin: 0;
  max-width: 650px;
}

.v2-reasons-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.v2-reason {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--v2-white);
  min-height: 320px;
  padding: clamp(1.4rem, 2.4vw, 2.4rem);
  transition: background 180ms ease, transform 180ms ease;
}

.v2-reason:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.v2-reason p {
  color: rgba(255, 255, 255, 0.68);
}

.v2-section.is-black .v2-section-kicker,
.v2-section.is-black .v2-section-text {
  color: rgba(255, 255, 255, 0.64);
}

.v2-section.is-black .v2-section-head {
  border-top-color: rgba(255, 255, 255, 0.13);
}

.v2-section.is-black .v2-section-title {
  color: var(--v2-white);
}

.v2-insights {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.64fr);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.v2-insight {
  border-top: 1px solid var(--v2-border);
  padding: 1.5rem 0;
  transition: border-color 180ms ease, padding-left 180ms ease;
}

.v2-insight:first-child {
  padding-top: 0;
}

.v2-insight:hover {
  border-color: rgba(0, 47, 167, 0.42);
  padding-left: 0.75rem;
}

.v2-insight-media {
  aspect-ratio: 0.92;
  background: var(--v2-warm-deep);
  clip-path: polygon(0 0, 100% 8%, 92% 100%, 0 94%);
  margin: 0;
  overflow: hidden;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.v2-cta {
  background:
    linear-gradient(110deg, rgba(0, 47, 167, 0.18), transparent 42%),
    var(--v2-black);
  color: var(--v2-white);
  overflow: hidden;
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative;
}

.v2-cta::after {
  color: rgba(255, 255, 255, 0.055);
  content: "USURAL";
  font-family: var(--v2-font-display);
  font-size: clamp(6rem, 15.5vw, 17rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  position: absolute;
  right: -0.08em;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

.v2-cta-inner {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 1fr) auto;
  position: relative;
  z-index: 1;
}

.v2-cta-kicker {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-transform: uppercase;
}

.v2-cta h2 {
  color: var(--v2-white);
  font-size: clamp(2.65rem, 6.1vw, 6.8rem);
  max-width: 11ch;
}

.v2-cta .v2-button {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--v2-white);
}

.v2-cta .v2-button:hover {
  background: var(--v2-white);
  color: var(--v2-black);
}

.v2-footer {
  background: var(--v2-warm);
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}

.v2-footer-grid {
  border-top: 1px solid var(--v2-border);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(160px, 0.45fr));
  padding-top: clamp(2rem, 4vw, 3rem);
}

.v2-footer-logo img {
  height: 44px;
  object-fit: contain;
  width: auto;
}

.v2-footer p,
.v2-footer a {
  color: var(--v2-muted);
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
}

.v2-footer a:hover {
  color: var(--v2-black);
}

.v2-footer-label {
  color: var(--v2-black);
  display: block;
  margin-bottom: 1rem;
}

.v2-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.v2-footer-bottom {
  align-items: center;
  border-top: 1px solid var(--v2-border);
  color: var(--v2-muted);
  display: flex;
  font-size: 0.92rem;
  justify-content: space-between;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-top: 1.25rem;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.v2-reveal-stack [data-reveal]:nth-child(2) {
  --reveal-delay: 90ms;
}

.v2-reveal-stack [data-reveal]:nth-child(3) {
  --reveal-delay: 180ms;
}

.v2-reveal-stack [data-reveal]:nth-child(4) {
  --reveal-delay: 270ms;
}

.v2-reveal-stack [data-reveal]:nth-child(5) {
  --reveal-delay: 360ms;
}

.v2-reveal {
  animation: v2Fade 620ms ease both;
}

@keyframes v2Fade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .v2-parallax {
    transform: none !important;
  }
}

/* Premium custom cursor for the V2 homepage. */
@media (hover: hover) and (pointer: fine) {
  html.usural-custom-cursor-ready,
  html.usural-custom-cursor-ready * {
    cursor: none !important;
  }

  .usural-custom-cursor {
    align-items: center;
    background: #002fa7;
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    color: #fff;
    display: flex;
    height: 12px;
    justify-content: center;
    left: 0;
    opacity: 0;
    outline: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    transition: width 140ms ease, height 140ms ease, opacity 120ms ease;
    width: 12px;
    will-change: transform, width, height, opacity;
    z-index: 2147483647;
  }

  .usural-custom-cursor.is-visible {
    opacity: 1;
  }

  .usural-custom-cursor[data-mode="link"] {
    height: 18px;
    width: 18px;
  }

  .usural-custom-cursor[data-mode="button"] {
    height: 22px;
    width: 22px;
  }

  .usural-custom-cursor[data-mode="view"],
  .usural-custom-cursor[data-mode="drag"] {
    height: 46px;
    width: 46px;
  }

  .usural-custom-cursor.is-pressed {
    height: 10px;
    width: 10px;
  }

  .usural-custom-cursor__label {
    color: #fff;
    display: block;
    font-family: var(--font-sans);
    font-size: 6px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    opacity: 0;
    text-align: center;
    transform: translateX(0.04em);
    transition: opacity 100ms ease;
    user-select: none;
  }

  .usural-custom-cursor[data-mode="view"] .usural-custom-cursor__label,
  .usural-custom-cursor[data-mode="drag"] .usural-custom-cursor__label {
    opacity: 1;
  }
}

@media (hover: none), (pointer: coarse) {
  .usural-custom-cursor {
    display: none !important;
  }
}

@media screen and (max-width: 1100px) {
  .v2-hero-grid,
  .v2-section-head,
  .v2-about,
  .v2-insights,
  .v2-cta-inner {
    grid-template-columns: 1fr;
  }

  .v2-hero-media {
    aspect-ratio: 16 / 10;
  }

  .v2-services-grid,
  .v2-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-service-card,
  .v2-service-card.is-tall {
    grid-column: auto;
    margin-top: 0;
  }

  .v2-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 760px) {
  .v2-nav-links {
    display: none;
  }

  .v2-menu-button {
    display: inline-flex;
  }

  .v2-hero {
    min-height: auto;
    padding-top: clamp(3rem, 12vw, 5rem);
  }

  .v2-hero::after,
  .v2-hero-line,
  .v2-hero-mark {
    display: none;
  }

  .v2-hero-visual {
    min-height: auto;
  }

  .v2-hero h1 {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }

  .v2-hero-original {
    min-height: calc(100svh - clamp(72px, 7vw, 92px));
  }

  .v2-hero-original-inner {
    align-items: center;
    grid-template-columns: 1fr;
    min-height: calc(100svh - clamp(72px, 7vw, 92px));
    padding-bottom: clamp(1.5rem, 7vw, 3rem);
    padding-top: clamp(2rem, 8vw, 4rem);
  }

  .v2-hero-original-copy {
    max-width: 100%;
  }

  .v2-hero-service-list {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
    margin-top: clamp(1rem, 4vw, 1.5rem);
  }

  .v2-hero-actions {
    margin-top: clamp(1.15rem, 5vw, 1.75rem);
  }

  .v2-hero-scroll {
    display: none;
  }

  .v2-hero-media {
    clip-path: none;
  }

  .v2-hero-float {
    display: none;
  }

  .v2-project-card,
  .v2-project-card.is-large,
  .v2-project-card.is-small {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .v2-project-card.is-small .v2-project-image,
  .v2-project-image {
    aspect-ratio: 1.05;
  }

  .v2-services-grid,
  .v2-reasons-grid,
  .v2-footer-grid {
    grid-template-columns: 1fr;
  }

  .v2-service-card,
  .v2-service-card.is-tall {
    grid-column: 1 / -1;
  }

  .v2-service-card {
    min-height: auto;
  }

  .v2-service-card img {
    aspect-ratio: 1.15;
    height: auto;
  }

  .v2-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Premium agency polish: restores stronger visual rhythm without changing structure. */
body.usural-v2 {
  --v2-accent: #002fa7;
  --v2-deep: #080808;
}

.v2-section {
  isolation: isolate;
}

.v2-section::before {
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.12), transparent);
  content: "";
  height: 1px;
  left: var(--v2-side);
  opacity: 0.62;
  position: absolute;
  right: var(--v2-side);
  top: 0;
}

.v2-section.is-black {
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 47, 167, 0.32), transparent 30vw),
    linear-gradient(145deg, #060606 0%, #151515 62%, #050505 100%);
}

.v2-section.is-warm {
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 47, 167, 0.08), transparent 24vw),
    linear-gradient(180deg, #fbfaf7 0%, #f0ebe4 100%);
}

.v2-section-head {
  border-top-color: rgba(17, 17, 17, 0.16);
}

.v2-section-title {
  font-size: clamp(3.6rem, 8.4vw, 9rem);
  letter-spacing: -0.055em;
}

.v2-section-text {
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  max-width: 560px;
}

.v2-project-slider-wrap {
  margin-left: calc(var(--v2-side) * -1);
  margin-right: calc(var(--v2-side) * -1);
  overflow: hidden;
  padding-left: var(--v2-side);
}

.v2-project-grid.v2-project-slider {
  align-items: end;
  gap: clamp(1.1rem, 2.8vw, 3rem);
  padding-bottom: 1.25rem;
  scroll-padding-left: var(--v2-side);
}

.v2-project-grid.v2-project-slider .v2-project-card {
  flex-basis: min(74vw, 760px);
}

.v2-project-grid.v2-project-slider .v2-project-card.is-small {
  flex-basis: min(50vw, 520px);
}

.v2-project-grid.v2-project-slider .v2-project-card:nth-child(even) {
  transform: translateY(clamp(1rem, 3vw, 3rem));
}

.v2-project-grid.v2-project-slider .v2-project-card:hover {
  transform: translateY(calc(clamp(1rem, 3vw, 3rem) - 8px));
}

.v2-project-grid.v2-project-slider .v2-project-card:nth-child(odd):hover {
  transform: translateY(-8px);
}

.v2-project-image {
  background: #0d0d0d;
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.14);
}

.v2-project-card:hover .v2-project-image::after {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.46)),
    linear-gradient(90deg, rgba(0, 47, 167, 0.18), transparent);
}

.v2-project-card:hover .v2-project-meta {
  color: var(--v2-accent);
}

.v2-arrow {
  border-color: rgba(0, 47, 167, 0.22);
  color: var(--v2-accent);
}

.v2-project-card:hover .v2-arrow {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: var(--v2-white);
}

.v2-project-slider-button {
  border-color: rgba(0, 47, 167, 0.22);
  color: var(--v2-accent);
}

.v2-project-slider-button:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: var(--v2-white);
}

.v2-services-grid {
  gap: 1px;
}

.v2-service-card {
  border-color: rgba(17, 17, 17, 0.12);
  min-height: clamp(520px, 48vw, 690px);
}

.v2-service-card:nth-child(2) {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.v2-service-card:nth-child(3) {
  margin-top: clamp(1.5rem, 3vw, 3.5rem);
}

.v2-service-card:hover {
  background:
    linear-gradient(145deg, rgba(0, 47, 167, 0.18), transparent 56%),
    var(--v2-deep);
}

.v2-service-card::after {
  background: var(--v2-accent);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.v2-service-card:hover::after {
  transform: scaleX(1);
}

.v2-about {
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  padding-top: clamp(2rem, 4vw, 4rem);
}

.v2-about-copy {
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  letter-spacing: -0.055em;
}

.v2-about-text {
  border-left: 2px solid var(--v2-accent);
  padding-left: clamp(1.25rem, 2.4vw, 2.4rem);
}

.v2-reason {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  min-height: clamp(300px, 30vw, 420px);
}

.v2-reason:hover {
  background:
    linear-gradient(145deg, rgba(0, 47, 167, 0.22), rgba(255, 255, 255, 0.08));
  transform: translateY(-6px);
}

.v2-insights {
  align-items: center;
}

.v2-insight:hover {
  border-color: rgba(0, 47, 167, 0.44);
}

.v2-insight h3 {
  font-size: clamp(1.7rem, 2.7vw, 3.2rem);
}

.v2-insight-media {
  box-shadow: 0 26px 90px rgba(17, 17, 17, 0.16);
}

.v2-cta {
  background:
    radial-gradient(circle at 86% 22%, rgba(0, 47, 167, 0.34), transparent 30vw),
    linear-gradient(135deg, #050505 0%, #161616 100%);
}

.v2-cta .v2-button:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: var(--v2-white);
}

.v2-footer {
  background:
    linear-gradient(180deg, #f7f3ee, #ffffff);
}

.v2-footer a:hover {
  color: var(--v2-accent);
}

@media screen and (max-width: 760px) {
  .v2-project-slider-wrap {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
  }

  .v2-project-grid.v2-project-slider .v2-project-card,
  .v2-project-grid.v2-project-slider .v2-project-card.is-small {
    flex-basis: min(84vw, 420px);
    transform: none;
  }

  .v2-service-card:nth-child(2),
  .v2-service-card:nth-child(3) {
    margin-top: 0;
  }
}

/* Global visual system refinement: homepage nav, color, type, rhythm. */
body.usural-v2 {
  --v2-white: #ffffff;
  --v2-warm: #f8f7f4;
  --v2-warm-deep: #efede8;
  --v2-muted: #5e5e5e;
  --v2-border: rgba(0, 0, 0, 0.08);
  --v2-accent: #002fa7;
  --v2-nav-height: 84px;
  --v2-font-display: var(--font-display);
  --v2-font-body: var(--font-body);
  --v2-font-label: var(--font-accent);
  background: var(--v2-warm);
}

.v2-nav {
  background: rgba(248, 247, 244, 0.94);
  border-bottom-color: var(--v2-border);
  height: var(--v2-nav-height);
  min-height: var(--v2-nav-height);
}

.v2-logo img {
  height: clamp(38px, 3.2vw, 44px);
}

.v2-nav-links {
  gap: 0;
}

.v2-nav-links a,
.v2-mobile-panel a {
  color: var(--v2-black);
  font-family: var(--v2-font-label);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  opacity: 0.84;
  padding: 0 clamp(1rem, 1.55vw, 1.55rem);
  position: relative;
}

.v2-nav-links a + a::before {
  background: rgba(0, 0, 0, 0.14);
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.v2-nav-links a::after {
  background: var(--v2-accent);
  bottom: -0.45rem;
  content: "";
  height: 1px;
  left: clamp(1rem, 1.55vw, 1.55rem);
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: calc(100% - clamp(2rem, 3.1vw, 3.1rem));
}

.v2-nav-links a:hover,
.v2-nav-links a[href="/"],
.v2-mobile-panel a:hover,
.v2-mobile-panel a[href="/"] {
  color: var(--v2-accent);
  opacity: 1;
}

.v2-nav-links a:hover::after,
.v2-nav-links a[href="/"]::after {
  transform: scaleX(1);
}

.v2-mobile-panel {
  background: #f8f7f4;
  top: var(--v2-nav-height);
}

.v2-eyebrow,
.v2-section-kicker,
.v2-project-meta,
.v2-service-index,
.v2-footer-label,
.v2-cta-kicker,
.v2-hero-scroll {
  font-family: var(--v2-font-label);
  letter-spacing: 0.16em;
}

.v2-hero-title,
.v2-section-title,
.v2-cta h2,
.v2-about-copy,
.v2-project-info h3,
.v2-service-card h3,
.v2-reason h3,
.v2-insight h3 {
  font-family: var(--v2-font-display);
  font-stretch: condensed;
  text-transform: uppercase;
}

.v2-section {
  padding-bottom: clamp(6rem, 11vw, 10rem);
  padding-top: clamp(6rem, 11vw, 10rem);
}

.v2-section.is-warm,
.v2-footer {
  background-color: #f8f7f4;
}

@media (hover: hover) and (pointer: fine) {
  .usural-custom-cursor {
    height: 14px;
    width: 14px;
  }

  .usural-custom-cursor[data-mode="link"],
  .usural-custom-cursor[data-mode="button"] {
    height: 32px;
    width: 32px;
  }

  .usural-custom-cursor[data-mode="view"],
  .usural-custom-cursor[data-mode="drag"] {
    height: 64px;
    width: 64px;
  }

  .usural-custom-cursor.is-pressed {
    height: 12px;
    width: 12px;
  }
}

@media screen and (max-width: 760px) {
  .v2-nav {
    height: 72px;
    min-height: 72px;
  }

  .v2-mobile-panel {
    top: 72px;
  }

  .v2-nav-links a + a::before,
  .v2-nav-links a::after {
    display: none;
  }
}

.v2-original-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.35rem, 2.6vw, 2.25rem);
}

.v2-original-hero-actions .v2-button {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  min-height: 46px;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.v2-original-hero-actions .v2-button.is-primary {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.v2-original-hero-actions .v2-button:hover,
.v2-original-hero-actions .v2-button.is-primary:hover {
  background: #002fa7;
  border-color: #002fa7;
  color: #ffffff;
}

/* Final typography polish: homepage editorial system. */
:root {
  --font-display: "Inter", sans-serif;
  --font-body: "Azeret Mono", "Space Mono", monospace;
  --font-accent: "Oswald", sans-serif;
  --font-editorial: var(--font-accent);
  --v2-font-display: var(--font-display);
  --v2-font-body: var(--font-body);
  --v2-font-label: var(--font-accent);
}

.v2-page,
.v2-page p,
.v2-page li,
.v2-page a,
.v2-page button {
  font-family: var(--font-body);
  letter-spacing: -0.006em;
}

.v2-original-hero-line {
  font-family: var(--font-display) !important;
  font-size: clamp(2.05rem, 4.6vw, 5.7rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.052em !important;
  line-height: 0.92 !important;
  max-width: 10.5ch;
}

.v2-original-hero-support,
.v2-section-text,
.v2-project-copy,
.v2-service-card p,
.v2-about-text,
.v2-reason p,
.v2-insight p,
.v2-cta p {
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.24rem) !important;
  letter-spacing: -0.005em !important;
  line-height: 1.62 !important;
}

.v2-original-hero-support {
  font-family: var(--font-accent) !important;
  font-size: clamp(1rem, 1vw + 0.72rem, 1.2rem) !important;
  letter-spacing: 0.015em !important;
  line-height: 1.48 !important;
  max-width: 620px;
}

.v2-hero-title,
.v2-section-title,
.v2-cta h2,
.v2-about-copy,
.v2-project-info h3,
.v2-service-card h3,
.v2-reason h3,
.v2-insight h3 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.052em !important;
  line-height: 0.94 !important;
}

.v2-hero-title.v2-original-hero-title {
  font-size: clamp(4.4rem, 15.5vw, 16.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.068em !important;
  line-height: 0.76 !important;
}

.v2-section-title,
.v2-cta h2 {
  font-size: clamp(3.15rem, 7.5vw, 8.2rem) !important;
}

.v2-project-info h3,
.v2-service-card h3,
.v2-reason h3,
.v2-insight h3 {
  font-size: clamp(1.55rem, 2.45vw, 3rem) !important;
}

.v2-eyebrow,
.v2-section-kicker,
.v2-project-meta,
.v2-service-index,
.v2-footer-label,
.v2-cta-kicker,
.v2-hero-scroll,
.v2-nav-links a,
.v2-mobile-panel a {
  font-family: var(--font-accent) !important;
  font-size: clamp(0.72rem, 0.68rem + 0.08vw, 0.82rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  line-height: 1.15 !important;
  text-transform: uppercase;
}

.v2-faq .v2-section-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.55rem, 5.35vw, 6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.052em !important;
  line-height: 0.94 !important;
}

.v2-faq-question {
  font-family: var(--font-display) !important;
  font-size: clamp(1.02rem, 0.96rem + 0.45vw, 1.42rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.012em !important;
  line-height: 1.25 !important;
}

.v2-faq-answer p {
  font-family: var(--font-body) !important;
  font-size: clamp(0.98rem, 0.92rem + 0.2vw, 1.12rem) !important;
  line-height: 1.68 !important;
}

@media screen and (max-width: 767px) {
  .v2-original-hero-line {
    font-size: clamp(2.35rem, 12.8vw, 4.55rem) !important;
    line-height: 0.92 !important;
    max-width: 9.5ch;
  }

  .v2-original-hero-support {
    font-size: clamp(0.96rem, 3.8vw, 1.08rem) !important;
    line-height: 1.5 !important;
  }

  .v2-section-title,
  .v2-cta h2,
  .v2-faq .v2-section-title {
    font-size: clamp(2.35rem, 11vw, 4.4rem) !important;
    line-height: 0.96 !important;
  }
}

/* Refined white footer: homepage master footer system. */
.v2-cta {
  margin-bottom: 0 !important;
}

.v2-footer {
  background: #ffffff !important;
  color: #111111 !important;
  padding: 72px 0 32px !important;
}

.v2-cta + .v2-footer {
  margin-top: -50px !important;
}

.v2-footer-grid {
  border-top-color: rgba(0, 0, 0, 0.1) !important;
  gap: clamp(2rem, 4.5vw, 4.5rem) !important;
  grid-template-columns: minmax(340px, 1.5fr) repeat(3, minmax(160px, 1fr)) !important;
  padding-top: clamp(2rem, 4vw, 3rem) !important;
}

.v2-footer-logo img {
  height: 55px !important;
}

.v2-footer p,
.v2-footer a {
  color: #5e5e5e !important;
}

.v2-footer a:hover {
  color: #002fa7 !important;
}

.v2-footer-label {
  color: #111111 !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
}

.v2-footer-bottom {
  align-items: baseline !important;
  border-top-color: rgba(0, 0, 0, 0.1) !important;
  color: #5e5e5e !important;
}

@media screen and (max-width: 991px) {
  .v2-footer-grid {
    grid-template-columns: minmax(280px, 1.5fr) minmax(160px, 1fr) !important;
  }
}

@media screen and (max-width: 760px) {
  .v2-footer {
    padding: 48px 0 28px !important;
  }

  .v2-cta + .v2-footer {
    margin-top: -36px !important;
  }

  .v2-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .v2-footer-logo img {
    height: 52px !important;
  }

  .v2-footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
}

/* Navbar typography: Inter for navigation labels. */
.v2-nav-links a,
.v2-mobile-panel a {
  font-family: "Inter", sans-serif !important;
}
