:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-2: #09090b;
  --text: #fafafa;
  --muted: #a1a1aa;
  --muted-2: #d4d4d8;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.16);
  --card: rgba(255, 255, 255, 0.025);
  --card-strong: rgba(0, 0, 0, 0.22);
  --accent: #ef1338;
  --accent-dark: #890b20;
  --max: 1344px;
  --page-width: 70vw;
  --radius: 8px;
  --radius-lg: 20px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-meta: "DM Sans", system-ui, sans-serif;
  --iti-hover-color: rgba(239, 19, 56, 0.18);
  --iti-border-color: rgba(239, 19, 56, 0.62);
  --iti-dialcode-color: rgba(250, 250, 250, 0.68);
  --iti-dropdown-bg: #111113;
  --iti-icon-color: var(--accent);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
.metrics strong,
.faq h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 *,
h2 *,
h3 *,
.metrics strong *,
.faq h2 * {
  font-family: inherit;
}

p,
a,
button,
summary,
li,
span {
  font-family: var(--font-body);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--page-width), var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
  text-align: center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 10, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform 240ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav-shell {
  width: min(1116px, calc(100% - 32px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 141px;
  height: 22.956px;
  aspect-ratio: 141 / 22.956;
  object-fit: contain;
}

.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 10px;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
}

.nav-link.is-active {
  color: var(--text);
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-chevron {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.nav-dropdown {
  position: relative;
}

.services-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 250px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050506;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .services-menu,
.services-menu.is-open {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 160ms ease, color 160ms ease;
}

.services-menu a::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.services-menu a:hover {
  background: var(--card);
  color: var(--text);
}

.site-header .btn:hover {
  transform: none;
  filter: brightness(1.08);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
}

.mobile-toggle span {
  width: 16px;
  height: 1px;
  background: currentColor;
}

.mobile-menu {
  display: none;
  width: min(var(--page-width), var(--max));
  margin: 0 auto 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050506;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 10px;
  color: var(--muted-2);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.mobile-menu a::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: var(--card);
  color: var(--text);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: #696969;
  color: var(--text);
}

.btn-small {
  min-height: 38px;
  padding: 10px 17px;
  font-size: 13px;
}

.section-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
}

.hero {
  position: relative;
  min-height: 1080px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
  background: #050506;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  z-index: 0;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38%;
  z-index: 0;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  pointer-events: none;
  filter: blur(45px);
  transform: scale(1.12);
}

.hero-glow {
  display: none;
  position: absolute;
  top: -580px;
  left: 50%;
  width: 2200px;
  height: 940px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.24), transparent 13%),
    radial-gradient(ellipse at center, rgba(239, 19, 56, 0.7), rgba(239, 19, 56, 0.18) 38%, transparent 72%);
  opacity: 0.95;
  filter: blur(2px);
  animation: heroGlowMove 9s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, var(--page-width));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 28px;
  text-align: center;
  animation: heroContentIn 900ms ease both;
}

.pill,
.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--text);
  font-family: var(--font-meta);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pill span,
.availability span,
.hero-points span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(239, 19, 56, 0.9);
}

.availability {
  gap: 7px;
  border-color: rgba(255, 255, 255, 0.1);
  padding: 6px 11px;
  color: #d4d4d8;
  font-weight: 700;
  letter-spacing: 1.166px;
}

.availability span {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #1eef13;
  box-shadow: none;
}

.hero h1,
.statement h2,
.section-heading h2,
.about h2,
.cta h2 {
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  max-width: 1120px;
  font-size: clamp(72px, 9.8vw, 188px);
  line-height: 1.02;
  text-align: center;
  color: transparent;
  background: linear-gradient(180deg, #fff, #999);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero h1 strong {
  color: var(--accent);
  font-weight: 400;
}

.hero-copy {
  max-width: 730px;
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.58;
  text-align: center;
  letter-spacing: 0.1em;
}

.hero-actions,
.hero-points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 34px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.metrics {
  min-height: 287px;
  display: flex;
  align-items: center;
  padding: 44px 0 42px;
  overflow: hidden;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}

.metrics article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.metrics p {
  margin: 0 0 6px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(15px, 1.19vw, 22.81px);
  line-height: 1;
  letter-spacing: 0.051em;
  text-transform: uppercase;
  white-space: nowrap;
}

.metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(84px, 8.94vw, 171.656px);
  font-weight: 400;
  line-height: 0.8;
  color: var(--accent);
  letter-spacing: 0;
  white-space: nowrap;
}

.metrics span {
  font-family: inherit;
  background: linear-gradient(180deg, #fafafa, #949494);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metrics article:nth-child(2) span {
  background: none;
  color: var(--text);
}

.section {
  padding: 148px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-meta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about h2,
.section-heading h2,
.cta h2 {
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.05;
}

.about h2 strong,
.statement strong,
.section-heading.light h2 {
  color: var(--accent);
  font-weight: 400;
}

.about p,
.statement p,
.cta p,
.faq-layout > div:first-child p {
  color: var(--muted-2);
  letter-spacing: 0.06em;
}

.about {
  min-height: 753px;
  display: flex;
  align-items: center;
  padding: 96px 0 94px;
}

.about .narrow {
  max-width: 602px;
}

.about .eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.106em;
}

.about h2 {
  width: min(489px, 100%);
  margin: 0 auto;
  font-size: clamp(44px, 2.9vw, 55.545px);
  line-height: 1.05;
}

.about-copy {
  width: min(602px, 100%);
  margin: 15px auto 0;
  font-size: 13.2px;
  line-height: 1.5;
  letter-spacing: 0.114em;
}

.about-button {
  min-height: 41px;
  margin-top: 16px;
  padding: 10px 18px;
  font-size: 14.955px;
}

.proof-card {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  min-height: 222px;
  margin-top: 66px;
  padding: 24px;
  text-align: left;
  border-radius: var(--radius-lg);
  background: linear-gradient(97deg, var(--accent) 3.2%, var(--accent-dark) 50.6%, var(--accent) 98%);
}

.proof-copy {
  display: grid;
  flex: 1;
  gap: 31px;
}

.proof-card p {
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.106em;
}

.proof-card strong {
  color: #111010;
  font-weight: 700;
}

.proof-ring {
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  flex: 0 0 138px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 49px;
  position: relative;
}

.proof-ring img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.proof-ring span {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-size: 48.644px;
  line-height: 0.891;
}

/* ===== ABOUT PROOF — seção unificada ===== */

.about-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.about-proof-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-proof-text h2 {
  margin: 12px 0 20px;
  font-size: clamp(38px, 3.4vw, 56px);
  line-height: 1.06;
}

.about-proof-text h2 strong {
  color: var(--accent);
  font-weight: 400;
}

.about-proof-copy {
  margin: 0 0 28px;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: 0.04em;
}

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.about-metric {
  padding: 28px 24px 20px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 200ms ease;
}

.about-metric:hover {
  background: rgba(255, 255, 255, 0.04);
}

.about-metric:nth-child(1),
.about-metric:nth-child(2) {
  border-bottom: 1px solid var(--line);
}

.about-metric:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.about-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.2vw, 80px);
  font-weight: 400;
  line-height: 0.88;
  color: var(--accent);
  letter-spacing: 0;
}

.about-metric strong span {
  font-family: inherit;
  background: linear-gradient(180deg, #fafafa, #949494);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-metric:nth-child(2) strong span {
  background: none;
  color: var(--text);
}

.about-metric p {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-proof .proof-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: auto;
  margin-top: 0;
  padding: 20px 24px;
  background: rgba(239, 19, 56, 0.05);
  border: 1px solid rgba(239, 19, 56, 0.18);
  border-radius: var(--radius-lg);
}

.about-proof .proof-ring {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
}

.about-proof .proof-ring span {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

.about-proof .proof-copy {
  display: grid;
  gap: 10px;
}

.about-proof .proof-card p {
  margin: 0;
  color: var(--muted-2);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.about-proof .proof-card strong {
  color: var(--text);
  font-weight: 700;
}

.statement {
  min-height: 477px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 148px 0 140px;
}

.statement h2 {
  font-family: var(--font-display);
  max-width: 1130px;
  margin: 0 auto;
  font-size: clamp(46px, 3.78vw, 72.624px);
  line-height: 1.08;
  word-spacing: 0.02em;
}

.statement h2 span,
.statement h2 strong,
.typing-title span,
.typing-title strong {
  font-family: var(--font-display);
}

.text-gradient {
  color: transparent;
  background: linear-gradient(180deg, #fafafa, #949494);
  -webkit-background-clip: text;
  background-clip: text;
}

.typing-title {
  min-height: 158px;
}

.typing-title::after {
  content: "";
  display: inline-block;
  width: 0.06em;
  height: 0.8em;
  margin-left: 0.06em;
  transform: translateY(0.08em);
  background: var(--accent);
  animation: caretBlink 760ms steps(1) infinite;
}

.typing-title.is-finished::after {
  opacity: 0;
  animation: none;
}

.statement-label {
  width: min(1130px, 100%);
  margin: 6px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(239, 19, 56, 0.3);
  color: var(--muted);
  font-size: 11.66px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.principles {
  min-height: 648px;
  display: flex;
  align-items: center;
  padding: 96px 0 120px;
}

.principles-inner {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.principles-heading {
  max-width: 1120px;
  margin: 0;
  text-align: left;
}

.principles-heading .eyebrow {
  margin-bottom: 10px;
}

.principles-heading h2 {
  width: 100%;
  max-width: 600px;
  font-size: clamp(42px, 2.9vw, 55.55px);
  line-height: 1;
  letter-spacing: 0.021em;
}

.principles-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.principles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.testimonial-grid article,
.service-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.principles-grid article {
  padding: 32px 28px 44px;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
}

.principles-grid article:last-child {
  border-right: none;
}

.principle-num {
  display: block;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(239, 19, 56, 0.3);
  margin-bottom: 36px;
}

.principles-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.service-card span {
  color: var(--accent);
  font-family: var(--font-meta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

h3 {
  margin: 16px 0 12px;
  font-size: 26px;
  line-height: 1.1;
  text-transform: uppercase;
}

.principles-grid p,
.service-card p,
.testimonial-grid p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.principles-grid p {
  font-size: 13.2px;
  line-height: 1.5;
  letter-spacing: 0.114em;
}

.services {
  min-height: 901px;
  display: flex;
  align-items: flex-start;
  padding: 96px 0 112px;
  background: #050506;
  overflow: hidden;
}

.services-inner {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.services-heading {
  max-width: 1120px;
  margin: 0;
  text-align: center;
}

.services-heading .eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
}

.services-heading h2 {
  width: 100%;
  font-size: clamp(42px, 2.9vw, 55.55px);
  line-height: 1;
  letter-spacing: 0.021em;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 43px;
}

.service-card {
  width: 271px;
  height: 293.38px;
  min-height: 293.38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: rgba(0, 0, 0, 0.62);
  border-color: rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(0, 0, 0, 0.34);
}

.service-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(239, 19, 56, 0.13);
}

.service-icon img {
  width: 20px;
  height: 20px;
}

.service-card h3 {
  margin: 39px 0 8px;
  font-size: 22.81px;
  line-height: 1;
  letter-spacing: 0.051em;
}

.service-card p {
  color: #fff;
  font-size: 13.2px;
  line-height: 1.5;
  letter-spacing: 0.114em;
}

.service-more {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: auto;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.service-more img {
  width: 11px;
  height: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-grid article {
  min-height: 150px;
}

.testimonial-grid p {
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
}

.testimonial-grid span {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-blog {
  padding: 140px 0 152px;
  background: #050506;
}

.home-blog-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.home-blog-heading h2 {
  max-width: 760px;
}

.home-blog .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta {
  padding: 86px 0 94px;
  text-align: center;
}

.cta .eyebrow {
  color: var(--accent);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 469px) minmax(0, 628px);
  gap: 41px;
  align-items: center;
  justify-content: center;
}

.faq-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.faq-layout .faq-copy > .eyebrow {
  color: var(--accent);
}

.faq h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(120px, 14vw, 242px);
  font-weight: 700;
  line-height: 0.91;
  text-align: left;
  color: transparent;
  background: linear-gradient(180deg, #fafafa, #949494);
  -webkit-background-clip: text;
  background-clip: text;
}

.faq-copy > p:not(.eyebrow) {
  max-width: 469px;
  margin: 0;
  color: var(--muted-2);
  font-size: 13.2px;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

.faq-list {
  display: grid;
  gap: 15px;
}

.faq-list details {
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  background: var(--card-strong);
  backdrop-filter: blur(11.9px);
  -webkit-backdrop-filter: blur(11.9px);
  overflow: hidden;
  transition: border-color 160ms ease, background 160ms ease;
}

.faq-list details:hover,
.faq-list details:focus-within {
  border-color: rgba(239, 19, 56, 0.76);
  background: rgba(239, 19, 56, 0.08);
}

.faq-list summary {
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
  cursor: pointer;
  color: #fff;
  font-size: 15.84px;
  font-weight: 700;
  letter-spacing: 1.166px;
  transition: color 160ms ease;
}

.faq-list summary:hover,
.faq-list details:focus-within summary {
  color: var(--accent);
}

.faq-list summary::after {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(-135deg);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.about-page {
}

@property --agl-x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 30%;
}

@property --agl-y {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 35%;
}

@property --agr-x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 70%;
}

@property --agr-y {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 25%;
}

.about-hero {
  position: relative;
  min-height: 1080px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 160px 0 90px;
  background: #050506;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 20%, #000, transparent 70%);
  opacity: 0.42;
}

.about-hero-light,
.blog-hero-light,
.post-hero-light,
.contact-hero-light,
.service-hero-light {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 65% 55% at var(--agl-x) var(--agl-y), rgba(239, 19, 56, 0.2) 0%, transparent 100%),
    radial-gradient(ellipse 55% 50% at var(--agr-x) var(--agr-y), rgba(150, 8, 28, 0.14) 0%, transparent 100%);
  filter: blur(80px);
  animation: aboutGradShift 7s ease-in-out infinite;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  text-align: center;
  animation: heroContentIn 900ms ease both;
}

.about-hero h1 {
  max-width: 1010px;
  margin: 28px auto 34px;
  font-size: clamp(86px, 8.8vw, 150px);
  line-height: 1.02;
  color: transparent;
  background: linear-gradient(180deg, #fff 0%, #b8b8bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-hero h1 strong,
.about-origin h2 strong,
.about-difference h2 strong,
.about-team h2 strong {
  color: var(--accent);
  font-family: inherit;
  font-weight: 400;
}

.about-hero h1 span,
.about-origin h2 span {
  display: block;
  font-family: inherit;
}

.about-hero-points {
  justify-content: center;
}

.about-origin {
  position: relative;
  overflow: visible;
  padding: 65px 0 0;
  background: #050506;
}

.about-origin-grid {
  width: min(1121px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 362px 536px;
  gap: 223px;
  align-items: start;
  justify-content: center;
}

.about-origin-grid > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 14.955px;
}

.about-origin h2,
.about-difference h2,
.about-team h2 {
  margin: 0;
  font-size: clamp(62px, 6.1vw, 110px);
  line-height: 0.94;
  color: transparent;
  background: linear-gradient(180deg, #fff 0%, #8d8d93 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-origin .eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.166px;
  white-space: nowrap;
  width: max-content;
}

.about-origin h2 {
  color: var(--text);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  font-size: 55.55px;
  line-height: 1;
  letter-spacing: 1.166px;
  text-transform: uppercase;
}

.about-origin-copy {
  width: min(100%, 536px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 0;
}

.about-origin-copy p {
  margin: 0;
  color: var(--muted-2);
  font-size: 13.2px;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

.about-team-copy p {
  margin: 0 0 18px;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.72;
}

.about-origin-copy .btn {
  min-height: 40.59px;
  margin-top: 1px;
  padding: 10.682px 18.159px;
  border-radius: 8.545px;
  gap: 5.341px;
  font-size: 14.955px;
}

.about-portraits {
  position: relative;
  margin-top: 69px;
  padding: 0;
  z-index: 1;
  line-height: 0;
  overflow: hidden;
  background: #050506;
}

.about-portrait-bg {
  display: none;
}

.about-portraits-row {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin: 0 auto;
  line-height: 0;
}

.about-portraits-row img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.5));
}

.about-difference {
  position: relative;
  z-index: 2;
  padding: 158px 0 168px;
  background: #050506;
}

.about-difference .eyebrow,
.about-difference h2 {
  text-align: center;
}

.about-team .eyebrow {
  color: var(--accent);
}

.about-difference h2 {
  line-height: 1.08;
  padding-top: 0.12em;
}

.difference-list {
  display: grid;
  gap: 0;
  margin-top: 72px;
}

.difference-list article {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: clamp(24px, 4vw, 70px);
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.difference-list article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.difference-list span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(48px, 4.4vw, 78px);
  line-height: 0.9;
}

.difference-list h3 {
  margin: 0 0 10px;
  font-size: clamp(42px, 4.7vw, 86px);
  line-height: 0.92;
}

.difference-list p {
  max-width: 780px;
  margin: 0;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.72;
}

.about-team {
  overflow: hidden;
  padding: 154px 0 164px;
  background: #050506;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: start;
}

.about-team-copy h2 {
  margin-bottom: 24px;
}

.about-team-copy {
  max-width: 980px;
}

.team-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.team-showcase-stack {
  position: relative;
  min-height: clamp(440px, 44vw, 650px);
  isolation: isolate;
}

.team-showcase-stack::before {
  content: "";
  position: absolute;
  inset: 10% 1% 8% 18%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(239, 19, 56, 0.23), rgba(239, 19, 56, 0) 66%);
  filter: blur(10px);
  pointer-events: none;
}

.team-slide {
  --slide-x: 0px;
  --slide-y: 0px;
  --slide-scale: 1;
  --slide-rotate: 0deg;
  --slide-opacity: 1;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: var(--slide-z, 1);
  width: min(100%, 520px);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #120207;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
  cursor: pointer;
  overflow: hidden;
  transform: translate(var(--slide-x), calc(-50% + var(--slide-y))) scale(var(--slide-scale)) rotate(var(--slide-rotate));
  opacity: var(--slide-opacity);
  transition: transform 520ms cubic-bezier(0.2, 0.86, 0.2, 1), opacity 360ms ease, border-color 260ms ease, box-shadow 260ms ease, filter 360ms ease;
}

.team-slide img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.team-slide.is-active {
  border-color: transparent;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.54), 0 0 60px rgba(239, 19, 56, 0.12);
}

.team-slide:not(.is-active) {
  filter: saturate(0.92) brightness(0.66);
}

.team-showcase[data-team-arrows-only] .team-slide {
  cursor: default;
  pointer-events: none;
}

.team-showcase[data-team-arrows-only] .team-slide:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.team-showcase[data-team-arrows-only] .team-slide.is-active:hover {
  border-color: transparent;
}

.team-slide:hover,
.team-slide:focus-visible {
  border-color: rgba(239, 19, 56, 0.78);
  outline: 0;
}

.team-slide:focus-visible {
  box-shadow: 0 0 0 3px rgba(239, 19, 56, 0.38), 0 34px 100px rgba(0, 0, 0, 0.48);
}

.team-slide.is-active:hover {
  border-color: transparent;
}

.team-controls {
  position: absolute;
  left: 0;
  top: calc(50% + min(25vw, 318px) + 18px);
  z-index: 8;
  display: flex;
  gap: 12px;
}

.team-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.78);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.team-arrow svg {
  width: 24px;
  height: 24px;
}

.team-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-arrow:hover,
.team-arrow:focus-visible {
  border-color: rgba(239, 19, 56, 0.8);
  background: rgba(239, 19, 56, 0.18);
  outline: 0;
  transform: translateY(-3px);
}

.team-arrow:focus-visible {
  box-shadow: 0 0 0 3px rgba(250, 250, 250, 0.54), 0 18px 42px rgba(0, 0, 0, 0.42);
}

.team-showcase-copy {
  max-width: 520px;
}

.team-showcase-copy h3 {
  margin: 12px 0 4px;
  color: var(--text);
  font-size: clamp(62px, 7vw, 108px);
  line-height: 0.88;
}

.team-showcase-role {
  margin: 0 0 26px;
  color: var(--accent);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.team-showcase-copy p:last-child {
  margin: 0;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.74;
}

.blog-page {
}

.blog-hero {
  position: relative;
  min-height: 1080px;
  overflow: hidden;
  display: grid;
  place-items: start center;
  padding: 322px 0 120px;
  background: linear-gradient(180deg, rgba(239, 19, 56, 0.1), rgba(5, 5, 6, 0) 32%);
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: -28% -10% auto;
  height: 720px;
  background: radial-gradient(ellipse at 50% 12%, rgba(239, 19, 56, 0.28), rgba(83, 0, 14, 0.12) 38%, rgba(5, 5, 6, 0) 72%);
  filter: blur(12px);
  pointer-events: none;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.08), #050506 78%);
  pointer-events: none;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.blog-hero h1 {
  max-width: 1120px;
  margin: 42px auto 26px;
  color: transparent;
  font-size: clamp(82px, 8vw, 128px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.blog-hero h1 span,
.blog-hero h1 strong {
  display: block;
  font-family: inherit;
  font-weight: 400;
}

.blog-hero h1 span {
  background: linear-gradient(180deg, #fafafa 0%, #949494 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.blog-hero h1 strong {
  color: var(--accent);
}

.blog-hero-copy {
  max-width: 760px;
  margin: 0 auto 26px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.blog-hero-points {
  justify-content: center;
}

.blog-list {
  padding: 0 0 178px;
  background: #050506;
}

.blog-list .container {
  width: min(1100px, calc(100vw - 48px));
}

.blog-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 28px;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(239, 19, 56, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-filter p {
  margin: 0;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-filter-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--muted-2);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.blog-filter button:hover,
.blog-filter button:focus-visible,
.blog-filter button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  outline: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.blog-card {
  position: relative;
  min-height: 340px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: rgba(239, 19, 56, 0.09);
  isolation: isolate;
}

.blog-card::before,
.blog-card::after {
  display: none;
}

.blog-card::before {
  left: -118px;
  top: -315px;
  transform: rotate(26deg);
}

.blog-card::after {
  right: -246px;
  top: 20px;
  transform: rotate(57deg);
}

.blog-card-media {
  aspect-ratio: 1200 / 630;
  flex: 0 0 auto;
  margin: 0 0 15px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0), rgba(5, 5, 6, 0.2)),
    url("blog/post-em-breve.webp") center / contain no-repeat;
}

.blog-card-media-post-cover {
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0), rgba(5, 5, 6, 0.2)),
    url("blog/como-escolher-agencia-marketing-saas-cover.webp") center / contain no-repeat;
}

.blog-card-media-landing-page-cover {
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0), rgba(5, 5, 6, 0.2)),
    url("blog/o-que-e-landing-page-saas-cover.webp") center / contain no-repeat;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 7px;
}

.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 5px 12.747px 6px;
  border-radius: 999px;
  background: #8e1026;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.743px;
  white-space: nowrap;
}

.blog-card-meta strong {
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.743px;
  white-space: nowrap;
}

article.blog-card .blog-card-meta strong {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 17px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12.747px;
  border: 1px solid #969696;
  border-radius: 8px;
  background: transparent;
  color: #969696;
  font-size: 9px;
  text-transform: uppercase;
}

article.blog-card {
  padding-bottom: 68px;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  width: 100%;
  margin-top: auto;
  padding: 5px 12.747px;
  border-radius: 8px;
  background: #fff;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.743px;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-card-link:hover .blog-card-cta,
.blog-card-link:focus-visible .blog-card-cta {
  background: var(--accent);
  color: #fff;
}
.blog-card h2,
.blog-card h3 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: 22.81px;
  line-height: 1;
  letter-spacing: 1.166px;
  text-transform: uppercase;
}

.blog-card-link {
  display: flex;
  text-decoration: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.blog-card-link:hover {
  transform: translateY(-6px);
  filter: brightness(1.06);
}

.blog-card.is-filtered-out,
.blog-card.is-page-hidden {
  display: none;
}

.blog-empty {
  margin: 36px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
  color: var(--muted-2);
}

.blog-pagination ol {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pagination a,
.blog-pagination-page,
.blog-pagination-arrow {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.blog-pagination a[aria-current="page"] {
  border-color: var(--accent);
  background: transparent;
  color: #fff;
}

.blog-pagination button {
  cursor: pointer;
}

.blog-pagination-page.is-active {
  border-color: var(--accent);
  background: transparent;
  color: #fff;
}

.blog-pagination a:hover,
.blog-pagination a:focus-visible,
.blog-pagination-page:hover,
.blog-pagination-page:focus-visible {
  border-color: var(--accent);
  background: rgba(239, 19, 56, 0.16);
  color: #fff;
  outline: none;
}

.blog-pagination-arrow {
  color: var(--accent-dark);
  font-size: 24px;
}

.blog-pagination-arrow:not(.is-disabled):hover,
.blog-pagination-arrow:not(.is-disabled):focus-visible {
  border-color: var(--accent);
  background: rgba(239, 19, 56, 0.16);
  color: #fff;
  outline: none;
}

.blog-pagination-arrow.is-disabled {
  opacity: 0.38;
  pointer-events: none;
}

.blog-pagination p {
  margin: 0 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-recent {
  padding: 0 0 168px;
  background: #050506;
}

.blog-recent .container {
  width: min(1100px, calc(100vw - 48px));
}

.blog-recent-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
  padding-top: 64px;
  border-top: 1px solid rgba(239, 19, 56, 0.3);
}

.blog-recent-heading .pill {
  margin: 0;
}

.blog-recent h2 {
  max-width: 560px;
  margin: 0;
  color: var(--text);
  font-size: clamp(52px, 5vw, 88px);
  line-height: 0.92;
  text-align: right;
  text-transform: uppercase;
}

.blog-recent-grid {
  align-items: stretch;
}

.post-page {
}

.post-hero {
  position: relative;
  min-height: 930px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 230px 0 138px;
  background: linear-gradient(180deg, rgba(239, 19, 56, 0.12), rgba(5, 5, 6, 0) 34%);
}

.post-hero::before {
  content: "";
  position: absolute;
  inset: -34% -12% auto;
  height: 680px;
  background: radial-gradient(ellipse at 50% 12%, rgba(239, 19, 56, 0.34), rgba(83, 0, 14, 0.12) 42%, rgba(5, 5, 6, 0) 76%);
  filter: blur(12px);
  pointer-events: none;
}

.post-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.08), #050506 86%);
  pointer-events: none;
}

.post-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-meta span:first-child {
  border-color: rgba(239, 19, 56, 0.78);
  background: rgba(239, 19, 56, 0.12);
  color: #fff;
}

.post-hero h1 {
  max-width: 1200px;
  margin: 42px auto 28px;
  font-size: clamp(78px, 7.6vw, 132px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.post-hero h1 span,
.post-hero h1 strong {
  display: block;
  font-family: inherit;
  font-weight: 400;
}

.post-hero h1 span {
  color: transparent;
  background: linear-gradient(180deg, #fafafa 0%, #949494 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.post-hero h1 strong {
  color: var(--accent);
}

.post-hero-copy {
  max-width: 690px;
  margin: 0;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.72;
  letter-spacing: 0.08em;
}

.post-article {
  padding: 0 0 125px;
  background: #050506;
}

.post-article-shell {
  overflow: visible;
  padding: clamp(22px, 2.7vw, 52px);
  border-top: 15px solid var(--accent);
  border-bottom: 15px solid var(--accent);
  border-radius: clamp(18px, 2.2vw, 32px);
  background: #111010;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.post-cover {
  margin: 0;
}

.post-cover-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  display: block;
  border-radius: clamp(14px, 1.6vw, 24px);
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.post-cover-visual {
  min-height: clamp(250px, 31vw, 562px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 18px);
  align-content: end;
  padding: clamp(18px, 3vw, 54px);
  border-radius: clamp(14px, 1.6vw, 24px);
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.02), rgba(5, 5, 6, 0.78)),
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 18% 80%, rgba(239, 19, 56, 0.45), transparent 20rem),
    linear-gradient(135deg, #ef1338, #8f071d 60%, #300007);
  color: rgba(255, 255, 255, 0.82);
}

.post-cover-visual span {
  min-height: clamp(76px, 9vw, 132px);
  display: flex;
  align-items: end;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 5, 6, 0.34);
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(36px, 5vw, 86px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.post-cover figcaption {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.post-layout {
  width: min(100%, 1088px);
  margin: clamp(54px, 6vw, 110px) auto 0;
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

.post-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.post-sidebar-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.post-sidebar-card p {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-sidebar-card nav {
  display: grid;
  gap: 2px;
}

.post-sidebar-card a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  transition: color 160ms ease, padding 160ms ease;
}

.post-sidebar-card a:last-child {
  border-bottom: 0;
}

.post-sidebar-card a:hover,
.post-sidebar-card a:focus-visible {
  color: #fff;
  padding-left: 6px;
  outline: none;
}

.post-sidebar-cta {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(239, 19, 56, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(239, 19, 56, 0.14), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
}

.post-sidebar-cta span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239, 19, 56, 0.16);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-sidebar-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.post-sidebar-cta p {
  margin: 0;
  color: var(--muted-2);
  font-size: 12.5px;
  line-height: 1.58;
  letter-spacing: 0.02em;
}

.post-sidebar-cta .btn {
  width: fit-content;
  margin-top: 2px;
}

.post-content {
  min-width: 0;
}

.post-content section + section {
  margin-top: clamp(54px, 5vw, 96px);
}

.post-content h2 {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.post-content p {
  max-width: 780px;
  margin: 0 0 14px;
  color: var(--muted-2);
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.72;
  letter-spacing: 0.015em;
}

.post-content .post-lead {
  color: #fff;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.58;
  letter-spacing: 0.01em;
}

.post-content p:last-child {
  margin-bottom: 0;
}

.post-content a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(239, 19, 56, 0.72);
  text-underline-offset: 5px;
}

.post-content ul {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.post-content li {
  position: relative;
  padding-left: 20px;
  color: var(--muted-2);
  font-size: clamp(14px, 0.92vw, 16px);
  line-height: 1.62;
  letter-spacing: 0.01em;
}

.post-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(239, 19, 56, 0.64);
}

.post-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 28px 0 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-content table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.post-content th,
.post-content td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted-2);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.015em;
  text-align: left;
}

.post-content th {
  color: #fff;
  background: rgba(239, 19, 56, 0.14);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-content td:first-child {
  color: #fff;
  font-weight: 700;
}

.post-content tr:last-child td {
  border-bottom: 0;
}

.post-faq-list {
  display: grid;
  gap: 12px;
}

.post-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.post-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.post-faq details p {
  padding: 0 18px 18px;
  font-size: 14px;
}

.post-cta {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(239, 19, 56, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(239, 19, 56, 0.18), rgba(255, 255, 255, 0.03));
}

.post-cta p {
  margin: 0 0 10px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-cta h2 {
  margin-bottom: 24px;
}

.post-share-nav {
  padding: 0 0 112px;
  background: #050506;
}

.post-share-nav-inner {
  width: min(1100px, calc(100vw - 48px));
}

.post-share-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}

.post-share-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.post-share-links span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.post-share-links a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: color 160ms ease, transform 160ms ease;
}

.post-share-links a:hover,
.post-share-links a:focus-visible {
  color: var(--accent);
  transform: translateY(-2px);
  outline: none;
}

.post-share-links svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}

.post-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 62px;
}

.post-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

a.post-nav-link {
  transition: color 160ms ease, transform 160ms ease;
}

a.post-nav-link:hover,
a.post-nav-link:focus-visible {
  color: var(--accent);
  outline: none;
}

a.post-nav-link:first-child:hover,
a.post-nav-link:first-child:focus-visible {
  transform: translateX(-4px);
}

a.post-nav-link:last-child:hover,
a.post-nav-link:last-child:focus-visible {
  transform: translateX(4px);
}

.post-nav-link span {
  color: var(--muted-2);
  font-size: 22px;
  line-height: 0;
}

.post-nav-link.is-disabled {
  color: rgba(255, 255, 255, 0.45);
}

.post-nav-link.is-disabled span {
  color: rgba(255, 255, 255, 0.38);
}

.post-blog-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(239, 19, 56, 0.36);
}

.post-blog-row h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.95;
  text-transform: uppercase;
}

.post-blog-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.post-blog-button:hover,
.post-blog-button:focus-visible {
  border-color: var(--accent);
  background: rgba(239, 19, 56, 0.16);
  color: var(--accent);
  outline: none;
}

.post-related {
  padding: 0 0 168px;
  background: #050506;
}

.post-related .container {
  width: min(1100px, calc(100vw - 48px));
}

.post-related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.post-related-heading .pill {
  margin: 0;
}

.post-related h2 {
  max-width: 560px;
  margin: 0;
  color: var(--text);
  font-size: clamp(52px, 5vw, 88px);
  line-height: 0.92;
  text-align: right;
  text-transform: uppercase;
}

.post-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.post-pagination {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
  color: var(--muted-2);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
}

.post-pagination span:first-child {
  color: var(--accent);
}

.contact-page {
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 300px 0 180px;
  min-height: 1080px;
  display: grid;
  align-items: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: -18% -12% auto;
  height: 620px;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 255, 255, 0.15), transparent 14%),
    radial-gradient(ellipse at 50% 12%, rgba(239, 19, 56, 0.38), rgba(239, 19, 56, 0.1) 40%, rgba(5, 5, 6, 0) 74%);
  filter: blur(12px);
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 5, 6, 0), #050506 92%);
  background-size: 92px 92px, 92px 92px, auto;
  pointer-events: none;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-copy h1,
.contact-faq h2 {
  margin: 34px 0 22px;
  font-size: clamp(72px, 5.9vw, 110px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-copy h1 span,
.contact-copy h1 strong {
  display: block;
  font-family: inherit;
  font-weight: 400;
}

.contact-copy h1 span {
  color: transparent;
  background: linear-gradient(180deg, #fafafa 0%, #949494 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.contact-copy h1 strong {
  color: var(--accent);
  font-size: clamp(62px, 4.8vw, 90px);
}

.contact-copy p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted-2);
  font-size: 13.2px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.contact-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-checks span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(239, 19, 56, 0.8);
}

.contact-main {
  padding: 80px 0 116px;
  background: #050506;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.contact-form {
  position: relative;
  width: 100%;
  display: grid;
  gap: 28px;
  justify-self: start;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018) 42%, rgba(239, 19, 56, 0.045)),
    #070708;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(239, 19, 56, 0.12));
}

.contact-form-head {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 620px;
}

.contact-form .eyebrow,
.contact-panel .eyebrow {
  margin-bottom: 0;
}

.contact-form-head h2 {
  margin: 0;
  max-width: 560px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.1vw, 72px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form-head p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.62;
  letter-spacing: 0.04em;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  min-width: 0;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: 500 14px/1.4 var(--font-body);
  letter-spacing: 0.02em;
  padding: 15px 16px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(250, 250, 250, 0.42);
}

.phone-field {
  min-height: 52px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.phone-field:focus-within {
  border-color: rgba(239, 19, 56, 0.82);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(239, 19, 56, 0.11);
}

.contact-form .phone-field select,
.contact-form .phone-field input {
  min-height: 50px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.country-select {
  position: relative;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.country-select-button {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--text);
  font: 700 22px/1 var(--font-body);
  letter-spacing: 0;
  padding: 0 12px;
  cursor: pointer;
  outline: none;
}

.country-select-menu {
  position: absolute;
  z-index: 15;
  top: calc(100% + 6px);
  left: 0;
  width: 66px;
  display: none;
  grid-template-columns: 1fr;
  gap: 2px;
  max-height: 226px;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  list-style: none;
  border: 1px solid rgba(239, 19, 56, 0.62);
  border-radius: var(--radius);
  background: #111113;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.country-select.is-open .country-select-menu {
  display: grid;
}

.country-select-menu li {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 140ms ease;
}

.country-select-menu li:hover,
.country-select-menu li:focus-visible,
.country-select-menu li.is-selected {
  background: var(--accent);
  outline: none;
}

.contact-form .phone-field input:focus {
  box-shadow: none;
}

.contact-form .phone-field {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
}

.contact-form .phone-field .country-select[hidden] {
  display: none;
}

.contact-form .phone-field .iti {
  width: 100%;
  display: block;
}

.contact-form .phone-field .iti__tel-input {
  width: 100%;
  min-height: 52px;
  padding-left: 104px !important;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  box-shadow: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form .phone-field .iti:focus-within .iti__tel-input {
  border-color: rgba(239, 19, 56, 0.82);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(239, 19, 56, 0.11);
}

.contact-form .phone-field .iti__selected-country {
  min-width: 88px;
  padding: 0 12px 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  transition: background 160ms ease;
}

.contact-form .phone-field .iti__selected-country:hover,
.contact-form .phone-field .iti__selected-country:focus-visible {
  background: rgba(255, 255, 255, 0.055);
}

.contact-form .phone-field .iti__dropdown-content {
  border: 1px solid rgba(239, 19, 56, 0.62);
  border-radius: var(--radius);
  background: #111113;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  color: var(--text);
}

.contact-form .phone-field .iti__search-input {
  min-height: 42px;
  margin: 0;
  padding-left: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: 600 13px/1.3 var(--font-body);
}

.contact-form .phone-field .iti__country-list {
  background: #111113;
  color: var(--text);
}

.contact-form .phone-field .iti__country {
  color: var(--text);
  font: 600 12px/1.3 var(--font-body);
  letter-spacing: 0.02em;
  padding: 9px 12px;
}

.contact-form .phone-field .iti__country:hover,
.contact-form .phone-field .iti__country.iti__highlight {
  background: var(--accent);
}

.contact-form .phone-field .iti__dial-code {
  color: rgba(250, 250, 250, 0.68);
}

.contact-form .phone-field .iti__country-name {
  color: var(--text);
}

.contact-form .phone-field .iti__arrow {
  border-top-color: var(--accent);
}

.contact-form .phone-field .iti__arrow--up {
  border-bottom-color: var(--accent);
}

.contact-select {
  position: relative;
}

.contact-select-button {
  position: relative;
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: 700 14px/1.4 var(--font-body);
  letter-spacing: 0.02em;
  text-align: left;
  padding: 15px 42px 15px 16px;
  cursor: pointer;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form .contact-select-button {
  width: 100%;
}

.contact-select-button::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--accent);
  transform: translateY(-30%);
}

.contact-select-button:hover,
.contact-select-button:focus-visible,
.contact-select.is-open .contact-select-button {
  border-color: rgba(239, 19, 56, 0.82);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(239, 19, 56, 0.11);
}

.contact-select[aria-invalid="true"] .contact-select-button {
  border-color: var(--accent);
}

.contact-select-menu {
  position: absolute;
  z-index: 12;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: none;
  max-height: 244px;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  list-style: none;
  border: 1px solid rgba(239, 19, 56, 0.62);
  border-radius: var(--radius);
  background: #111113;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.contact-select.is-open .contact-select-menu {
  display: grid;
}

.contact-select-menu li {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font: 600 12px/1.3 var(--font-body);
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: left;
  padding: 8px 11px;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}

.contact-select-menu li:hover,
.contact-select-menu li:focus-visible,
.contact-select-menu li.is-selected {
  background: var(--accent);
  color: #fff;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
  border-radius: var(--radius);
}

.contact-form select {
  appearance: none;
  color-scheme: dark;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.contact-form select option {
  background: #111113;
  color: var(--text);
}

.contact-form select option:checked,
.contact-form select option:hover {
  background: var(--accent);
  color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(239, 19, 56, 0.82);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(239, 19, 56, 0.11);
}

.contact-form > button {
  width: fit-content;
  min-height: 48px;
  margin-top: 0;
  padding: 14px 22px;
}

.contact-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 30px;
  justify-self: stretch;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016) 46%, rgba(239, 19, 56, 0.035)),
    #080809;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.contact-panel-section {
  display: grid;
  gap: 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.contact-panel-section:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-link-list {
  display: grid;
  gap: 8px;
}

.contact-panel-title,
.contact-link-label,
.contact-link-list p,
.contact-panel blockquote {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link-label {
  min-width: 0;
}

.contact-link-list a,
.contact-link-list p {
  margin: 0;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.3;
}

.contact-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.contact-link-list a:hover,
.contact-link-list a:focus-visible {
  border-color: rgba(239, 19, 56, 0.28);
  background: rgba(239, 19, 56, 0.08);
  color: var(--text);
  outline: none;
  transform: translateX(2px);
}

.contact-link-list p {
  width: fit-content;
  margin-top: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.contact-panel blockquote {
  width: 100%;
  margin: 0;
  padding: 26px 24px;
  border: 1px solid rgba(239, 19, 56, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(239, 19, 56, 0.12), rgba(239, 19, 56, 0.035)),
    rgba(255, 255, 255, 0.025);
  color: var(--muted-2);
  font-size: 13px;
  font-style: normal;
  line-height: 1.68;
  letter-spacing: 0.035em;
  align-items: flex-start;
}

.contact-panel blockquote .contact-icon {
  margin-top: 3px;
}

.contact-faq {
  padding: 56px 0 56px;
  background: #050506;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 469px) minmax(0, 628px);
  gap: 41px;
  align-items: center;
  justify-content: center;
}

.contact-faq .eyebrow {
  color: var(--accent);
}

.contact-faq h2 {
  margin: 0;
  color: transparent;
  background: linear-gradient(180deg, #fafafa, #949494);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-body);
  font-size: clamp(120px, 14vw, 242px);
  font-weight: 700;
  line-height: 0.91;
  text-transform: none;
}

.contact-faq-list {
  display: grid;
  gap: 15px;
}

.contact-faq-list details {
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  background: var(--card-strong);
  backdrop-filter: blur(11.9px);
  -webkit-backdrop-filter: blur(11.9px);
  overflow: hidden;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-faq-list details:hover,
.contact-faq-list details:focus-within {
  border-color: rgba(239, 19, 56, 0.76);
  background: rgba(239, 19, 56, 0.08);
}

.contact-faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 57px;
  padding: 10px 20px;
  color: #fff;
  font-size: 15.84px;
  font-weight: 700;
  letter-spacing: 1.166px;
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease;
}

.contact-faq-list summary::-webkit-details-marker {
  display: none;
}

.contact-faq-list summary::after {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.contact-faq-list summary:hover,
.contact-faq-list details:focus-within summary {
  color: var(--accent);
}

.contact-faq-list details[open] summary::after {
  transform: rotate(-135deg);
}

.contact-faq-list p {
  max-width: 620px;
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.service-page {
}

.service-hero {
  position: relative;
  min-height: 866px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 142px 0 96px;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: -34% -10% auto;
  height: 660px;
  background:
    radial-gradient(ellipse at 50% 14%, rgba(255, 255, 255, 0.15), transparent 15%),
    radial-gradient(ellipse at 50% 12%, rgba(239, 19, 56, 0.38), rgba(83, 0, 14, 0.12) 42%, rgba(5, 5, 6, 0) 74%);
  filter: blur(12px);
  pointer-events: none;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 5, 6, 0.04), #050506 92%);
  background-size: 92px 92px, 92px 92px, auto;
  pointer-events: none;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-hero h1 {
  max-width: 1120px;
  margin: 46px auto 30px;
  font-size: clamp(78px, 5.8vw, 110px);
  line-height: 1.18;
  letter-spacing: 0.011em;
  text-transform: uppercase;
}

.service-hero h1 span,
.service-hero h1 strong {
  display: block;
  font-family: inherit;
  font-weight: 400;
  padding-top: 0.16em;
  margin-top: -0.16em;
  overflow: visible;
}

.service-hero h1 span {
  color: transparent;
  background: linear-gradient(180deg, #fafafa, #949494);
  -webkit-background-clip: text;
  background-clip: text;
}

.service-hero h1 strong {
  color: var(--accent);
}

.service-hero-copy {
  max-width: 568px;
  margin: 0 auto 34px;
  color: var(--muted-2);
  font-size: 13.2px;
  line-height: 1.5;
  letter-spacing: 0.11em;
}

.service-points {
  justify-content: center;
}

.traffic-showcase {
  min-height: 1000px;
  padding: 0 0 118px;
  overflow: hidden;
}

.traffic-showcase-inner {
  display: grid;
  justify-items: center;
  gap: 62px;
}

.showcase-heading {
  display: grid;
  justify-items: center;
  gap: 34px;
  width: 100%;
  text-align: center;
}

.showcase-heading .pill {
  width: 222px;
}

.traffic-laptop {
  position: relative;
  width: min(101vw, 1132px);
  aspect-ratio: 1132 / 691;
}

.traffic-device {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.traffic-screen {
  position: absolute;
  z-index: 2;
  left: 8.86%;
  top: 1.73%;
  width: 82.26%;
  height: 86.54%;
  border-radius: 14px 14px 0 0;
  object-fit: cover;
}

.traffic-compare {
  padding: 88px 0 120px;
  background: #050506;
}

.traffic-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.traffic-problem h2 {
  max-width: 528px;
  margin: 14px 0 14px;
  color: transparent;
  background: linear-gradient(180deg, #fafafa, #949494);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(46px, 3vw, 55.55px);
  line-height: 1.03;
  letter-spacing: 0.021em;
  text-transform: uppercase;
}

.traffic-problem h2 strong {
  color: var(--accent);
  font-family: inherit;
  font-weight: 400;
}

.traffic-problem p,
.traffic-deliverables li {
  color: var(--muted-2);
  font-size: 13.2px;
  line-height: 1.5;
  letter-spacing: 0.11em;
}

.traffic-problem p {
  max-width: 528px;
  margin: 0;
}

.eyebrow-green {
  color: var(--accent);
}

.traffic-deliverables ul {
  display: grid;
  gap: 11px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.traffic-deliverables li {
  position: relative;
  padding-left: 23px;
  font-weight: 700;
  letter-spacing: 0.073em;
}

.traffic-deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(239, 19, 56, 0.36);
}

.traffic-process {
  position: relative;
  padding: 65px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(239, 19, 56, 0.62), rgba(142, 10, 29, 0.92) 34%, #8b0b1f 100%);
}

.traffic-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.4;
  pointer-events: none;
}

.traffic-process .container {
  position: relative;
  z-index: 1;
}

.process-heading {
  text-align: center;
}

.process-heading .eyebrow {
  color: #fafafa;
}

.process-heading h2 {
  margin: 10px 0 34px;
  color: var(--text);
  font-size: clamp(52px, 4.4vw, 67px);
  line-height: 1;
  letter-spacing: 0.021em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050506;
}

.process-grid article {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #050506;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.process-grid h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 22.81px;
  line-height: 1;
  letter-spacing: 0.051em;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13.2px;
  line-height: 1.5;
  letter-spacing: 0.11em;
}

.service-faq {
  padding-top: 82px;
}

.lp-hero {
  min-height: 920px;
  padding: 154px 0 116px;
}

.lp-hero-grid {
  position: relative;
  z-index: 1;
  width: min(1120px, var(--page-width));
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 28px;
  text-align: center;
}

.lp-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  display: grid;
  justify-items: center;
}

.lp-hero h1 {
  max-width: 980px;
  margin: 44px 0 26px;
  color: transparent;
  background: linear-gradient(180deg, #fafafa, #949494);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(68px, 5.7vw, 110px);
  line-height: 1.18;
  letter-spacing: 0.011em;
  text-transform: uppercase;
}

.lp-hero h1 span {
  display: block;
  font-family: inherit;
  padding-top: 0.16em;
  margin-top: -0.16em;
  overflow: visible;
}

.lp-hero h1 strong {
  color: var(--accent);
  font-family: inherit;
  font-weight: 400;
}

.lp-hero .service-hero-copy {
  margin: 0 0 34px;
  max-width: 730px;
  text-align: center;
}

.lp-hero .service-points {
  flex-wrap: nowrap;
  gap: clamp(22px, 2vw, 34px);
  justify-content: center;
  white-space: nowrap;
}

.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-left: 0;
}

.lp-hero-visual > img {
  position: absolute;
  left: -2%;
  top: 7%;
  width: min(84vw, 940px);
  max-width: none;
  filter: drop-shadow(0 34px 90px rgba(0, 0, 0, 0.55));
}

.lp-hero-visual .traffic-laptop {
  width: min(58vw, 860px);
  transform: translateX(6%);
}

.lp-showcase {
  min-height: 1019px;
  padding-top: 68px;
}

.mockup-carousel-track,
.mockup-slide {
  position: absolute;
  left: 8.86%;
  top: 1.73%;
  width: 82.26%;
  height: 86.54%;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.mockup-slide {
  inset: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  object-fit: cover;
  opacity: 0;
  transition: opacity 520ms ease;
}

.mockup-slide.is-active {
  opacity: 1;
}

.social-page {
}

.social-hero {
  min-height: 888px;
}

.social-hero::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.08), rgba(5, 5, 6, 0.56) 72%, #050506 100%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.72), rgba(5, 5, 6, 0.16) 50%, rgba(5, 5, 6, 0.72)),
    url("social/hero-bg.png") center / cover no-repeat;
  filter: blur(3px);
  transform: scale(1.02);
}

.social-hero::after {
  background:
    radial-gradient(circle at 50% 28%, rgba(239, 19, 56, 0.28), rgba(239, 19, 56, 0) 28rem),
    linear-gradient(180deg, rgba(5, 5, 6, 0.05), #050506 94%);
}

.social-hero .service-hero-inner {
  transform: translateY(-12px);
}

.social-hero .pill {
  width: 216px;
}

.social-hero .service-hero-copy {
  max-width: 718px;
}

.social-carousels {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(14px, 1.55vw, 24px);
  overflow: hidden;
  margin-top: -122px;
  padding: 0 0 92px;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0), #050506 26%),
    #050506;
}

.social-marquee-row {
  width: 100%;
  overflow: visible;
}

.social-marquee-track {
  display: flex;
  gap: clamp(14px, 1.4vw, 26px);
  width: max-content;
  will-change: transform;
}

.social-marquee-row.is-forward .social-marquee-track {
  animation: socialMarqueeForward 36s linear infinite;
}

.social-marquee-row.is-reverse .social-marquee-track {
  animation: socialMarqueeReverse 36s linear infinite;
}

.social-marquee-track img {
  width: clamp(360px, 41vw, 787px);
  aspect-ratio: 786.986 / 181.304;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.social-marquee-row:nth-child(1) .social-marquee-track,
.social-marquee-row:nth-child(3) .social-marquee-track {
  transform: translateX(-50%);
}

.social-marquee-row:nth-child(2) .social-marquee-track {
  transform: translateX(-18%);
}

.social-carousels:hover .social-marquee-track {
  animation-play-state: paused;
}

.social-compare {
  padding-top: 82px;
}

.design-hero {
  min-height: 843px;
}

.design-hero .pill {
  width: 184px;
  justify-content: center;
}

.design-hero h1 {
  max-width: 1120px;
}

.design-hero h1 strong em {
  color: transparent;
  background: linear-gradient(180deg, #fafafa, #949494);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
}

.design-compare {
  padding-top: 88px;
}

.design-process {
  padding-top: 65px;
}

.legal-page {
}

.legal-hero {
  min-height: 720px;
  background: linear-gradient(180deg, rgba(239, 19, 56, 0.1), rgba(5, 5, 6, 0) 32%) !important;
}

.legal-hero .hero-bg-video {
  opacity: 1;
}

.legal-content {
  padding: 0 0 146px;
  background: #050506;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 88px);
  align-items: start;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.legal-summary {
  position: sticky;
  top: 120px;
}

.legal-summary h2 {
  margin: 18px 0 20px;
  color: var(--text);
  font-size: clamp(48px, 5vw, 86px);
  line-height: 0.92;
  text-transform: uppercase;
}

.legal-summary p:last-child {
  margin: 0;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: 0.04em;
}

.legal-sections {
  display: grid;
  gap: 18px;
}

.legal-section {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.legal-section span {
  color: var(--accent);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 42px;
  line-height: 0.95;
}

.legal-section h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(30px, 2.7vw, 48px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-section p {
  margin: 0;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.legal-section p + p,
.legal-section p + .legal-list,
.legal-section .legal-list + h4,
.legal-section .legal-list + p {
  margin-top: 16px;
}

.legal-section h4 {
  margin: 24px 0 8px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-2);
  font-size: 14.5px;
  line-height: 1.65;
  letter-spacing: 0.035em;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.legal-list strong,
.legal-note strong {
  color: var(--text);
}

.legal-note {
  margin-top: 18px !important;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(239, 19, 56, 0.08);
}

.legal-signature {
  background: linear-gradient(97deg, rgba(239, 19, 56, 0.14) 3.2%, rgba(137, 11, 32, 0.16) 50.6%, rgba(239, 19, 56, 0.12) 98%);
  border-color: rgba(239, 19, 56, 0.34);
}

.legal-section a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(239, 19, 56, 0.7);
  text-underline-offset: 4px;
}

.blog-hero,
.post-hero,
.contact-hero,
.service-hero {
  background: #050506 !important;
}

.blog-hero::before,
.blog-hero::after,
.post-hero::before,
.post-hero::after,
.contact-hero::before,
.contact-hero::after,
.service-hero::before,
.service-hero::after {
  content: none !important;
}

.legal-hero::before {
  content: none !important;
  position: absolute;
  inset: -28% -10% auto;
  height: 720px;
  background: radial-gradient(ellipse at 50% 12%, rgba(239, 19, 56, 0.28), rgba(83, 0, 14, 0.12) 38%, rgba(5, 5, 6, 0) 72%);
  filter: blur(12px);
  pointer-events: none;
}

.legal-hero::after {
  content: none !important;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.08), #050506 78%);
  pointer-events: none;
}


.site-footer {
  border-top: 1px solid var(--line);
  background: #050506;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 0.8fr;
  gap: 48px;
}

.footer-logo-link {
  display: inline-block;
  margin: 34px 0 18px;
  max-width: 100%;
}

.footer-logo-link img {
  width: 475px;
  height: 77.334px;
  aspect-ratio: 475 / 77.334;
  display: block;
  object-fit: contain;
  max-width: 100%;
}

.footer-brand p,
.site-footer a,
.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 0 0 9px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

@media (max-width: 920px) {
  :root {
    --page-width: min(88vw, calc(100vw - 40px));
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .faq-copy {
    align-items: center;
    text-align: center;
  }

  .faq h2 {
    font-size: clamp(92px, 28vw, 180px);
    text-align: center;
  }

  .faq-list {
    width: 100%;
  }

  .hero {
    min-height: 820px;
  }

  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principles-grid article:nth-child(2n) {
    border-right: none;
  }

  .testimonial-grid,
  .faq-layout,
  .about-origin-grid,
  .about-team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-proof-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-proof-text {
    text-align: center;
    align-items: center;
  }

  .services-grid {
    gap: 24px;
  }

  .service-card {
    width: min(100%, 320px);
  }

  .hero h1 {
    font-size: clamp(76px, 14vw, 132px);
  }

  .hero-points {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .statement h2 {
    font-size: clamp(44px, 7vw, 68px);
  }

  .about h2,
  .section-heading h2,
  .cta h2 {
    font-size: clamp(42px, 7vw, 64px);
  }

  .proof-card {
    flex-direction: column;
    text-align: center;
  }

  .proof-copy {
    gap: 18px;
  }

  .proof-card p {
    letter-spacing: 0.06em;
  }

  .about-hero h1 {
    font-size: clamp(64px, 11vw, 102px);
  }

  .about-origin h2,
  .about-difference h2,
  .about-team h2 {
    font-size: clamp(58px, 10vw, 92px);
  }

  .about-origin-copy p,
  .about-team-copy p {
    font-size: 14px;
  }

  .blog-hero {
    min-height: 820px;
    padding-top: 250px;
  }

  .blog-hero h1 {
    font-size: clamp(76px, 13vw, 112px);
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-hero {
    min-height: 780px;
    padding-top: 210px;
  }

  .post-hero h1 {
    font-size: clamp(72px, 12vw, 112px);
  }

  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
  }

  .post-sidebar-card nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .post-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hero {
    min-height: 740px;
  }

  .traffic-showcase {
    min-height: auto;
  }

  .showcase-heading .service-points {
    width: 100%;
    row-gap: 14px;
  }

  .traffic-laptop {
    width: 100%;
  }

  .traffic-compare-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .lp-hero {
    min-height: auto;
  }

  .lp-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero h1,
  .lp-hero .service-hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-hero .service-points {
    justify-content: center;
  }

  .lp-hero-visual {
    justify-content: center;
    margin: 12px 0 0;
  }

  .lp-hero-visual > img {
    left: 50%;
    top: -10%;
    width: min(126vw, 900px);
    transform: translateX(-50%);
  }

  .lp-hero-visual .traffic-laptop {
    width: min(100%, 760px);
    transform: none;
  }

  .social-hero {
    min-height: 760px;
  }

  .social-carousels {
    margin-top: -82px;
    padding-bottom: 76px;
  }

  .social-marquee-track img {
    width: min(68vw, 620px);
  }

  .contact-hero {
    min-height: auto;
    padding: 164px 0 108px;
  }

  .contact-main-grid,
  .contact-faq-grid,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .home-blog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-summary {
    position: static;
    text-align: center;
  }

  .contact-copy h1 {
    font-size: clamp(66px, 12vw, 112px);
  }

  .contact-form {
    max-width: 720px;
    width: 100%;
  }

  .contact-panel {
    position: static;
    max-width: 720px;
  }

  .difference-list h3 {
    font-size: clamp(48px, 9vw, 76px);
  }

  .difference-list p {
    max-width: none;
  }

  .about-team {
    padding-bottom: 132px;
  }

  .team-showcase {
    grid-template-columns: 1fr;
    gap: 88px;
  }

  .team-showcase-stack {
    min-height: clamp(420px, 68vw, 610px);
  }

  .team-slide {
    left: 50%;
    width: min(70vw, 520px);
    transform: translate(calc(-50% + var(--slide-x)), calc(-50% + var(--slide-y))) scale(var(--slide-scale)) rotate(var(--slide-rotate));
  }

  .team-controls {
    left: 50%;
    top: calc(50% + min(34vw, 292px) + 18px);
    transform: translateX(-50%);
  }

  .team-showcase-copy {
    max-width: 620px;
    margin: 0 auto;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

@media (max-width: 1280px) and (min-width: 921px) {
  .about-origin-grid {
    width: min(1121px, calc(100vw - 48px));
    grid-template-columns: minmax(0, 362fr) minmax(0, 536fr);
    gap: clamp(48px, 10vw, 140px);
  }
}

@media (max-width: 720px) {
  :root {
    --page-width: min(92vw, calc(100vw - 32px));
  }

  .metrics-grid,
  .principles-grid,
  .testimonial-grid,
  .faq-layout,
  .about-origin-grid,
  .about-team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid article,
  .principles-grid article:nth-child(2n) {
    border-right: none;
  }

  .about-hero {
    min-height: 760px;
  }

  .about-origin {
    min-height: auto;
    padding-top: 122px;
  }

  .about-difference {
    padding: 128px 0 136px;
  }

  .about-team {
    padding: 128px 0 140px;
  }

  .difference-list article {
    grid-template-columns: 72px 1fr;
  }

  .team-showcase-stack {
    min-height: clamp(360px, 78vw, 560px);
  }

  .team-showcase {
    gap: 82px;
  }

  .team-slide {
    width: min(78vw, 470px);
  }

  .team-controls {
    top: calc(50% + min(39vw, 276px) + 18px);
  }

  .metrics-grid {
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .service-card {
    width: min(100%, 360px);
  }

  .blog-hero {
    min-height: 720px;
    padding: 208px 0 88px;
  }

  .blog-hero h1 {
    font-size: clamp(58px, 14vw, 86px);
  }

  .blog-hero-copy {
    max-width: 520px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-filter,
  .blog-recent-heading {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .blog-filter-list {
    justify-content: center;
  }

  .blog-recent h2 {
    text-align: center;
  }

  .blog-list {
    padding-bottom: 128px;
  }

  .home-blog {
    padding: 84px 0 96px;
  }

  .post-hero {
    min-height: 690px;
    padding: 176px 0 94px;
  }

  .post-hero h1 {
    font-size: clamp(58px, 13vw, 88px);
  }

  .post-hero-copy {
    max-width: 560px;
  }

  .post-article {
    padding-bottom: 104px;
  }

  .post-related {
    padding-bottom: 124px;
  }

  .post-share-nav {
    padding-bottom: 92px;
  }

  .post-share-row {
    flex-direction: column;
    margin-bottom: 48px;
  }

  .post-nav-row {
    margin-bottom: 46px;
  }

  .post-related-heading {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .post-related h2 {
    text-align: center;
  }

  .service-hero {
    padding: 136px 0 88px;
  }

  .social-carousels {
    margin-top: -58px;
  }

  .traffic-showcase {
    padding-bottom: 90px;
  }

  .traffic-compare {
    padding: 82px 0 96px;
  }

  .traffic-process {
    padding: 72px 0;
  }

  .contact-main {
    padding: 84px 0 88px;
  }

  .contact-faq {
    padding: 64px 0 64px;
  }

  .legal-content {
    padding-bottom: 108px;
  }

  .legal-shell {
    padding-top: 54px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-width: calc(100vw - 28px);
  }

  .container {
    width: min(var(--page-width), var(--max));
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand img {
    width: 141px;
    height: 22.956px;
    max-width: 42vw;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 110px;
  }

  .about-hero {
    min-height: 660px;
    padding: 118px 0 62px;
  }

  .blog-hero {
    min-height: 650px;
    padding: 158px 0 80px;
  }

  .blog-hero h1 {
    font-size: clamp(48px, 17vw, 70px);
    line-height: 1.02;
  }

  .blog-hero-copy {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .blog-hero-points {
    flex-direction: column;
    align-items: center;
  }

  .about-hero h1 {
    font-size: clamp(58px, 17vw, 88px);
  }

  .about-origin h2,
  .about-difference h2,
  .about-team h2 {
    font-size: clamp(48px, 14vw, 74px);
  }

  .about-origin,
  .about-difference,
  .about-team {
    padding-top: 96px;
  }

  .about-difference,
  .about-team {
    padding-bottom: 108px;
  }

  .about-portraits {
    margin-top: 42px;
    padding: 0;
  }

  .about-portraits-row {
    height: auto;
  }

  .difference-list {
    margin-top: 46px;
  }

  .difference-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .difference-list h3 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .team-showcase {
    gap: 86px;
  }

  .team-showcase-stack {
    min-height: clamp(318px, 86vw, 430px);
  }

  .team-slide {
    width: min(80vw, 332px);
  }

  .team-controls {
    top: calc(50% + min(43vw, 214px) + 16px);
  }

  .team-arrow {
    width: 46px;
  }

  .team-showcase-copy {
    max-width: 100%;
  }

  .team-showcase-copy h3 {
    font-size: clamp(42px, 15vw, 58px);
  }

  .team-showcase-role {
    font-size: clamp(28px, 10vw, 38px);
  }

  .blog-list {
    padding-bottom: 96px;
  }

  .blog-filter button {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .blog-recent {
    padding-bottom: 112px;
  }

  .blog-recent-heading {
    padding-top: 48px;
  }

  .home-blog {
    padding: 72px 0 84px;
  }

  .home-blog-heading {
    align-items: center;
    text-align: center;
  }

  .blog-card {
    min-height: 340px;
    padding: 20px;
  }

  article.blog-card {
    padding-bottom: 68px;
  }

  .blog-card h2,
  .blog-card h3 {
    max-width: none;
    font-size: clamp(22px, 7vw, 30px);
  }

  .blog-pagination {
    flex-wrap: wrap;
    gap: 10px;
  }

  .blog-pagination p {
    flex: 0 0 100%;
    margin: 4px 0 0;
    text-align: center;
  }

  .post-hero {
    min-height: 620px;
    padding: 146px 0 74px;
  }

  .post-hero h1 {
    font-size: clamp(48px, 16vw, 72px);
    line-height: 1.02;
  }

  .post-hero-copy {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .post-article-shell {
    border-top-width: 10px;
    border-bottom-width: 10px;
  }

  .post-cover-visual {
    min-height: 238px;
    grid-template-columns: 1fr;
  }

  .post-cover-visual span {
    min-height: 66px;
  }

  .post-sidebar-card nav {
    grid-template-columns: 1fr;
  }

  .post-content h2 {
    font-size: clamp(30px, 9vw, 42px);
    text-align: center;
  }

  .post-content p {
    font-size: 14.5px;
    line-height: 1.68;
    letter-spacing: 0.01em;
  }

  .post-content .post-lead {
    font-size: 16px;
  }

  .post-card-grid {
    grid-template-columns: 1fr;
  }

  .post-share-nav-inner {
    width: min(var(--page-width), var(--max));
  }

  .post-share-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .post-share-links span {
    flex: 0 0 100%;
    text-align: center;
  }

  .post-nav-link {
    gap: 7px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .post-nav-link span {
    font-size: 18px;
  }

  .post-blog-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .post-pagination {
    margin-top: 34px;
  }

  .service-hero {
    min-height: 640px;
    padding: 124px 0 74px;
  }

  .social-hero {
    min-height: 690px;
  }

  .service-hero h1 {
    font-size: clamp(54px, 17vw, 76px);
    line-height: 1.18;
  }

  .legal-hero {
    min-height: 560px;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
    text-align: center;
  }

  .legal-section span {
    font-size: 34px;
  }

  .legal-section p {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .lp-hero h1 {
    font-size: clamp(48px, 15vw, 74px);
    line-height: 1.18;
  }

  .lp-hero {
    padding-top: 118px;
  }

  .lp-hero-visual {
    margin-top: 22px;
  }

  .lp-hero-visual > img {
    width: 160vw;
    top: -12%;
  }

  .service-hero-copy {
    max-width: 342px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .service-points {
    flex-direction: column;
    align-items: center;
  }

  .social-carousels {
    gap: 12px;
    margin-top: -34px;
    padding-bottom: 62px;
  }

  .social-marquee-track {
    gap: 12px;
  }

  .social-marquee-track img {
    width: 78vw;
  }

  .showcase-heading {
    gap: 26px;
  }

  .traffic-compare-grid {
    text-align: center;
  }

  .traffic-problem h2 {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(40px, 12vw, 56px);
  }

  .traffic-problem p {
    margin-left: auto;
    margin-right: auto;
  }

  .traffic-deliverables li {
    padding-left: 0;
  }

  .traffic-deliverables li::before {
    position: static;
    display: inline-block;
    margin-right: 10px;
    vertical-align: -1px;
  }

  .process-heading h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .process-grid article {
    min-height: auto;
  }

  .contact-hero {
    padding: 132px 0 86px;
    min-height: 650px;
  }

  .contact-copy,
  .contact-faq-grid > div:first-child {
    text-align: center;
  }

  .contact-copy h1 {
    font-size: clamp(46px, 14vw, 72px);
    line-height: 1.02;
  }

  .contact-copy h1 strong {
    font-size: clamp(40px, 12vw, 62px);
  }

  .contact-copy p {
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }

  .contact-checks {
    justify-content: center;
  }

  .contact-form {
    justify-self: center;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
  }

  .contact-main {
    padding: 64px 0 68px;
  }

  .contact-faq {
    padding: 52px 0 52px;
  }

  .contact-faq h2 {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(92px, 28vw, 180px);
    line-height: 0.91;
    text-align: center;
  }

  .contact-faq-list summary {
    align-items: flex-start;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(52px, 14vw, 76px);
  }

  .about-hero h1 {
    max-width: min(100%, 320px);
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.02;
  }

  .about-hero-inner {
    text-align: center;
  }

  .about-origin h2,
  .about-difference h2,
  .about-team h2 {
    font-size: clamp(36px, 9.8vw, 48px);
    line-height: 1;
    text-align: center;
  }

  .about-origin .eyebrow {
    max-width: 100%;
    white-space: normal;
    width: auto;
  }

  .about-origin-copy,
  .about-team-copy,
  .team-showcase-copy {
    text-align: center;
  }

  .about-origin-copy .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .metrics p {
    font-size: 15px;
  }

  .metrics strong {
    font-size: 84px;
  }

  .about-metric strong {
    font-size: clamp(44px, 11vw, 64px);
  }

  .about-proof .proof-ring {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }

  .about-proof .proof-ring span {
    font-size: 22px;
  }

  .section {
    padding: 76px 0;
  }

  .cta {
    padding: 56px 0 64px;
  }

  .services {
    min-height: auto;
  }

  .service-card {
    width: 100%;
    height: auto;
    min-height: 270px;
  }

  .footer-logo-link img {
    width: 475px;
    height: 77.334px;
    max-width: 100%;
  }

  .faq-list summary {
    align-items: flex-start;
    font-size: 14px;
    white-space: normal;
  }
}

@media (max-width: 920px) {
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .statement {
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .principles,
  .services,
  .about,
  .faq,
  .home-blog,
  .blog-list,
  .blog-recent,
  .post-article,
  .post-related,
  .post-share-nav,
  .traffic-compare,
  .traffic-process,
  .contact-main,
  .contact-faq,
  .service-faq,
  .about-origin,
  .about-difference,
  .about-team {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .home-blog .blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-blog .blog-card {
    min-height: auto;
  }

  .faq h2,
  .contact-faq h2 {
    font-size: clamp(77px, calc(28vw - 15px), 165px);
  }

  .footer-grid,
  .footer-brand,
  .site-footer .container,
  .site-footer .container > div {
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .site-footer .container > div {
    display: grid;
    justify-content: center;
  }

  .footer-logo-link {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo-link img {
    width: min(450px, calc(100vw - 56px));
    height: auto;
  }

  .site-footer a {
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .difference-list h3 {
    font-size: clamp(36px, 8vw, 52px);
    line-height: 0.98;
  }

  .about-difference .eyebrow,
  .about-origin .eyebrow,
  .principles-heading .eyebrow {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .statement {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .principles,
  .services,
  .about,
  .faq,
  .home-blog,
  .blog-list,
  .blog-recent,
  .post-article,
  .post-related,
  .post-share-nav,
  .traffic-compare,
  .traffic-process,
  .contact-main,
  .contact-faq,
  .service-faq,
  .about-origin,
  .about-difference,
  .about-team {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .home-blog-heading {
    margin-bottom: 32px;
  }

  .home-blog .blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog .blog-card {
    width: 100%;
    min-height: auto;
  }

  .home-blog .blog-card h2,
  .home-blog .blog-card h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .faq h2,
  .contact-faq h2 {
    font-size: clamp(77px, calc(28vw - 15px), 165px);
  }

  .site-footer {
    padding-top: 42px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-brand p,
  .site-footer a,
  .footer-bottom p {
    text-align: center;
  }

  .availability {
    justify-self: center;
  }

  .difference-list {
    margin-top: 34px;
  }

  .difference-list h3 {
    font-size: clamp(34px, 9.4vw, 44px);
  }

  .about-difference .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
}

@keyframes topLight {
  from {
    opacity: 0.72;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(18px);
  }
}

@keyframes caretBlink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@keyframes heroGlowMove {
  from {
    transform: translateX(-52%) translateY(0) scale(1);
  }

  to {
    transform: translateX(-48%) translateY(34px) scale(1.06);
  }
}

@keyframes aboutGradShift {
  0% {
    --agl-x: 30%;
    --agl-y: 35%;
    --agr-x: 70%;
    --agr-y: 25%;
  }

  25% {
    --agl-x: 62%;
    --agl-y: 18%;
    --agr-x: 22%;
    --agr-y: 62%;
  }

  50% {
    --agl-x: 45%;
    --agl-y: 58%;
    --agr-x: 78%;
    --agr-y: 38%;
  }

  75% {
    --agl-x: 18%;
    --agl-y: 28%;
    --agr-x: 58%;
    --agr-y: 72%;
  }

  100% {
    --agl-x: 30%;
    --agl-y: 35%;
    --agr-x: 70%;
    --agr-y: 25%;
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes socialMarqueeForward {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes socialMarqueeReverse {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== SERVICES — split layout with carousel ===== */

.services-inner.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 5vw, 80px);
  align-items: center;
}

.services-col-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.services-split .services-heading {
  text-align: left;
  max-width: none;
  margin-bottom: 0;
}

.services-split .services-heading .eyebrow {
  color: var(--accent);
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Card horizontal no contexto de lista */
.services-stack .service-card {
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  height: auto;
  min-height: auto;
  padding: 18px 20px;
}

.services-stack .service-card .service-icon {
  flex: 0 0 auto;
  margin-top: 2px;
}

.service-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.services-stack .service-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
}

.services-stack .service-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.services-stack .service-more {
  margin-top: 4px;
}

.services-col-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-col-carousel .team-showcase {
  display: block;
  width: 100%;
}

@media (max-width: 920px) {
  .services-inner.services-split {
    grid-template-columns: 1fr;
  }

  .services-col-carousel {
    order: -1;
  }
}

@media (max-width: 560px) {
  .services-stack .service-card {
    min-height: auto;
    padding: 14px 16px;
  }
}

/* ===== Internal page hero title scale ===== */

:root {
  --internal-hero-title-size: clamp(68px, 5.8vw, 110px);
  --internal-hero-title-line: 1.18;
}

.about-hero h1,
.blog-hero h1,
.post-hero h1,
.contact-copy h1,
.service-hero h1,
.lp-hero h1 {
  font-size: var(--internal-hero-title-size);
  line-height: var(--internal-hero-title-line);
}

.contact-copy h1 strong {
  font-size: inherit;
  line-height: inherit;
}

.about-hero h1 span,
.blog-hero h1 span,
.blog-hero h1 strong,
.post-hero h1 span,
.post-hero h1 strong,
.contact-copy h1 span,
.contact-copy h1 strong,
.service-hero h1 span,
.service-hero h1 strong,
.lp-hero h1 span {
  padding-top: 0.16em;
  margin-top: -0.16em;
  overflow: visible;
}

@media (max-width: 920px) {
  :root {
    --internal-hero-title-size: clamp(64px, 12vw, 102px);
  }
}

@media (max-width: 720px) {
  :root {
    --internal-hero-title-size: clamp(58px, 13vw, 88px);
  }
}

@media (max-width: 560px) {
  :root {
    --internal-hero-title-size: clamp(48px, 15vw, 74px);
  }
}

@media (max-width: 920px) {
  .principles-heading {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-items: center;
  }

  .principles-heading h2 {
    max-width: min(640px, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .principles-heading .eyebrow,
  .services-heading .eyebrow,
  .showcase-heading .eyebrow,
  .traffic-deliverables .eyebrow {
    width: 100%;
    text-align: center;
  }

  .service-points {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .service-points li {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .traffic-deliverables ul {
    justify-items: start;
    text-align: left;
  }

  .traffic-deliverables li {
    width: 100%;
    max-width: 620px;
    text-align: left;
  }

  .about-origin {
    padding-top: 32px;
  }

  .about-origin-grid {
    gap: 34px;
  }

  .post-table-wrap {
    overflow-x: visible;
  }

  .post-content table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }

  .post-content th,
  .post-content td {
    padding: 11px 10px;
    font-size: 11.5px;
    letter-spacing: 0.01em;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .post-content th {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .post-content p,
  .post-content li {
    text-align: center;
  }

  .post-content ul {
    justify-items: center;
  }

  .post-content li {
    max-width: 720px;
  }

  .post-cta {
    text-align: center;
  }

  .post-cta .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .post-blog-row {
    align-items: center;
    text-align: center;
  }

  .post-blog-button {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .principles {
    padding-top: 42px;
  }

  .principles-heading {
    text-align: center;
  }

  .principles-heading h2 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .services-heading .eyebrow,
  .showcase-heading .eyebrow,
  .traffic-deliverables .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .service-points {
    width: min(100%, 342px);
    margin-left: auto;
    margin-right: auto;
  }

  .traffic-deliverables ul {
    width: min(100%, 390px);
    margin-left: auto;
    margin-right: auto;
  }

  .traffic-deliverables li {
    padding-left: 0;
    text-align: left;
  }

  .about-hero {
    min-height: 620px;
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .about-hero h1 {
    max-width: min(100%, 430px);
    font-size: clamp(36px, 12.2vw, 56px);
    line-height: 1.04;
  }

  .about-hero h1 span {
    display: inline;
  }

  .about-hero h1 span::after {
    content: " ";
  }

  .about-hero h1 span:last-child::after {
    content: "";
  }

  .about-origin {
    padding-top: 24px;
  }

  .about-origin-grid {
    gap: 28px;
  }

  .post-content p,
  .post-content .post-lead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .post-content li {
    padding-left: 0;
  }

  .post-content li::before {
    position: static;
    display: inline-block;
    margin-right: 10px;
    vertical-align: 2px;
  }

  .post-table-wrap {
    border-radius: 6px;
  }

  .post-content th,
  .post-content td {
    padding: 9px 6px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .post-content th {
    font-size: 8px;
    letter-spacing: 0.05em;
  }

  .post-content table th:first-child,
  .post-content table td:first-child {
    width: 31%;
  }

  .post-content table th:not(:first-child),
  .post-content table td:not(:first-child) {
    width: auto;
  }

  .post-cta {
    display: grid;
    justify-items: center;
  }
}

@media (max-width: 920px) {
  .service-hero .service-points,
  .lp-hero .service-points {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .service-hero .service-points li,
  .lp-hero .service-points li {
    width: auto;
    justify-content: center;
    text-align: center;
  }

  .traffic-deliverables ul {
    justify-items: start;
    text-align: left;
  }

  .traffic-deliverables li {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .service-hero .service-points,
  .lp-hero .service-points {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 920px) {
  .services-heading {
    align-items: center;
    text-align: center;
  }

  .services-heading h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .about-hero .hero-points,
  .about-hero-points {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .about-hero .hero-points li,
  .about-hero-points li {
    width: auto;
    justify-content: center;
    text-align: center;
  }

  .faq h2,
  .contact-faq h2 {
    font-size: clamp(48px, 14vw, 90px);
  }

  .footer-logo-link img {
    width: min(238px, calc(100vw - 56px));
    height: auto;
  }
}

@media (max-width: 560px) {
  .services-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .about-hero .hero-points,
  .about-hero-points {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq h2,
  .contact-faq h2 {
    font-size: clamp(46px, 14vw, 82px);
  }

  .footer-logo-link img {
    width: min(238px, calc(100vw - 56px));
  }
}
