:root {
  --navy: #002744;
  --navy-deep: #001d33;
  --orange: #ffa400;
  --orange-dark: #d88700;
  --white: #ffffff;
  --paper: #f7f4ed;
  --mist: #e8eef2;
  --ink: #122231;
  --muted: #607080;
  --line: rgba(18, 34, 49, 0.14);
  --shadow: 0 22px 60px rgba(0, 29, 51, 0.18);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section-band {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: rgba(0, 39, 68, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 29, 51, 0.96);
  box-shadow: 0 14px 34px rgba(0, 29, 51, 0.22);
}

.brand img {
  width: 138px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.82);
}

.nav-menu a:hover {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  min-height: 100vh;
  padding: 132px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 29, 51, 0.92), rgba(0, 39, 68, 0.74)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 22px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--orange-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 6vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--navy-deep);
  background: var(--orange);
}

.btn-primary:hover {
  background: #ffb42a;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  border-color: var(--orange);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hero-metrics dt {
  color: var(--orange);
  font-size: 1.45rem;
  font-weight: 950;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.hero-visual {
  min-height: 520px;
  display: grid;
  align-items: center;
  justify-items: center;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(88%, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 164, 0, 0.32);
  border-radius: 50%;
}

.symbol {
  position: relative;
  z-index: 1;
  width: min(78%, 390px);
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.28));
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 38px;
  width: min(310px, 84%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 29, 51, 0.84);
  box-shadow: var(--shadow);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.35;
}

.intro-strip {
  background: var(--orange);
  color: var(--navy-deep);
}

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

.strip-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-weight: 950;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.plan-card,
.process article,
.seo-panel,
.proof-list div,
.faq-list details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 29, 51, 0.06);
}

.service-card {
  min-height: 300px;
  padding: 30px;
}

.contact-form .consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.contact-form .consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.contact-form .consent-check a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}


.authority-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.authority-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.authority-grid div {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 29, 51, 0.06);
}

.authority-grid strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.authority-grid span {
  margin-top: 10px;
  color: var(--muted);
}

.strategy-section {
  padding: 92px 0;
}

.strategy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 29, 51, 0.98), rgba(0, 39, 68, 0.9)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 24px);
}

.strategy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.strategy-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.strategy-list {
  display: grid;
  gap: 14px;
}

.strategy-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  row-gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.strategy-list span {
  grid-row: span 2;
  color: var(--orange);
  font-weight: 950;
}

.strategy-list strong {
  color: var(--white);
  font-size: 1.08rem;
}

.strategy-list p {
  margin-bottom: 0;
}

.card-index {
  display: inline-block;
  margin-bottom: 64px;
  color: var(--orange-dark);
  font-weight: 950;
}

.service-card p,
.process p,
.plan-card p,
.proof-copy p,
.faq-list p {
  color: var(--muted);
}

.service-card a,
.stack-grid a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 950;
}

.service-card a:hover,
.stack-grid a:hover {
  color: var(--blue);
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-links-wide {
  margin-top: 28px;
}

.service-links a {
  border: 1px solid rgba(47, 107, 255, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--white);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(0, 29, 51, 0.06);
}

.service-links a:hover {
  border-color: rgba(255, 154, 0, 0.45);
  background: rgba(255, 154, 0, 0.08);
}

.seo-section {
  padding: 92px 0;
}

.seo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 29, 51, 0.98), rgba(0, 39, 68, 0.86)),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 164, 0, 0.14) 48% 52%, transparent 52% 100%);
}

.seo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 58px;
  align-items: start;
}

.seo-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.seo-panel {
  padding: 30px;
  color: var(--ink);
}

.seo-panel ul,
.plan-card ul {
  padding-left: 20px;
  margin: 18px 0 0;
}

.seo-panel li,
.plan-card li {
  margin-bottom: 11px;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.process article {
  min-height: 220px;
  padding: 26px;
  counter-increment: steps;
}

.process article::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 40px;
  color: var(--orange-dark);
  font-weight: 950;
}

.plans-section {
  background: #eef2f3;
}

.plan-card {
  position: relative;
  padding: 30px;
}

.plan-card.featured {
  border-color: rgba(255, 164, 0, 0.8);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.plan-card.featured p,
.plan-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.plan-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy-deep);
  background: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
}

.plan-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--orange-dark);
  font-weight: 950;
}

.plan-card.featured a {
  color: var(--orange);
}

.service-stack {
  padding-top: 72px;
}

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

.stack-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 29, 51, 0.06);
}

.stack-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.stack-grid li {
  margin-bottom: 10px;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof-list div {
  padding: 24px;
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list span {
  margin-top: 6px;
  color: var(--muted);
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 159, 10, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 20%, rgba(47, 114, 255, 0.18), transparent 28rem),
    linear-gradient(135deg, #041022 0%, #061a35 48%, #020812 100%);
}

.portfolio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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: 44px 44px;
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 72%);
}

.portfolio-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 38px;
}

.portfolio-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.portfolio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid rgba(92, 139, 255, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(10, 27, 55, 0.96), rgba(4, 12, 26, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(255, 159, 10, 0.16), transparent 34%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(255, 159, 10, 0.62);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 159, 10, 0.18),
    0 0 44px rgba(47, 114, 255, 0.2);
}

.portfolio-card:hover .portfolio-screen,
.portfolio-card:focus-within .portfolio-screen {
  filter: saturate(1.12) contrast(1.04);
}

.portfolio-preview {
  padding: 16px;
}

.portfolio-browser {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: rgba(3, 10, 22, 0.78);
}

.portfolio-browser span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.portfolio-browser span:first-child {
  background: var(--orange);
}

.portfolio-browser span:nth-child(2) {
  background: #2f72ff;
}

.portfolio-screen {
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(135deg, rgba(47, 114, 255, 0.22), rgba(255, 159, 10, 0.14)),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 7rem),
    #071a34;
}

.portfolio-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 560ms var(--motion-ease), filter 420ms ease;
}

.portfolio-card:hover .portfolio-screen img,
.portfolio-card:focus-within .portfolio-screen img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.portfolio-card-dass .portfolio-screen {
  background:
    linear-gradient(135deg, rgba(255, 159, 10, 0.24), rgba(47, 114, 255, 0.14)),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.16), transparent 7rem),
    #081b24;
}

.portfolio-card-wdantas .portfolio-screen {
  background:
    linear-gradient(135deg, rgba(47, 114, 255, 0.28), rgba(13, 198, 156, 0.1)),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.18), transparent 7rem),
    #071a38;
}

.portfolio-card-nreceita .portfolio-screen {
  background:
    linear-gradient(135deg, rgba(17, 197, 130, 0.2), rgba(255, 159, 10, 0.16)),
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.16), transparent 7rem),
    #071e2a;
}

.portfolio-screen strong,
.portfolio-screen em,
.portfolio-screen i {
  display: block;
}

.portfolio-screen strong {
  max-width: 78%;
  color: var(--white);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  font-weight: 950;
  line-height: 1;
}

.portfolio-screen em {
  margin: 8px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 800;
}

.portfolio-screen i {
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.portfolio-screen i:nth-of-type(1) {
  width: 86%;
}

.portfolio-screen i:nth-of-type(2) {
  width: 64%;
}

.portfolio-screen i:nth-of-type(3) {
  width: 46%;
  background: linear-gradient(90deg, var(--orange), #2f72ff);
}

.portfolio-content {
  display: flex;
  flex-direction: column;
  padding: 6px 24px 26px;
}

.portfolio-tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 159, 10, 0.35);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 159, 10, 0.08);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-content h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.42rem;
}

.portfolio-content p,
.portfolio-content li {
  color: rgba(255, 255, 255, 0.72);
}

.portfolio-content ul {
  margin: 18px 0 24px;
  padding-left: 19px;
}

.portfolio-content li {
  margin-bottom: 9px;
}

.portfolio-content a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(255, 159, 10, 0.45);
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 159, 10, 0.92), rgba(47, 114, 255, 0.88));
  background-size: 100% 100%;
  background-position: 0 50%;
  font-weight: 950;
  transition: transform 180ms ease, background-position 420ms var(--motion-ease), box-shadow 180ms ease;
}

.portfolio-content a:hover,
.portfolio-content a:focus-visible {
  background-position: 100% 50%;
  box-shadow: 0 16px 30px rgba(47, 107, 255, 0.24), 0 8px 20px rgba(240, 160, 30, 0.16);
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .portfolio-section {
    padding: 72px 0;
  }

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

  .portfolio-screen {
    min-height: 164px;
  }

  .portfolio-content {
    padding: 4px 20px 22px;
  }
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
}

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

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact {
  padding: 92px 0;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 29, 51, 0.94), rgba(0, 39, 68, 0.78)),
    url("assets/dyvisson-logo-transparent.png") right 8% center / min(520px, 70vw) auto no-repeat;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 58px;
  align-items: start;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-links a {
  width: fit-content;
  color: var(--orange);
  font-weight: 900;
}

.contact-channel {
  display: inline-grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 48px;
  text-align: left;
}

.channel-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 154, 0, 0.34);
  border-radius: 999px;
  background: rgba(255, 154, 0, 0.14);
  color: #ff9a00;
  flex: 0 0 auto;
}

.channel-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.channel-text {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.contact-form {
  padding: 30px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfbf8;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.form-note {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid img {
  width: 150px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--orange);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.page-hero {
  padding: 146px 0 82px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 29, 51, 0.96), rgba(0, 39, 68, 0.82)),
    url("assets/dyvisson-logo-transparent.png") right 8% center / min(520px, 70vw) auto no-repeat;
}

.traffic-hero {
  min-height: 530px;
  display: flex;
  align-items: center;
}

.traffic-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.97) 0%, rgba(2, 6, 17, 0.9) 34%, rgba(2, 18, 39, 0.62) 68%, rgba(2, 6, 17, 0.38) 100%),
    radial-gradient(circle at 72% 52%, rgba(47, 107, 255, 0.32), transparent 28rem),
    url("assets/hero-trafego-pago-bg.webp") center right / cover no-repeat;
}

.traffic-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent, rgba(2, 6, 17, 0.72)),
    repeating-linear-gradient(90deg, rgba(82, 124, 255, 0.08) 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.traffic-hero .container {
  max-width: 1120px;
}

.traffic-hero h1 {
  max-width: 780px;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.46);
}

.traffic-hero p:not(.eyebrow) {
  max-width: 650px;
  color: #dce6ff;
}

.about-hero,
.sites-hero,
.landing-hero,
.ecommerce-hero,
.seo-service-hero,
.contact-hero {
  min-height: 530px;
  display: flex;
  align-items: center;
}

.about-hero::before,
.sites-hero::before,
.landing-hero::before,
.ecommerce-hero::before,
.seo-service-hero::before,
.contact-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.97) 0%, rgba(2, 6, 17, 0.9) 36%, rgba(2, 18, 39, 0.58) 72%, rgba(2, 6, 17, 0.34) 100%),
    radial-gradient(circle at 72% 48%, rgba(47, 107, 255, 0.26), transparent 28rem),
    var(--hero-bg) center right / cover no-repeat;
}

.about-hero::after,
.sites-hero::after,
.landing-hero::after,
.ecommerce-hero::after,
.seo-service-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent, rgba(2, 6, 17, 0.7)),
    repeating-linear-gradient(90deg, rgba(82, 124, 255, 0.07) 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.about-hero {
  --hero-bg: url("assets/hero-quem-somos-bg.webp");
}

.sites-hero {
  --hero-bg: url("assets/hero-criacao-sites-bg.webp");
}

.landing-hero {
  --hero-bg: url("assets/hero-landing-page-bg.webp");
}

.ecommerce-hero {
  --hero-bg: url("assets/hero-loja-virtual-bg.webp");
}

.seo-service-hero {
  --hero-bg: url("assets/hero-seo-local-bg.webp");
}

.contact-hero {
  --hero-bg: url("assets/hero-contato-bg.webp");
}

.blog-hero {
  --hero-bg: url("assets/hero-blog-editorial-bg.webp");
}

.legal-hero {
  --hero-bg: url("assets/hero-privacidade-bg.webp");
}

.privacy-hero {
  --hero-bg: url("assets/hero-privacidade-bg.webp");
}

.terms-hero {
  --hero-bg: url("assets/hero-termos-bg.webp");
}

.about-hero h1,
.sites-hero h1,
.landing-hero h1,
.ecommerce-hero h1,
.seo-service-hero h1,
.contact-hero h1,
.blog-hero h1,
.legal-hero h1 {
  max-width: 780px;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.46);
}

.about-hero p:not(.eyebrow),
.sites-hero p:not(.eyebrow),
.landing-hero p:not(.eyebrow),
.ecommerce-hero p:not(.eyebrow),
.seo-service-hero p:not(.eyebrow),
.contact-hero p:not(.eyebrow),
.blog-hero p:not(.eyebrow),
.legal-hero p:not(.eyebrow) {
  max-width: 650px;
  color: #dce6ff;
}

.blog-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.97) 0%, rgba(2, 6, 17, 0.91) 38%, rgba(2, 18, 39, 0.62) 72%, rgba(2, 6, 17, 0.42) 100%),
    radial-gradient(circle at 74% 40%, rgba(255, 159, 10, 0.18), transparent 24rem),
    var(--hero-bg) center / cover no-repeat;
}

.blog-hero,
.legal-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent, rgba(2, 6, 17, 0.68)),
    repeating-linear-gradient(90deg, rgba(255, 159, 10, 0.08) 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.legal-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.98) 0%, rgba(2, 6, 17, 0.92) 40%, rgba(2, 18, 39, 0.66) 74%, rgba(2, 6, 17, 0.44) 100%),
    radial-gradient(circle at 78% 38%, rgba(255, 159, 10, 0.16), transparent 22rem),
    var(--hero-bg) center / cover no-repeat;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent, rgba(2, 6, 17, 0.72)),
    repeating-linear-gradient(90deg, rgba(255, 159, 10, 0.07) 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-page {
  display: grid;
  gap: 38px;
}

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

.blog-heading h2 {
  margin-bottom: 0;
}

.blog-card,
.featured-post,
.post-card,
.article-card,
.legal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 29, 51, 0.06);
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card > span,
.blog-card h3,
.blog-card p,
.blog-card a {
  margin-inline: 28px;
}

.blog-card span {
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-card p,
.article-card p,
.legal-content p {
  color: var(--muted);
}

.blog-card a {
  display: inline-flex;
  margin-top: 10px;
  margin-bottom: 28px;
  color: var(--orange-dark);
  font-weight: 950;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-media {
  min-height: 420px;
  background: var(--navy);
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  position: relative;
  overflow: hidden;
}

.featured-media::before,
.post-media::before,
.article-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 164, 0, 0.12), transparent 42%),
    radial-gradient(circle at 85% 85%, rgba(255, 164, 0, 0.18), transparent 34%);
  pointer-events: none;
}

.image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.featured-media img,
.post-card img,
.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.featured-media:hover img,
.post-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.04);
}

.featured-content {
  align-self: center;
  padding: clamp(30px, 5vw, 54px);
}

.featured-content p,
.post-card p {
  color: var(--muted);
}

.featured-content a,
.post-card a {
  color: var(--orange-dark);
  font-weight: 950;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-meta span:first-child {
  color: var(--orange-dark);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.post-card {
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 164, 0, 0.55);
  box-shadow: 0 20px 48px rgba(0, 29, 51, 0.14);
}

.post-media {
  display: block;
  position: relative;
  padding: 14px;
  background: var(--navy);
  overflow: hidden;
}

.post-card img {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.post-card > div {
  padding: 24px;
}

.article-list {
  display: grid;
  gap: 30px;
}

.article-card,
.legal-content {
  padding: clamp(28px, 5vw, 52px);
}

.post-article {
  padding: 0;
  overflow: hidden;
}

.article-media {
  position: relative;
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  background: var(--navy);
  overflow: hidden;
}

.article-media img {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.article-body {
  padding: clamp(28px, 5vw, 52px);
}

.article-card h2,
.legal-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.article-card p,
.legal-content p {
  max-width: 850px;
  font-size: 1.05rem;
}

.legal-content h2 {
  margin-top: 34px;
}

.legal-lead {
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-lead p {
  margin-bottom: 0;
}

.legal-list {
  max-width: 850px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-list li {
  margin-bottom: 10px;
}

@media (max-width: 920px) {
  .site-header {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: var(--navy-deep);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-grid,
  .seo-grid,
  .authority-section,
  .strategy-grid,
  .proof-section,
  .faq-grid,
  .contact-grid,
  .featured-post {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .strip-grid,
  .cards-grid,
  .plans-grid,
  .authority-grid,
  .stack-grid,
  .process,
  .blog-preview-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .section,
  .seo-section,
  .contact {
    padding: 68px 0;
  }

  .brand img {
    width: 132px;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.86rem, 9vw, 2.55rem);
  }

  .hero-actions,
  .hero-metrics,
  .strip-grid,
  .cards-grid,
  .plans-grid,
  .authority-grid,
  .stack-grid,
  .process,
  .blog-preview-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics {
    display: grid;
  }

  .hero-card {
    right: auto;
    bottom: 0;
  }

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

  .card-index {
    margin-bottom: 36px;
  }
}

/* Dark tech visual direction */
:root {
  --navy: #03142a;
  --navy-deep: #020611;
  --orange: #2f6bff;
  --orange-dark: #1f55e6;
  --paper: #020611;
  --mist: #0c1630;
  --ink: #f7f9ff;
  --muted: #9ba9c8;
  --line: rgba(82, 124, 255, 0.22);
  --shadow: 0 26px 80px rgba(0, 82, 255, 0.18);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 4%, rgba(47, 107, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 8% 24%, rgba(47, 107, 255, 0.11), transparent 26rem),
    var(--navy-deep);
}

.site-header {
  background: rgba(2, 6, 17, 0.78);
  border-bottom-color: rgba(82, 124, 255, 0.18);
}

.site-header.is-scrolled {
  background: rgba(2, 6, 17, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.hero {
  min-height: 760px;
  padding-bottom: 86px;
}

.hero::before {
  background:
    radial-gradient(circle at 68% 32%, rgba(47, 107, 255, 0.28), transparent 24rem),
    radial-gradient(circle at 88% 14%, rgba(18, 71, 214, 0.18), transparent 18rem),
    linear-gradient(90deg, rgba(2, 6, 17, 0.98), rgba(3, 20, 42, 0.9)),
    repeating-linear-gradient(135deg, rgba(82, 124, 255, 0.08) 0 1px, transparent 1px 28px);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.eyebrow {
  width: fit-content;
  border: 1px solid rgba(82, 124, 255, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  color: #8fb0ff;
  background: rgba(47, 107, 255, 0.08);
  text-transform: none;
}

.eyebrow.dark {
  color: #8fb0ff;
}

h1 {
  max-width: 690px;
}

h1 strong,
h2 strong {
  color: var(--orange);
}

.hero-text {
  color: #c5d0eb;
}

.btn-primary {
  color: var(--white);
  border-color: rgba(255, 159, 10, 0.48);
  background: linear-gradient(135deg, #f0a01e 0%, #d79b36 38%, #2f72ff 100%);
  background-size: 100% 100%;
  background-position: 0 50%;
  box-shadow: 0 16px 34px rgba(47, 107, 255, 0.24), 0 8px 22px rgba(240, 160, 30, 0.14);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: rgba(255, 183, 66, 0.72);
  background-position: 100% 50%;
  box-shadow: 0 19px 38px rgba(47, 107, 255, 0.3), 0 10px 26px rgba(240, 160, 30, 0.2);
}

.btn-ghost {
  border-color: transparent;
  background:
    linear-gradient(rgba(7, 19, 43, 0.94), rgba(7, 19, 43, 0.94)) padding-box,
    linear-gradient(135deg, #f0a01e, #2f72ff) border-box;
  box-shadow: 0 10px 24px rgba(2, 10, 27, 0.2);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, #f0a01e 0%, #d79b36 38%, #2f72ff 100%);
  box-shadow: 0 16px 32px rgba(47, 107, 255, 0.24), 0 8px 22px rgba(240, 160, 30, 0.14);
}

.hero-metrics div,
.strategy-list div,
.service-card,
.plan-card,
.process article,
.seo-panel,
.proof-list div,
.faq-list details,
.contact-form,
.blog-card,
.featured-post,
.post-card,
.article-card,
.legal-content,
.authority-grid div,
.stack-grid article {
  border-color: rgba(82, 124, 255, 0.18);
  background: linear-gradient(180deg, rgba(8, 17, 38, 0.92), rgba(5, 11, 25, 0.94));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.hero-metrics div {
  background: rgba(8, 17, 38, 0.76);
}

.hero-metrics dt,
.card-index,
.process article::before,
.plan-card a,
.plan-card.featured a,
.blog-card a,
.featured-content a,
.post-card a,
.footer-grid a,
.contact-links a {
  color: #6d96ff;
}

.hero-metrics dd,
.section-heading p:not(.eyebrow),
.service-card p,
.process p,
.plan-card p,
.proof-copy p,
.proof-list span,
.faq-list p,
.blog-card p,
.article-card p,
.legal-content p,
.stack-grid ul,
.seo-panel li,
.plan-card li,
.authority-grid span {
  color: var(--muted);
}

.hero-visual {
  min-height: 610px;
  isolation: isolate;
}

.hero-visual::before {
  width: min(96%, 520px);
  border-color: rgba(82, 124, 255, 0.26);
  box-shadow: 0 0 80px rgba(47, 107, 255, 0.18), inset 0 0 80px rgba(47, 107, 255, 0.12);
}

.glow-rings {
  position: absolute;
  width: min(92%, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 42%, rgba(47, 107, 255, 0.25) 43% 44%, transparent 45% 58%, rgba(47, 107, 255, 0.18) 59% 60%, transparent 61%),
    radial-gradient(circle, rgba(47, 107, 255, 0.28), transparent 60%);
  filter: blur(0.2px);
  z-index: 0;
}

.symbol {
  width: min(62%, 340px);
  z-index: 2;
  filter: drop-shadow(0 0 36px rgba(47, 107, 255, 0.42));
}

.orbit-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(82, 124, 255, 0.24);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: #dbe5ff;
  font-weight: 900;
  background: rgba(7, 17, 39, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26), 0 0 24px rgba(47, 107, 255, 0.18);
  backdrop-filter: blur(12px);
}

.orbit-card-one {
  top: 108px;
  left: 28px;
}

.orbit-card-two {
  right: 26px;
  top: 170px;
}

.orbit-card-three {
  left: 56px;
  bottom: 160px;
}

.orbit-card-four {
  right: 34px;
  bottom: 102px;
}

.hero-card {
  right: 34px;
  bottom: 34px;
  background: rgba(7, 17, 39, 0.86);
  border-color: rgba(82, 124, 255, 0.28);
}

.hero-card span {
  color: #8fb0ff;
}

.intro-strip {
  background: #041027;
  color: #dce6ff;
  border-block: 1px solid rgba(82, 124, 255, 0.16);
}

.strip-grid span {
  border-left: 1px solid rgba(82, 124, 255, 0.12);
}

.section,
.plans-section,
.faq-section {
  background: transparent;
}

.seo-section::before,
.strategy-section::before,
.contact::before {
  background:
    radial-gradient(circle at 84% 20%, rgba(47, 107, 255, 0.2), transparent 23rem),
    linear-gradient(90deg, rgba(2, 6, 17, 0.98), rgba(3, 20, 42, 0.9));
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(15, 35, 84, 0.94), rgba(7, 17, 39, 0.96));
  border-color: rgba(82, 124, 255, 0.52);
}

.plan-label {
  color: #ffffff;
  background: linear-gradient(135deg, #1d55ff, #2f79ff);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--ink);
  border-color: rgba(82, 124, 255, 0.18);
  background: rgba(2, 6, 17, 0.82);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #667797;
}

.site-footer {
  border-top: 1px solid rgba(82, 124, 255, 0.16);
  background: #020611;
}

@media (max-width: 920px) {
  .hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

  .orbit-card {
    font-size: 0.78rem;
    padding: 9px 11px;
  }

  .orbit-card-one {
    top: 76px;
    left: 8px;
  }

  .orbit-card-two {
    right: 8px;
    top: 122px;
  }

  .orbit-card-three {
    left: 18px;
    bottom: 118px;
  }

  .orbit-card-four {
    right: 12px;
    bottom: 68px;
  }
}

/* Complete blog area */
.blog-hub {
  display: grid;
  gap: 38px;
}

.blog-toolbar {
  display: grid;
  gap: 20px;
}

.blog-search {
  display: grid;
  gap: 8px;
  max-width: 620px;
  font-weight: 900;
}

.blog-search input {
  width: 100%;
  border: 1px solid rgba(82, 124, 255, 0.24);
  border-radius: var(--radius);
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(2, 6, 17, 0.86);
  font: inherit;
}

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

.blog-categories a,
.post-share a,
.post-share button,
.related-posts a,
.category-card a {
  border: 1px solid rgba(82, 124, 255, 0.22);
  border-radius: 999px;
  padding: 9px 12px;
  color: #cfe0ff;
  background: rgba(47, 107, 255, 0.08);
  font-weight: 800;
}

.blog-featured {
  scroll-margin-top: 110px;
}

.blog-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: start;
}

.blog-post-grid .post-card.is-hidden,
.blog-empty {
  display: none;
}

.blog-empty.is-visible {
  display: block;
  color: var(--muted);
}

.blog-load-more {
  margin-top: 24px;
}

.blog-sidebar {
  position: static;
  top: auto;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(82, 124, 255, 0.18);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(180deg, rgba(8, 17, 38, 0.92), rgba(5, 11, 25, 0.94));
}

.sidebar-card h2 {
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.affiliate-note {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding: 16px 4px 0;
  border-top: 1px solid rgba(82, 124, 255, 0.18);
}

.affiliate-note span {
  color: #8fb0ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.affiliate-note p,
.affiliate-note small {
  margin: 0;
  color: #8796b5;
  font-size: 0.78rem;
  line-height: 1.55;
}

.affiliate-note a {
  width: fit-content;
  color: #dce6ff;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 164, 0, 0.56);
  text-underline-offset: 4px;
}

.affiliate-note a:hover,
.affiliate-note a:focus-visible {
  color: var(--orange);
}

.popular-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: popular-posts;
}

.popular-list li {
  counter-increment: popular-posts;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(82, 124, 255, 0.14);
}

.popular-list li:first-child {
  padding-top: 4px;
}

.popular-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.popular-list li::before {
  content: counter(popular-posts, decimal-leading-zero);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.popular-list a {
  display: block;
  color: #f7f9ff;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.popular-list a:hover {
  color: #8fb0ff;
}

.blog-cta {
  padding: 78px 0;
}

.blog-cta::before,
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(47, 107, 255, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(2, 6, 17, 0.98), rgba(3, 20, 42, 0.92));
}

.blog-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.article-hero {
  padding: 138px 0 74px;
}

.article-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: #8fb0ff;
  font-weight: 800;
}

.article-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  padding-top: 58px;
  padding-bottom: 92px;
}

.toc-card {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(82, 124, 255, 0.18);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(8, 17, 38, 0.88);
}

.toc-card strong {
  color: var(--white);
}

.toc-card a {
  color: var(--muted);
}

.article-main {
  min-width: 0;
}

.article-intro {
  margin: 34px 0;
  border-left: 4px solid var(--orange);
  padding-left: 22px;
  color: #dce6ff;
  font-size: 1.22rem;
}

.article-main section {
  scroll-margin-top: 110px;
}

.article-main h2 {
  margin-top: 44px;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.article-main h3 {
  margin-top: 28px;
  color: #dce6ff;
}

.article-main p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

.article-callout,
.blog-cta-inline {
  margin: 42px 0;
  border: 1px solid rgba(82, 124, 255, 0.26);
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.16), rgba(8, 17, 38, 0.94));
}

.affiliate-box {
  display: grid;
  gap: 14px;
  margin: 34px 0;
  padding: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(132, 205, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(4, 16, 34, 0.96), rgba(7, 28, 54, 0.92));
  border: 1px solid rgba(132, 205, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.16);
}

.affiliate-box span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #d9ecff;
  background: rgba(132, 205, 255, 0.1);
  border: 1px solid rgba(132, 205, 255, 0.24);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliate-box h2,
.affiliate-box h3 {
  margin: 0;
}

.affiliate-box p {
  margin: 0;
  color: var(--muted);
}

.affiliate-box small {
  color: rgba(217, 236, 255, 0.76);
  line-height: 1.6;
}

.article-callout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.25rem;
}

.post-share,
.related-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.post-share button {
  cursor: pointer;
  font: inherit;
}

@media (max-width: 920px) {
  .blog-content-grid,
  .blog-cta-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .blog-sidebar,
  .toc-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .blog-categories a,
  .post-share a,
  .post-share button,
  .related-posts a,
  .category-card a {
    width: 100%;
    text-align: center;
  }

  .article-hero {
    padding-top: 112px;
  }

}

/* Responsive stability fixes */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-width: 0;
}

main,
section,
article,
aside,
header,
footer,
.container,
.hero-grid,
.blog-content-grid,
.article-shell,
.contact-grid,
.footer-grid {
  min-width: 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  max-width: 1120px;
}

.site-header {
  max-width: 100vw;
  padding-inline: max(16px, calc((100vw - 1120px) / 2));
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(126px, 17vw, 156px);
}

.nav-menu {
  min-width: 0;
}

.hero,
.page-hero,
.article-hero {
  isolation: isolate;
}

.hero-grid,
.contact-grid,
.faq-grid,
.seo-grid,
.strategy-grid,
.proof-section,
.authority-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.strip-grid,
.cards-grid,
.plans-grid,
.authority-grid,
.stack-grid,
.process,
.blog-preview-grid,
.post-grid,
.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.blog-preview-grid,
.post-grid,
.blog-post-grid {
  align-items: stretch;
}

.blog-card,
.post-card,
.featured-post,
.article-callout,
.blog-cta-inline,
.sidebar-card,
.toc-card,
.post-template-note {
  max-width: 100%;
}

.blog-card,
.post-card {
  display: flex;
  flex-direction: column;
}

.blog-card img,
.post-card img,
.featured-media img,
.article-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.blog-card img,
.post-card img {
  aspect-ratio: 16 / 10;
}

.featured-media {
  min-height: 0;
  padding: clamp(12px, 2.4vw, 24px);
}

.featured-media .image-frame,
.featured-media img {
  aspect-ratio: 16 / 10;
}

.featured-post {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.post-card > div,
.blog-card > span,
.blog-card h3,
.blog-card p,
.blog-card a {
  min-width: 0;
}

.blog-card h3,
.post-card h3,
.featured-content h2,
.article-main h2,
.sidebar-card h2 {
  overflow-wrap: anywhere;
}

.blog-content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
}

.article-shell {
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
}

.article-main,
.article-main p,
.article-main li {
  overflow-wrap: anywhere;
}

.article-main p {
  max-width: 820px;
}

.article-media {
  border-radius: var(--radius);
}

.article-media img {
  aspect-ratio: 16 / 8;
}

.article-media figcaption {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-template-note,
.article-checklist {
  border: 1px solid rgba(82, 124, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 17, 38, 0.92), rgba(5, 11, 25, 0.94));
}

.post-template-note {
  display: grid;
  gap: 8px;
  margin: 26px 0;
  padding: 22px;
}

.post-template-note strong {
  color: var(--white);
  font-size: 1.08rem;
}

.post-template-note p {
  margin-bottom: 0;
}

.article-checklist {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 22px 22px 22px 42px;
  color: var(--muted);
}

.blog-categories,
.post-share,
.related-posts,
.footer-links,
.hero-actions {
  min-width: 0;
}

.blog-categories a,
.post-share a,
.post-share button,
.related-posts a,
.footer-links a,
.btn {
  white-space: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.blog-search input {
  max-width: 100%;
}

@media (max-width: 1060px) {
  .hero-grid,
  .contact-grid,
  .faq-grid,
  .seo-grid,
  .strategy-grid,
  .proof-section,
  .authority-section,
  .featured-post,
  .blog-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 480px;
    margin-inline: auto;
  }

  .blog-content-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .blog-sidebar,
  .toc-card {
    position: static;
  }
}

@media (max-width: 920px) {
  .site-header {
    height: 70px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 42px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: calc(100vw - 32px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(82, 124, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(2, 6, 17, 0.98);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 14px;
  }

  .page-hero,
  .article-hero {
    padding-top: 112px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .section,
  .seo-section,
  .contact,
  .blog-cta {
    padding-block: 58px;
  }

  .hero {
    padding-top: 106px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 3.05rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  .hero-text,
  .article-intro {
    font-size: 1rem;
  }

  .hero-actions,
  .blog-cta-grid .hero-actions {
    display: grid;
    width: 100%;
  }

  .btn,
  .hero-actions .btn,
  .blog-cta-grid .btn {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .hero-visual {
    min-height: 340px;
  }

  .symbol {
    width: min(58%, 250px);
  }

  .orbit-card {
    max-width: 48%;
    overflow-wrap: anywhere;
  }

  .featured-content,
  .post-card > div,
  .sidebar-card,
  .toc-card,
  .article-callout,
  .blog-cta-inline,
  .post-template-note {
    padding: 20px;
  }

  .featured-media,
  .post-media,
  .article-media {
    padding: 10px;
  }

  .article-media img {
    aspect-ratio: 16 / 10;
  }

  .blog-card > span,
  .blog-card h3,
  .blog-card p,
  .blog-card a {
    margin-inline: 20px;
  }

  .blog-categories a,
  .post-share a,
  .post-share button,
  .related-posts a,
  .category-card a {
    width: auto;
    max-width: 100%;
    text-align: left;
  }

  .site-footer {
    padding-bottom: 74px;
  }
}

/* Footer and specialist card polish */
.authority-grid strong {
  color: #f7f9ff;
  text-shadow: 0 0 18px rgba(47, 107, 255, 0.24);
}

.authority-grid span {
  color: #aebbd8;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 38px 0 28px;
  border-top: 1px solid rgba(82, 124, 255, 0.18);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 154, 0, 0.12), transparent 34%),
    linear-gradient(135deg, #020611 0%, #06162a 48%, #020611 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(360px, 430px) minmax(250px, 310px) minmax(260px, 300px);
  justify-content: space-between;
  gap: 42px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 20px;
  max-width: 430px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  max-width: 100%;
}

.footer-brand p,
.footer-contact,
.footer-links,
.footer-bottom {
  margin: 0;
}

.footer-brand strong,
.footer-brand span,
.footer-contact span,
.footer-contact small,
.footer-links span {
  display: block;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 950;
}

.footer-brand span {
  margin-top: 8px;
  color: #aebbd8;
  line-height: 1.65;
}

.footer-contact {
  display: grid;
  gap: 12px;
  padding-top: 6px;
  max-width: 310px;
}

.footer-contact span,
.footer-links span {
  color: rgba(255, 154, 0, 0.92);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  border: 1px solid rgba(255, 154, 0, 0.38);
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  background: rgba(255, 154, 0, 0.12);
  font-weight: 950;
  text-align: center;
}

.footer-contact .contact-channel,
.contact-links .contact-channel {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  justify-content: initial;
  gap: 12px;
  text-align: left;
}

.footer-contact .contact-channel {
  padding: 10px 14px;
}

.footer-contact .contact-channel span,
.contact-links .contact-channel span {
  display: inline-flex;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.footer-contact .contact-channel .channel-icon,
.contact-links .contact-channel .channel-icon {
  color: #ff9a00;
}

.footer-contact .contact-channel .channel-text,
.contact-links .contact-channel .channel-text {
  display: block;
  color: #ffffff;
}

.footer-contact a:hover {
  border-color: rgba(255, 154, 0, 0.72);
  background: rgba(255, 154, 0, 0.2);
}

.footer-contact small {
  max-width: 290px;
  color: #aebbd8;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 10px 14px;
  align-content: start;
  padding-top: 6px;
}

.footer-links span {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.footer-links a {
  display: block;
  width: 100%;
  border: 1px solid rgba(82, 124, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  color: #dce6ff;
  background: rgba(47, 107, 255, 0.06);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

.footer-links a:hover {
  border-color: rgba(255, 154, 0, 0.38);
  color: var(--orange);
  background: rgba(255, 154, 0, 0.08);
}

.footer-bottom {
  display: block;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(174, 187, 216, 0.14);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(220, 230, 255, 0.68);
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    justify-content: stretch;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 34px 0 88px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    margin-top: 28px;
  }

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

/* Founder authority hero */
.hero-authority {
  --portrait-size: min(70vw, 470px);
  min-height: 600px;
  padding: 22px 0 64px;
}

.hero-authority::before {
  width: min(92%, 520px);
  border-color: rgba(255, 164, 0, 0.24);
  box-shadow:
    0 0 72px rgba(255, 164, 0, 0.12),
    inset 0 0 72px rgba(47, 107, 255, 0.1);
}

.hero-authority .glow-rings {
  width: min(92%, 520px);
  opacity: 0.8;
  background:
    radial-gradient(circle, transparent 48%, rgba(255, 164, 0, 0.26) 49% 50%, transparent 51% 64%, rgba(47, 107, 255, 0.18) 65% 66%, transparent 67%),
    radial-gradient(circle, rgba(255, 164, 0, 0.16), transparent 62%);
}

.founder-portrait {
  position: relative;
  z-index: 2;
  width: var(--portrait-size);
  max-width: 470px;
  margin: 0;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 164, 0, 0.72);
  border-radius: 50%;
  overflow: hidden;
  background: #020611;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    0 0 54px rgba(255, 164, 0, 0.18);
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 34%, transparent 0 44%, rgba(2, 6, 17, 0.08) 68%, rgba(2, 6, 17, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%, rgba(0, 0, 0, 0.22));
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  filter: saturate(1.02) contrast(1.07) brightness(0.98);
}

.seo-image-badge {
  position: absolute;
  right: 9%;
  bottom: 13%;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 12px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 164, 0, 0.96), rgba(47, 107, 255, 0.92));
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34), 0 0 28px rgba(255, 164, 0, 0.24);
}

.hero-authority .orbit-card {
  max-width: 190px;
  background: rgba(2, 6, 17, 0.78);
}

.hero-authority .orbit-card-one {
  top: 96px;
  left: -70px;
}

.hero-authority .orbit-card-two {
  top: 178px;
  right: -90px;
}

.hero-authority .orbit-card-three {
  left: -80px;
  bottom: 148px;
  color: #ffffff;
  border-color: rgba(255, 164, 0, 0.42);
  background: rgba(255, 164, 0, 0.16);
}

.hero-authority .orbit-card-four {
  right: -112px;
  bottom: 118px;
}

.hero-authority .hero-card {
  right: 50%;
  bottom: -46px;
  width: min(330px, calc(100% - 96px));
  transform: translateX(50%);
  text-align: center;
}

@media (max-width: 1060px) {
  .hero-authority {
    --portrait-size: min(76vw, 440px);
    min-height: 570px;
  }

  .hero-authority .orbit-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-authority {
    --portrait-size: min(76vw, 300px);
    min-height: 470px;
    padding-bottom: 96px;
  }

  .seo-image-badge {
    right: 6%;
    bottom: 10%;
    padding: 9px 13px;
  }

  .hero-authority .hero-card {
    bottom: -24px;
    width: min(100%, 300px);
    max-width: min(100%, 300px);
  }

  .hero-authority .orbit-card {
    display: none;
  }
}

/* Final typography and information block refinement */
body {
  font-size: 16px;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.12rem, 4vw, 3.35rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.32;
}

.page-hero h1,
.article-hero h1 {
  max-width: 900px;
  font-size: clamp(1.95rem, 3.4vw, 2.75rem);
  line-height: 1.08;
}

.page-hero p:not(.eyebrow),
.article-intro,
.hero-text {
  max-width: 720px;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.authority-copy p:not(.eyebrow),
.seo-grid p {
  font-size: 1rem;
  line-height: 1.75;
}

.service-card,
.plan-card,
.process article,
.seo-panel,
.proof-list div,
.faq-list details,
.contact-form,
.stack-grid article,
.sidebar-card,
.toc-card,
.article-callout,
.blog-cta-inline,
.post-template-note {
  padding: 24px;
}

.service-card {
  min-height: 220px;
}

.card-index {
  margin-bottom: 38px;
}

.authority-grid div {
  min-height: 170px;
  padding: 22px;
}

.authority-grid strong,
.proof-list strong {
  font-size: 1.08rem;
}

.strategy-list div {
  padding: 20px;
}

.strategy-list strong {
  font-size: 1.02rem;
}

.process article {
  min-height: 170px;
}

.process article::before {
  margin-bottom: 28px;
}

.seo-section,
.strategy-section,
.contact {
  padding: 78px 0;
}

.seo-panel ul,
.plan-card ul,
.stack-grid ul {
  margin-top: 14px;
}

.seo-panel li,
.plan-card li,
.stack-grid li {
  margin-bottom: 8px;
}

.faq-list details {
  padding-block: 20px;
}

.faq-list summary {
  line-height: 1.35;
}

.blog-card h3,
.post-card h3 {
  font-size: 1.08rem;
}

.featured-content h2,
.article-main h2 {
  font-size: clamp(1.5rem, 2.35vw, 2.05rem);
}

.article-main p,
.article-main li,
.legal-content p,
.legal-list li {
  font-size: 1rem;
  line-height: 1.78;
}

.btn {
  min-height: 46px;
  padding: 12px 18px;
}

.contact-form label {
  font-size: 0.86rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
}

.hero-metrics dt {
  font-size: 1.22rem;
}

.hero-metrics dd {
  font-size: 0.86rem;
}

@media (max-width: 1060px) {
  .page-hero,
  .article-hero {
    padding-top: 106px;
    padding-bottom: 64px;
  }

  .service-card,
  .plan-card,
  .process article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15.5px;
  }

  h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(1.82rem, 8.1vw, 2.35rem);
    line-height: 1.08;
  }

  h2,
  .featured-content h2,
  .article-main h2 {
    font-size: clamp(1.38rem, 6.4vw, 1.85rem);
    line-height: 1.14;
  }

  h3,
  .blog-card h3,
  .post-card h3 {
    font-size: 1.02rem;
  }

  .section,
  .seo-section,
  .strategy-section,
  .contact,
  .blog-cta {
    padding-block: 52px;
  }

  .hero {
    padding-top: 98px;
  }

  .hero-text,
  .page-hero p:not(.eyebrow),
  .article-intro {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .service-card,
  .plan-card,
  .process article,
  .seo-panel,
  .proof-list div,
  .faq-list details,
  .contact-form,
  .stack-grid article,
  .featured-content,
  .post-card > div,
  .sidebar-card,
  .toc-card,
  .article-callout,
  .blog-cta-inline,
  .post-template-note {
    padding: 18px;
  }

  .card-index {
    margin-bottom: 24px;
  }

  .strip-grid span {
    min-height: 58px;
    padding: 12px;
    font-size: 0.9rem;
  }

  .hero-metrics dt {
    font-size: 1.08rem;
  }

  .service-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Blog article visual fixes */
.related-posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(82, 124, 255, 0.18);
}

.related-posts h2 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.related-posts a {
  display: flex;
  align-items: center;
  min-height: 74px;
  width: 100%;
  border-radius: 8px;
  padding: 18px 20px;
  line-height: 1.35;
  background: linear-gradient(180deg, rgba(8, 17, 38, 0.94), rgba(5, 11, 25, 0.96));
}

.post-share {
  align-items: center;
}

.floating-whatsapp,
.whatsapp-float,
.whatsapp-fixed,
.whatsapp-button-floating,
.wa-floating,
.wa-float,
[data-floating-whatsapp],
[data-whatsapp-floating] {
  display: none !important;
}

@media (max-width: 640px) {
  .related-posts {
    grid-template-columns: 1fr;
  }

  .related-posts a {
    min-height: auto;
    text-align: left;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

/* Global section alignment fixes */
.section-band > .container.seo-grid {
  padding-block: 78px;
  align-items: center;
}

.section-band.seo-section > .container.seo-grid {
  padding-block: 0;
}

.section-band > .container.seo-grid > div:first-child {
  display: grid;
  align-content: center;
  gap: 14px;
}

.section-band > .container.seo-grid > div:first-child .eyebrow,
.section-band > .container.seo-grid > div:first-child h2,
.section-band > .container.seo-grid > div:first-child p {
  margin-bottom: 0;
}

.section-band > .container.seo-grid .seo-panel {
  align-self: center;
  width: 100%;
}

.cards-grid,
.plans-grid,
.stack-grid,
.authority-grid,
.process {
  align-items: stretch;
}

.service-card,
.plan-card,
.stack-grid article,
.authority-grid div,
.process article,
.seo-panel {
  display: flex;
  flex-direction: column;
}

.service-card h3,
.plan-card h3,
.stack-grid h3,
.seo-panel h3 {
  min-height: 1.5em;
}

.service-stack .stack-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.intro-strip .strip-grid,
.process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-list div {
  min-height: 132px;
}

@media (max-width: 1060px) {
  .section-band > .container.seo-grid {
    padding-block: 64px;
    align-items: stretch;
  }

  .section-band.seo-section > .container.seo-grid {
    padding-block: 0;
  }

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

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

@media (max-width: 640px) {
  .section-band > .container.seo-grid {
    padding-block: 52px;
  }

  .section-band.seo-section > .container.seo-grid {
    padding-block: 0;
  }

  .section-band > .container.seo-grid > div:first-child {
    gap: 12px;
  }

  .service-stack .stack-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip .strip-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .proof-list div {
    min-height: auto;
  }
}

/* Traffic paid banner refinement */
.about-hero h1,
.sites-hero h1,
.landing-hero h1,
.ecommerce-hero h1,
.seo-service-hero h1,
.traffic-hero h1,
.contact-hero h1,
.blog-hero h1,
.legal-hero h1 {
  max-width: 780px;
}

.about-hero p:not(.eyebrow),
.sites-hero p:not(.eyebrow),
.landing-hero p:not(.eyebrow),
.ecommerce-hero p:not(.eyebrow),
.seo-service-hero p:not(.eyebrow),
.traffic-hero p:not(.eyebrow),
.contact-hero p:not(.eyebrow),
.blog-hero p:not(.eyebrow),
.legal-hero p:not(.eyebrow) {
  max-width: 650px;
}

@media (max-width: 640px) {
  .traffic-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 6, 17, 0.96) 0%, rgba(2, 6, 17, 0.86) 58%, rgba(2, 6, 17, 0.62) 100%),
      radial-gradient(circle at 70% 34%, rgba(47, 107, 255, 0.24), transparent 18rem),
      url("assets/hero-trafego-pago-bg.webp") 64% center / cover no-repeat;
  }

  .about-hero::before,
  .sites-hero::before,
  .landing-hero::before,
  .ecommerce-hero::before,
  .seo-service-hero::before,
  .contact-hero::before,
  .blog-hero::before,
  .legal-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 6, 17, 0.97) 0%, rgba(2, 6, 17, 0.88) 58%, rgba(2, 6, 17, 0.64) 100%),
      radial-gradient(circle at 70% 34%, rgba(47, 107, 255, 0.22), transparent 18rem),
      var(--hero-bg) 64% center / cover no-repeat;
  }
}

/* Home visual innovation */
.home-section-strip {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.42), transparent 10rem),
    linear-gradient(90deg, #ff9f0a, #ffb02e 46%, #2f6bff 100%);
}

.home-section-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(2, 6, 17, 0.16) 0 1px, transparent 1px 80px),
    linear-gradient(90deg, rgba(2, 6, 17, 0.08), transparent 45%, rgba(2, 6, 17, 0.18));
  pointer-events: none;
}

.home-section-strip .strip-grid {
  position: relative;
  z-index: 1;
}

.home-section-strip .strip-grid span {
  color: #020611;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

.home-visual-panel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(82, 124, 255, 0.2);
  border-radius: 8px;
  background: #020611;
  box-shadow: 0 24px 70px rgba(2, 6, 17, 0.28);
}

.home-visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(2, 6, 17, 0.28)),
    repeating-linear-gradient(90deg, rgba(255, 159, 10, 0.06) 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.home-visual-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.authority-section {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.authority-panel {
  grid-column: 1;
  min-height: 260px;
}

.authority-panel img {
  aspect-ratio: 16 / 10;
}

.authority-grid {
  grid-row: span 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-section {
  position: relative;
  isolation: isolate;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 26px -22px auto;
  height: 56%;
  z-index: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 28%, rgba(47, 107, 255, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(3, 20, 42, 0.06), transparent);
  pointer-events: none;
}

.services-panel {
  margin-bottom: 24px;
  height: clamp(240px, 30vw, 360px);
  min-height: 0;
}

.services-panel img {
  height: 100%;
}

.services-section .service-card {
  position: relative;
  overflow: hidden;
}

.services-section .service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #2f6bff);
}

.services-section .service-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid rgba(82, 124, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 159, 10, 0.22), transparent 58%),
    linear-gradient(135deg, rgba(47, 107, 255, 0.18), rgba(255, 159, 10, 0.12));
}

.strategy-section::before {
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.98) 0%, rgba(2, 12, 28, 0.92) 44%, rgba(2, 18, 39, 0.62) 100%),
    radial-gradient(circle at 72% 42%, rgba(255, 159, 10, 0.18), transparent 24rem),
    url("assets/home-authority-visual.webp") right center / min(760px, 58vw) auto no-repeat;
}

.strategy-list div {
  backdrop-filter: blur(10px);
}

.seo-section::before {
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.98) 0%, rgba(2, 12, 28, 0.9) 45%, rgba(2, 18, 39, 0.56) 100%),
    radial-gradient(circle at 76% 50%, rgba(47, 107, 255, 0.22), transparent 24rem),
    url("assets/home-seo-visual.webp") right center / min(760px, 58vw) auto no-repeat;
}

.seo-panel {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.seo-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #2f6bff, var(--orange));
}

.process-section {
  position: relative;
  isolation: isolate;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 32px -20px 32px;
  z-index: -1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 36%, rgba(255, 159, 10, 0.1), transparent 18rem),
    radial-gradient(circle at 84% 28%, rgba(47, 107, 255, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(3, 20, 42, 0.04), transparent);
}

.process-visual-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: -12px 0 22px;
  color: #8fb0ff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-visual-strip::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), #2f6bff, var(--orange));
  transform: translateY(-50%);
}

.process-visual-strip span {
  position: relative;
  z-index: 1;
  justify-self: center;
  border: 1px solid rgba(82, 124, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: #dce6ff;
  background: rgba(3, 20, 42, 0.92);
}

.process article {
  position: relative;
  overflow: hidden;
}

.process article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 10, 0.18), transparent 68%);
}

.plans-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #050b19;
}

.plans-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 6, 17, 0.92), rgba(2, 6, 17, 0.78)),
    url("assets/home-plans-visual.webp") center / cover no-repeat;
}

.plans-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 6, 17, 0.88), rgba(2, 6, 17, 0.48), rgba(2, 6, 17, 0.86));
}

.plans-section .section-heading h2,
.plans-section .section-heading p:not(.eyebrow) {
  color: #f7f9ff;
}

.plans-section .plan-card {
  background: rgba(7, 17, 39, 0.9);
  border-color: rgba(82, 124, 255, 0.22);
  color: #f7f9ff;
  backdrop-filter: blur(12px);
}

.plans-section .plan-card p,
.plans-section .plan-card li {
  color: #b9c6df;
}

.service-stack {
  position: relative;
  isolation: isolate;
}

.service-stack::before {
  content: "";
  position: absolute;
  inset: 36px -18px 20px;
  z-index: -1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 159, 10, 0.1), transparent 20rem),
    linear-gradient(135deg, rgba(47, 107, 255, 0.06), transparent 62%);
}

.service-stack .stack-grid article {
  position: relative;
  overflow: hidden;
}

.service-stack .stack-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 64px;
  height: 64px;
  border-radius: 0 0 64px 0;
  background: linear-gradient(135deg, rgba(255, 159, 10, 0.18), rgba(47, 107, 255, 0.08));
}

.proof-section {
  position: relative;
  isolation: isolate;
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 28px -18px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.05), transparent 52%),
    url("assets/home-plans-visual.webp") right center / min(520px, 42vw) auto no-repeat;
  opacity: 0.42;
}

.proof-list div {
  position: relative;
  overflow: hidden;
}

.proof-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), #2f6bff);
}

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 159, 10, 0.08), transparent 18rem),
    radial-gradient(circle at 88% 70%, rgba(47, 107, 255, 0.1), transparent 24rem),
    repeating-linear-gradient(90deg, rgba(2, 6, 17, 0.03) 0 1px, transparent 1px 86px);
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-list details {
  position: relative;
  overflow: hidden;
}

.faq-list details::before {
  content: "?";
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(47, 107, 255, 0.16);
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 1;
}

.home-blog-section {
  position: relative;
  isolation: isolate;
}

.home-blog-section::before {
  content: "";
  position: absolute;
  inset: 28px -18px 24px;
  z-index: -1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 159, 10, 0.09), transparent 18rem),
    linear-gradient(135deg, rgba(3, 20, 42, 0.06), transparent 62%);
}

.home-blog-section .blog-card {
  overflow: hidden;
}

.home-blog-section .blog-card img {
  filter: saturate(1.08) contrast(1.04);
}

.contact::before {
  background:
    linear-gradient(90deg, rgba(2, 6, 17, 0.98) 0%, rgba(2, 12, 28, 0.9) 46%, rgba(2, 18, 39, 0.48) 100%),
    radial-gradient(circle at 78% 44%, rgba(255, 159, 10, 0.18), transparent 24rem),
    url("assets/home-contact-visual.webp") right center / min(780px, 58vw) auto no-repeat;
}

@media (max-width: 1060px) {
  .authority-section {
    grid-template-columns: 1fr;
  }

  .authority-panel {
    grid-column: auto;
  }

  .authority-grid {
    grid-row: auto;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }

  .strategy-section::before,
  .seo-section::before,
  .contact::before {
    background:
      linear-gradient(180deg, rgba(2, 6, 17, 0.97), rgba(2, 12, 28, 0.82)),
      var(--section-image, none) center right / cover no-repeat;
  }

  .strategy-section {
    --section-image: url("assets/home-authority-visual.webp");
  }

  .seo-section {
    --section-image: url("assets/home-seo-visual.webp");
  }

  .contact {
    --section-image: url("assets/home-contact-visual.webp");
  }

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

  .process-visual-strip::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-visual-panel {
    min-height: auto;
  }

  .services-panel img,
  .authority-panel img {
    aspect-ratio: 4 / 3;
  }

  .services-panel {
    min-height: 220px;
  }

  .process-visual-strip {
    grid-template-columns: 1fr;
  }

  .proof-section::before {
    background:
      radial-gradient(circle at 80% 14%, rgba(255, 159, 10, 0.09), transparent 18rem),
      linear-gradient(180deg, rgba(3, 20, 42, 0.04), transparent);
  }
}

/* Creative card interactions */
:root {
  --dy-card-blue: #2f72ff;
  --dy-card-orange: #ff9f0a;
}

:where(
  .hero-card,
  .orbit-card,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .feature-card,
  .step-card,
  .process-card,
  .solution-card,
  .result-card,
  .metric-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .value-card,
  .legal-card,
  .content-card,
  .cards-grid > *,
  .service-stack > *,
  .faq-list details,
  .service-links a,
  .related-posts a,
  .blog-sidebar > *,
  .post-sidebar > *
) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    background 0.34s ease,
    filter 0.34s ease;
  will-change: transform;
}

:where(
  .hero-card,
  .orbit-card,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .feature-card,
  .step-card,
  .process-card,
  .solution-card,
  .result-card,
  .metric-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .value-card,
  .legal-card,
  .content-card,
  .cards-grid > *,
  .service-stack > *,
  .faq-list details,
  .service-links a,
  .related-posts a,
  .blog-sidebar > *,
  .post-sidebar > *
)::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 159, 10, 0.42), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(47, 114, 255, 0.46), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(47, 114, 255, 0.08) 42%, rgba(255, 159, 10, 0.14));
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

:where(
  .hero-card,
  .orbit-card,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .feature-card,
  .step-card,
  .process-card,
  .solution-card,
  .result-card,
  .metric-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .value-card,
  .legal-card,
  .content-card,
  .cards-grid > *,
  .service-stack > *,
  .faq-list details,
  .service-links a,
  .related-posts a,
  .blog-sidebar > *,
  .post-sidebar > *
)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.16) 48%, transparent 62% 100%),
    radial-gradient(circle at 50% -20%, rgba(255, 159, 10, 0.12), transparent 42%);
  opacity: 0;
  transform: translateX(-42%) skewX(-12deg);
  transition: opacity 0.34s ease, transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

:where(
  .hero-card,
  .orbit-card,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .feature-card,
  .step-card,
  .process-card,
  .solution-card,
  .result-card,
  .metric-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .value-card,
  .legal-card,
  .content-card,
  .cards-grid > *,
  .service-stack > *,
  .faq-list details,
  .service-links a,
  .related-posts a,
  .blog-sidebar > *,
  .post-sidebar > *
):hover,
:where(
  .hero-card,
  .orbit-card,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .feature-card,
  .step-card,
  .process-card,
  .solution-card,
  .result-card,
  .metric-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .value-card,
  .legal-card,
  .content-card,
  .cards-grid > *,
  .service-stack > *,
  .faq-list details,
  .service-links a,
  .related-posts a,
  .blog-sidebar > *,
  .post-sidebar > *
):focus-within {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(255, 159, 10, 0.58) !important;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 159, 10, 0.18),
    0 0 38px rgba(47, 114, 255, 0.22);
  filter: saturate(1.06);
}

:where(
  .hero-card,
  .orbit-card,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .feature-card,
  .step-card,
  .process-card,
  .solution-card,
  .result-card,
  .metric-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .value-card,
  .legal-card,
  .content-card,
  .cards-grid > *,
  .service-stack > *,
  .faq-list details,
  .service-links a,
  .related-posts a,
  .blog-sidebar > *,
  .post-sidebar > *
):hover::before,
:where(
  .hero-card,
  .orbit-card,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .feature-card,
  .step-card,
  .process-card,
  .solution-card,
  .result-card,
  .metric-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .value-card,
  .legal-card,
  .content-card,
  .cards-grid > *,
  .service-stack > *,
  .faq-list details,
  .service-links a,
  .related-posts a,
  .blog-sidebar > *,
  .post-sidebar > *
):focus-within::before {
  opacity: 1;
  transform: scale(1);
}

:where(
  .hero-card,
  .orbit-card,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .feature-card,
  .step-card,
  .process-card,
  .solution-card,
  .result-card,
  .metric-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .value-card,
  .legal-card,
  .content-card,
  .cards-grid > *,
  .service-stack > *,
  .faq-list details,
  .service-links a,
  .related-posts a,
  .blog-sidebar > *,
  .post-sidebar > *
):hover::after,
:where(
  .hero-card,
  .orbit-card,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .feature-card,
  .step-card,
  .process-card,
  .solution-card,
  .result-card,
  .metric-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .value-card,
  .legal-card,
  .content-card,
  .cards-grid > *,
  .service-stack > *,
  .faq-list details,
  .service-links a,
  .related-posts a,
  .blog-sidebar > *,
  .post-sidebar > *
):focus-within::after {
  opacity: 1;
  transform: translateX(42%) skewX(-12deg);
}

:where(.blog-card, .post-card, .service-card, .plan-card):hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

:where(.blog-card, .post-card, .service-card, .plan-card) img {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  :where(
    .hero-card,
    .orbit-card,
    .service-card,
    .plan-card,
    .blog-card,
    .post-card,
    .feature-card,
    .step-card,
    .process-card,
    .solution-card,
    .result-card,
    .metric-card,
    .pricing-card,
    .contact-card,
    .info-card,
    .value-card,
    .legal-card,
    .content-card,
    .cards-grid > *,
    .service-stack > *,
    .faq-list details,
    .service-links a,
    .related-posts a,
    .blog-sidebar > *,
    .post-sidebar > *
  ),
  :where(.blog-card, .post-card, .service-card, .plan-card) img {
    transition: none !important;
  }
}

/* Restored visual motion and mascot */
@keyframes dyvissonGlowPulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
    filter: saturate(1.18);
  }
}

@keyframes dyvissonPortraitFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -9px, 0);
  }
}

@keyframes dyvissonOrbitFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  33% {
    transform: translate3d(8px, -7px, 0) rotate(1deg);
  }
  66% {
    transform: translate3d(-7px, 6px, 0) rotate(-0.8deg);
  }
}

@keyframes dyvissonCardBreath {
  0%, 100% {
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  }
  50% {
    box-shadow: 0 22px 62px rgba(47, 114, 255, 0.18);
  }
}

@keyframes dyvissonMascotFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(2deg);
  }
}

.glow-rings {
  animation: dyvissonGlowPulse 6.5s ease-in-out infinite;
}

.founder-portrait,
.symbol {
  animation: dyvissonPortraitFloat 5.8s ease-in-out infinite;
}

.orbit-card {
  animation: dyvissonOrbitFloat 5.2s ease-in-out infinite;
}

.orbit-card-two {
  animation-delay: -1.2s;
}

.orbit-card-three {
  animation-delay: -2.4s;
}

.orbit-card-four {
  animation-delay: -3.2s;
}

.hero-metrics div,
.service-card,
.plan-card,
.blog-card,
.post-card,
.faq-list details,
.portfolio-card {
  animation: dyvissonCardBreath 8s ease-in-out infinite;
}

.hero-metrics div:nth-child(2),
.service-card:nth-child(2),
.plan-card:nth-child(2),
.blog-card:nth-child(2),
.post-card:nth-child(2),
.faq-list details:nth-child(2),
.portfolio-card:nth-child(2) {
  animation-delay: -1.4s;
}

.hero-metrics div:nth-child(3),
.service-card:nth-child(3),
.plan-card:nth-child(3),
.blog-card:nth-child(3),
.post-card:nth-child(3),
.faq-list details:nth-child(3),
.portfolio-card:nth-child(3) {
  animation-delay: -2.8s;
}

.faq-section {
  overflow-x: clip;
}

.faq-grid {
  width: min(100%, var(--container));
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.faq-grid > *,
.faq-list,
.faq-list details {
  min-width: 0;
}

.faq-list details {
  width: 100%;
}

.site-mascot {
  position: fixed;
  right: clamp(12px, 3vw, 34px);
  top: clamp(108px, 18vh, 168px);
  z-index: 60;
  width: 78px;
  height: 96px;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(47, 114, 255, 0.26));
  animation: dyvissonMascotFloat 5.4s ease-in-out infinite;
}

.mascot-antenna,
.mascot-head,
.mascot-body,
.mascot-shadow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mascot-antenna {
  top: 0;
  width: 42px;
  height: 22px;
  border: 4px solid #6d96ff;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
}

.mascot-head {
  top: 18px;
  width: 66px;
  height: 54px;
  border: 2px solid rgba(191, 210, 255, 0.7);
  border-radius: 20px;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.3), transparent 20%),
    linear-gradient(145deg, #6d96ff, #2f6bff 60%, #173a9f);
}

.mascot-head::before {
  content: "";
  position: absolute;
  inset: 14px 12px;
  border-radius: 10px;
  background: #06152d;
  box-shadow: inset 0 0 18px rgba(47, 114, 255, 0.45);
}

.mascot-head span {
  position: absolute;
  z-index: 1;
  top: 28px;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: #72fff2;
  box-shadow: 0 0 10px rgba(114, 255, 242, 0.85);
}

.mascot-head span:first-child {
  left: 22px;
}

.mascot-head span:last-child {
  right: 22px;
}

.mascot-body {
  top: 68px;
  width: 44px;
  height: 26px;
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(145deg, #527cff, #1f55e6);
}

.mascot-body span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  transform: translateX(-50%);
}

.mascot-shadow {
  bottom: -4px;
  width: 52px;
  height: 10px;
  border-radius: 999px;
  background: rgba(47, 114, 255, 0.22);
  filter: blur(4px);
}

@media (max-width: 1060px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-mascot {
    width: 58px;
    height: 72px;
    top: auto;
    bottom: 18px;
    right: 12px;
    opacity: 0.88;
  }

  .mascot-antenna {
    width: 32px;
    height: 16px;
    border-width: 3px;
  }

  .mascot-head {
    top: 14px;
    width: 50px;
    height: 42px;
    border-radius: 16px;
  }

  .mascot-head::before {
    inset: 11px 9px;
  }

  .mascot-head span {
    top: 22px;
  }

  .mascot-head span:first-child {
    left: 16px;
  }

  .mascot-head span:last-child {
    right: 16px;
  }

  .mascot-body {
    top: 52px;
    width: 34px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow-rings,
  .founder-portrait,
  .symbol,
  .orbit-card,
  .hero-metrics div,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .faq-list details,
  .portfolio-card,
  .site-mascot {
    animation: none !important;
  }
}

/* Premium local UI/UX refinement - 2026-07-16 */
:root {
  --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --header-height: 78px;
  --focus-ring: 0 0 0 3px rgba(255, 164, 0, 0.34);
}

html {
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  overflow-x: clip;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

.site-header {
  background: linear-gradient(180deg, rgba(2, 6, 17, 0.72), rgba(2, 6, 17, 0.16));
  border-bottom-color: transparent;
  backdrop-filter: blur(0);
  transition:
    height 300ms var(--motion-ease),
    background 300ms var(--motion-ease),
    border-color 300ms ease,
    box-shadow 300ms var(--motion-ease),
    backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(2, 6, 17, 0.86);
  border-bottom-color: rgba(109, 150, 255, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px) saturate(1.25);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.brand img {
  transition: transform 300ms var(--motion-ease), filter 300ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: translateY(-1px) scale(1.025);
  filter: drop-shadow(0 8px 16px rgba(255, 164, 0, 0.18));
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 260ms ease, transform 260ms var(--motion-ease);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #5e8dff);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms var(--motion-ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active,
.nav-menu a[aria-current] {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-active::after,
.nav-menu a[aria-current]::after {
  transform: scaleX(1);
}

.menu-toggle {
  position: relative;
  transition: border-color 260ms ease, background 260ms ease, transform 260ms var(--motion-ease);
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle.is-open {
  border-color: rgba(255, 164, 0, 0.66);
  background: rgba(255, 164, 0, 0.08);
}

.menu-toggle span {
  transition: transform 260ms var(--motion-ease), opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: flex;
  min-height: max(720px, 100svh);
  align-items: center;
  padding-bottom: 84px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(47, 114, 255, 0.08) 63%, transparent 76%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.025) 120px),
    repeating-linear-gradient(0deg, transparent 0 119px, rgba(255, 255, 255, 0.018) 120px);
  mask-image: linear-gradient(180deg, black, transparent 92%);
}

.hero-grid {
  width: var(--container);
}

.hero-copy,
.hero-authority {
  position: relative;
  z-index: 1;
}

.hero h1 {
  text-wrap: balance;
}

.hero-text {
  text-wrap: pretty;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, background-position 420ms var(--motion-ease), box-shadow 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 26%, rgba(255, 255, 255, 0.32) 48%, transparent 70%);
  transform: translateX(-125%);
  transition: transform 650ms var(--motion-ease);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(125%);
}

.scroll-explore {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 220ms ease;
}

.scroll-explore i {
  position: relative;
  display: block;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.scroll-explore i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
  animation: dyvissonScrollCue 1.8s var(--motion-ease) infinite;
}

.scroll-explore:hover,
.scroll-explore:focus-visible {
  color: var(--white);
}

@keyframes dyvissonScrollCue {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -2px, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, 12px, 0);
  }
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 650ms var(--motion-ease) var(--reveal-delay, 0ms),
    transform 650ms var(--motion-ease) var(--reveal-delay, 0ms);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-metrics div,
.service-card,
.plan-card,
.blog-card,
.post-card,
.faq-list details,
.portfolio-card {
  animation: none !important;
}

:where(
  .hero-card,
  .orbit-card,
  .service-card,
  .plan-card,
  .blog-card,
  .post-card,
  .feature-card,
  .step-card,
  .process-card,
  .solution-card,
  .result-card,
  .metric-card,
  .pricing-card,
  .contact-card,
  .info-card,
  .value-card,
  .legal-card,
  .content-card,
  .cards-grid > *,
  .service-stack > *,
  .faq-list details,
  .service-links a,
  .related-posts a,
  .blog-sidebar > *,
  .post-sidebar > *
) {
  will-change: auto;
}

.motion-card {
  --card-rotate-x: 0deg;
  --card-rotate-y: 0deg;
  --card-glow-x: 50%;
  --card-glow-y: 10%;
  transform: perspective(950px) rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y)) translateY(0);
  transform-style: preserve-3d;
}

.motion-card:hover,
.motion-card:focus-within {
  transform: perspective(950px) rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y)) translateY(-7px);
}

.motion-card::before {
  background:
    radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(255, 164, 0, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(47, 114, 255, 0.08) 54%, rgba(255, 164, 0, 0.1));
}

.process-visual-strip.motion-timeline-strip::before {
  background: rgba(109, 150, 255, 0.18);
}

.process-visual-strip.motion-timeline-strip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  left: 7%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #4f83ff);
  box-shadow: 0 0 18px rgba(79, 131, 255, 0.34);
  transform: translateY(-50%) scaleX(var(--timeline-progress, 0));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.process-visual-strip.motion-timeline-strip span {
  transition:
    color 280ms ease,
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease;
}

.process.motion-timeline article {
  transition:
    transform 360ms var(--motion-ease),
    border-color 360ms ease,
    box-shadow 360ms ease,
    background 360ms ease;
}

.process.motion-timeline article.is-current {
  border-color: rgba(255, 164, 0, 0.48);
  background: linear-gradient(180deg, rgba(10, 24, 53, 0.96), rgba(5, 11, 25, 0.96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 164, 0, 0.08);
  transform: translateY(-4px);
}

.process.motion-timeline article.is-current::before {
  color: var(--orange);
  text-shadow: 0 0 18px rgba(255, 164, 0, 0.34);
}

.portfolio-preview {
  overflow: hidden;
}

.portfolio-screen {
  transition: transform 480ms var(--motion-ease), filter 480ms ease;
}

.portfolio-card:hover .portfolio-screen,
.portfolio-card:focus-within .portfolio-screen {
  transform: scale(1.025) translateY(-2px);
}

.contact-form label {
  transition: color 220ms ease;
}

.contact-form label:focus-within {
  color: #8fb0ff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    transform 220ms var(--motion-ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(255, 164, 0, 0.7);
  background: rgba(6, 17, 38, 0.96);
  box-shadow: 0 0 0 3px rgba(255, 164, 0, 0.12), 0 14px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.contact-form .btn.is-loading {
  cursor: progress;
  opacity: 0.82;
}

.contact-form .btn.is-loading::after {
  content: "";
  width: 17px;
  height: 17px;
  margin-left: 10px;
  border: 2px solid rgba(2, 6, 17, 0.28);
  border-top-color: #020611;
  border-radius: 50%;
  animation: dyvissonSpinner 700ms linear infinite;
}

@keyframes dyvissonSpinner {
  to {
    transform: rotate(360deg);
  }
}

.contact-channel,
.footer-links a {
  transition:
    color 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    transform 240ms var(--motion-ease),
    box-shadow 240ms ease;
}

.contact-channel:hover,
.contact-channel:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 164, 0, 0.52);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), 0 0 22px rgba(47, 114, 255, 0.14);
}

.channel-icon {
  transition: transform 260ms var(--motion-ease), background 260ms ease;
}

.contact-channel:hover .channel-icon,
.contact-channel:focus-visible .channel-icon {
  transform: rotate(-5deg) scale(1.08);
}

.faq-list summary {
  position: relative;
  padding-right: 54px;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(109, 150, 255, 0.38);
  border-radius: 50%;
  color: #dce7ff;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    color 280ms ease,
    border-color 280ms ease,
    background 280ms ease,
    transform 320ms var(--motion-ease);
}

.faq-list details[open] {
  border-color: rgba(255, 164, 0, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 164, 0, 0.08);
}

.faq-list details[open] summary::after {
  color: #020611;
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details > :not(summary) {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 260ms ease, transform 320ms var(--motion-ease);
}

.faq-list details[open] > :not(summary) {
  opacity: 1;
  transform: translateY(0);
}

@supports selector(details::details-content) {
  .faq-list details::details-content {
    overflow: hidden;
    block-size: 0;
    transition:
      block-size 320ms var(--motion-ease),
      content-visibility 320ms allow-discrete;
  }

  .faq-list details[open]::details-content {
    block-size: auto;
  }
}

.reading-progress {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 98;
  height: 3px;
  pointer-events: none;
  background: rgba(109, 150, 255, 0.1);
  opacity: 0;
  transition: top 300ms var(--motion-ease), opacity 240ms ease;
}

.reading-progress.is-active {
  opacity: 1;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #4f83ff);
  box-shadow: 0 0 16px rgba(79, 131, 255, 0.38);
  transform: scaleX(var(--reading-progress, 0));
  transform-origin: left center;
}

.back-to-top {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 80;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(109, 150, 255, 0.42);
  border-radius: 50%;
  background: rgba(3, 10, 24, 0.9);
  color: var(--white);
  font: inherit;
  font-size: 1.25rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 240ms ease,
    transform 280ms var(--motion-ease),
    border-color 240ms ease,
    background 240ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--orange);
  background: rgba(255, 164, 0, 0.12);
  transform: translateY(-3px);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 28%, #4f83ff 72%, transparent);
}

.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--motion-ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.mascot-workstation {
  display: none;
}

.site-mascot.hero-mascot {
  position: absolute;
  top: clamp(4px, 2vw, 24px);
  right: clamp(0px, 1.5vw, 20px);
  bottom: auto;
  left: auto;
  z-index: 7;
  width: 72px;
  height: 90px;
  opacity: 0.96;
}

.site-mascot.is-docked {
  position: relative;
  top: auto;
  right: auto;
  width: 150px;
  height: 154px;
  margin: 34px auto 0;
  z-index: 2;
  animation: dyvissonMascotFloat 5.4s ease-in-out infinite;
}

.site-mascot.is-docked .mascot-head,
.site-mascot.is-docked .mascot-body,
.site-mascot.is-docked .mascot-antenna {
  z-index: 3;
}

.site-mascot.is-docked .mascot-workstation {
  position: absolute;
  top: 82px;
  left: 50%;
  z-index: 4;
  display: block;
  width: 112px;
  height: 52px;
  border: 2px solid rgba(143, 176, 255, 0.68);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(145deg, #0b2149, #061226);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34), inset 0 0 24px rgba(47, 114, 255, 0.18);
  transform: translateX(-50%);
}

.site-mascot.is-docked .mascot-workstation span {
  position: absolute;
  inset: 9px 12px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, #72fff2 0 28%, transparent 28% 36%, #5e8dff 36% 78%, transparent 78%),
    linear-gradient(180deg, transparent 0 55%, rgba(255, 164, 0, 0.72) 55% 68%, transparent 68%);
  opacity: 0.8;
  animation: dyvissonScreenGlow 2.8s ease-in-out infinite;
}

.site-mascot.is-docked .mascot-workstation::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -8px;
  left: -10px;
  height: 8px;
  border-radius: 2px 2px 10px 10px;
  background: linear-gradient(180deg, #6d96ff, #274aa4);
}

.site-mascot.is-docked .mascot-shadow {
  bottom: 0;
  width: 126px;
}

@keyframes dyvissonScreenGlow {
  0%, 100% {
    filter: brightness(0.9);
  }
  50% {
    filter: brightness(1.25);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
    background: rgba(2, 6, 17, 0.9);
    border-bottom-color: rgba(109, 150, 255, 0.16);
    backdrop-filter: blur(16px) saturate(1.15);
  }

  .nav-menu {
    display: flex;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -12px, 0) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 240ms ease,
      visibility 240ms ease,
      transform 280ms var(--motion-ease);
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .nav-menu a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 6px;
  }

  .nav-menu a::after {
    top: 12px;
    right: auto;
    bottom: 12px;
    left: 4px;
    width: 3px;
    height: auto;
    transform: scaleY(0);
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible,
  .nav-menu a.is-active,
  .nav-menu a[aria-current] {
    background: rgba(109, 150, 255, 0.1);
    transform: none;
  }

  .nav-menu a:hover::after,
  .nav-menu a:focus-visible::after,
  .nav-menu a.is-active::after,
  .nav-menu a[aria-current]::after {
    transform: scaleY(1);
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
  }

  .scroll-explore {
    display: none;
  }

  .process-visual-strip.motion-timeline-strip::after {
    transition-duration: 180ms;
  }

  .site-mascot.hero-mascot {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 104px;
    padding-bottom: 58px;
  }

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

  .motion-card,
  .motion-card:hover,
  .motion-card:focus-within {
    transform: none;
  }

  .process-visual-strip.motion-timeline-strip::before,
  .process-visual-strip.motion-timeline-strip::after {
    display: none;
  }

  .process.motion-timeline {
    position: relative;
    padding-left: 18px;
  }

  .process.motion-timeline::before,
  .process.motion-timeline::after {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 3px;
    width: 3px;
    border-radius: 999px;
  }

  .process.motion-timeline::before {
    background: rgba(109, 150, 255, 0.18);
  }

  .process.motion-timeline::after {
    background: linear-gradient(180deg, var(--orange), #4f83ff);
    transform: scaleY(var(--timeline-progress, 0));
    transform-origin: top;
  }

  .process.motion-timeline article.is-current {
    transform: translateX(3px);
  }

  .site-mascot:not(.is-docked) {
    display: none;
  }

  .site-mascot.is-docked {
    width: 136px;
    height: 146px;
    margin-top: 26px;
    opacity: 1;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .motion-ready .reveal-item,
  .motion-ready .reveal-item.is-visible,
  .motion-card,
  .motion-card:hover,
  .motion-card:focus-within,
  .process.motion-timeline article.is-current {
    opacity: 1;
    transform: none !important;
  }
}

/* Publication hotfix: UTF-8 rebuild + hero/footer alignment */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.section-band,
.hero {
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: clamp(30px, 4.8vw, 58px);
}

.hero-copy {
  min-width: 0;
}

.hero-authority {
  --portrait-size: min(43vw, 430px);
  width: min(100%, 560px);
  min-height: 560px;
  justify-self: end;
  padding: 22px clamp(18px, 2.6vw, 34px) 68px;
  overflow: visible;
}

.hero-authority::before,
.hero-authority .glow-rings {
  width: min(88%, 480px);
}

.founder-portrait {
  max-width: 430px;
}

.hero-authority .orbit-card {
  max-width: 154px;
  white-space: nowrap;
}

.hero-authority .orbit-card-one {
  top: 92px;
  left: 12px;
}

.hero-authority .orbit-card-two {
  top: 170px;
  right: 12px;
}

.hero-authority .orbit-card-three {
  left: 18px;
  bottom: 132px;
}

.hero-authority .orbit-card-four {
  right: 18px;
  bottom: 104px;
}

.hero-authority .hero-card {
  bottom: 8px;
  width: min(300px, calc(100% - 72px));
}

.site-mascot.hero-mascot {
  top: clamp(12px, 1.8vw, 26px);
  right: clamp(16px, 2.4vw, 34px);
}

.site-footer {
  overflow: hidden;
}

.footer-grid {
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.95fr) minmax(280px, 0.9fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 12px 14px;
  justify-content: stretch;
}

.footer-links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-authority {
    justify-self: center;
    --portrait-size: min(72vw, 420px);
  }
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .hero-authority {
    --portrait-size: min(78vw, 310px);
    min-height: 455px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-authority .orbit-card,
  .hero-card {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Restore preferred footer tone and orbiting hero labels */
.site-footer {
  color: rgba(230, 240, 255, 0.78);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 164, 0, 0.12), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(47, 107, 255, 0.12), transparent 30%),
    linear-gradient(105deg, #17120f 0%, #07131f 34%, #001d33 100%);
  border-top: 1px solid rgba(255, 164, 0, 0.16);
}

.site-footer::before {
  background: linear-gradient(90deg, transparent, rgba(255, 164, 0, 0.92) 24%, rgba(47, 107, 255, 0.82) 74%, transparent);
}

.footer-brand,
.footer-contact,
.footer-links {
  min-width: 0;
}

.footer-brand img {
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.24));
}

.footer-contact > span,
.footer-links > span {
  color: var(--orange);
}

.footer-contact .contact-channel {
  background: rgba(255, 164, 0, 0.08);
  border-color: rgba(255, 164, 0, 0.34);
}

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

.hero-authority {
  --orbit-radius: min(23vw, 232px);
  overflow: visible;
}

.hero-authority .orbit-card {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  max-width: 158px;
  min-height: 50px;
  animation: dyvissonNameOrbit 22s linear infinite;
  transform-origin: 0 0;
  will-change: transform;
}

.hero-authority .orbit-card-one {
  --orbit-start: 218deg;
  --orbit-start-neg: -218deg;
  animation-delay: 0s;
}

.hero-authority .orbit-card-two {
  --orbit-start: 338deg;
  --orbit-start-neg: -338deg;
  animation-delay: -2s;
}

.hero-authority .orbit-card-three {
  --orbit-start: 142deg;
  --orbit-start-neg: -142deg;
  animation-delay: -4s;
}

.hero-authority .orbit-card-four {
  --orbit-start: 38deg;
  --orbit-start-neg: -38deg;
  animation-delay: -6s;
}

.hero-authority:hover .orbit-card {
  animation-play-state: paused;
}

@keyframes dyvissonNameOrbit {
  from {
    transform: translate(-50%, -50%) rotate(var(--orbit-start)) translateX(var(--orbit-radius)) rotate(var(--orbit-start-neg));
  }

  to {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-start) + 360deg)) translateX(var(--orbit-radius)) rotate(calc(var(--orbit-start-neg) - 360deg));
  }
}

@media (max-width: 1120px) {
  .hero-authority {
    --orbit-radius: min(35vw, 230px);
  }
}

@media (max-width: 640px) {
  .hero-authority {
    --orbit-radius: min(40vw, 176px);
    overflow: hidden;
  }

  .hero-authority .orbit-card {
    display: inline-flex;
    min-width: 90px;
    min-height: 38px;
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .hero-authority .hero-card {
    display: none;
  }
}

/* Dayvisson footer creative panel - 2026-07-28 */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 82px);
  color: rgba(232, 240, 255, 0.82) !important;
  background:
    radial-gradient(circle at 13% 20%, rgba(255, 164, 0, 0.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(47, 107, 255, 0.2), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(0, 30, 56, 0.9), transparent 48%),
    linear-gradient(115deg, #18110d 0%, #08111d 34%, #001b31 72%, #020711 100%) !important;
  border-top: 1px solid rgba(255, 164, 0, 0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 164, 0, 0.95) 18%, rgba(47, 107, 255, 0.95) 50%, rgba(255, 164, 0, 0.85) 82%, transparent 100%) !important;
  box-shadow: 0 0 28px rgba(47, 107, 255, 0.42);
}

.site-footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -130px;
  bottom: -150px;
  width: min(46vw, 480px);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    repeating-radial-gradient(circle, rgba(255, 164, 0, 0.22) 0 4px, transparent 5px 18px),
    radial-gradient(circle, rgba(47, 107, 255, 0.2), transparent 64%);
  opacity: 0.35;
  filter: blur(0.2px);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 0.95fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.footer-brand,
.footer-contact,
.footer-links {
  min-width: 0;
}

.footer-brand img {
  width: min(210px, 58vw);
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 18px rgba(255, 164, 0, 0.12));
}

.footer-brand p {
  display: grid;
  gap: 12px;
  max-width: 370px;
  margin: 0;
}

.footer-brand strong {
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  letter-spacing: 0;
}

.footer-brand span,
.footer-contact small {
  color: rgba(216, 229, 255, 0.78);
  line-height: 1.65;
}

.footer-contact,
.footer-links {
  padding-top: 6px;
}

.footer-contact > span,
.footer-links > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact > span::before,
.footer-links > span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  box-shadow: 0 0 18px rgba(255, 164, 0, 0.55);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact .contact-channel {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 164, 0, 0.12), rgba(47, 107, 255, 0.08)),
    rgba(4, 18, 34, 0.74) !important;
  border: 1px solid rgba(255, 164, 0, 0.38) !important;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-contact .contact-channel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%, transparent 72%, rgba(47, 107, 255, 0.12));
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.footer-contact .contact-channel:hover,
.footer-contact .contact-channel:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 164, 0, 0.72) !important;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28), 0 0 0 4px rgba(255, 164, 0, 0.08);
}

.footer-contact .contact-channel:hover::after,
.footer-contact .contact-channel:focus-visible::after {
  opacity: 1;
}

.footer-contact .contact-channel .channel-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  color: var(--orange);
  background: rgba(255, 164, 0, 0.12);
  border-color: rgba(255, 164, 0, 0.36);
}

.footer-contact .contact-channel .channel-text {
  overflow-wrap: anywhere;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 12px 14px;
}

.footer-links > span {
  grid-column: 1 / -1;
}

.footer-links a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.14), rgba(1, 17, 33, 0.7));
  border: 1px solid rgba(73, 124, 255, 0.34);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #07111f;
  background: linear-gradient(135deg, var(--orange), #2f6bff);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: clamp(32px, 5vw, 58px);
  padding: 22px 0 28px;
  text-align: center !important;
  border-top: 1px solid rgba(216, 229, 255, 0.12);
}

.footer-bottom p {
  width: 100%;
  margin: 0 auto;
  color: rgba(216, 229, 255, 0.68);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding-top: 42px;
  }

  .site-footer::after {
    right: -190px;
    bottom: -170px;
    width: 420px;
    opacity: 0.24;
  }

  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact,
  .footer-links {
    text-align: left;
  }

  .footer-brand img {
    width: 186px;
    margin-bottom: 22px;
  }

  .footer-contact .contact-channel,
  .footer-links a {
    min-height: 54px;
    justify-content: flex-start;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}

/* Footer stability fix - keeps contact text readable on every page */
.site-footer .footer-grid {
  grid-template-columns:
    minmax(260px, 1fr)
    minmax(320px, 0.92fr)
    minmax(300px, 0.88fr) !important;
  column-gap: clamp(34px, 5vw, 78px) !important;
  row-gap: 34px !important;
}

.site-footer .footer-contact {
  width: 100% !important;
  min-width: 300px !important;
  max-width: 420px !important;
}

.site-footer .footer-contact .contact-channel {
  display: flex !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  align-items: center !important;
  gap: 12px !important;
  overflow: hidden !important;
}

.site-footer .footer-contact .contact-channel .channel-icon {
  display: inline-flex !important;
  flex: 0 0 36px !important;
}

.site-footer .footer-contact .contact-channel .channel-text {
  display: block !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  line-height: 1.25 !important;
}

.site-footer .footer-links {
  grid-template-columns: repeat(2, minmax(142px, 1fr)) !important;
  min-width: 280px !important;
}

.site-footer .footer-links a {
  white-space: nowrap !important;
}

@media (max-width: 1060px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 720px) {
  .site-footer .footer-grid,
  .site-footer .footer-links {
    grid-template-columns: 1fr !important;
  }

  .site-footer .footer-contact,
  .site-footer .footer-links {
    min-width: 0 !important;
    max-width: none !important;
    width: 100% !important;
  }

  .site-footer .footer-links a {
    justify-content: center !important;
  }
}

/* Footer strategic refactor - compact, aligned and conversion focused */
.site-footer {
  z-index: 70 !important;
  padding: clamp(38px, 4vw, 50px) 0 0 !important;
  min-height: auto !important;
  background:
    radial-gradient(circle at 8% 22%, rgba(255, 164, 0, 0.1), transparent 28%),
    radial-gradient(circle at 92% 86%, rgba(47, 107, 255, 0.14), transparent 34%),
    linear-gradient(115deg, #120f0e 0%, #07111d 38%, #031b31 100%) !important;
}

.site-footer::after {
  right: -170px !important;
  bottom: -210px !important;
  width: min(34vw, 340px) !important;
  opacity: 0.16 !important;
}

.site-footer .container {
  max-width: 1200px !important;
}

.site-footer .footer-grid {
  grid-template-columns: minmax(250px, 0.9fr) minmax(310px, 1fr) minmax(340px, 1.05fr) !important;
  gap: clamp(30px, 4.5vw, 56px) !important;
  align-items: start !important;
}

.site-footer .footer-brand,
.site-footer .footer-contact,
.site-footer .footer-links {
  align-self: start !important;
  padding-top: 0 !important;
}

.site-footer .footer-brand {
  display: grid !important;
  gap: 10px !important;
}

.site-footer .footer-brand img {
  width: clamp(146px, 14vw, 168px) !important;
  margin: 0 0 12px !important;
}

.site-footer .footer-brand > strong {
  color: #ffffff !important;
  font-size: 1.02rem !important;
  line-height: 1.25 !important;
}

.site-footer .footer-description,
.site-footer .footer-location {
  max-width: 380px !important;
  margin: 0 !important;
  color: rgba(216, 229, 255, 0.76) !important;
  font-size: 0.9rem !important;
  line-height: 1.48 !important;
}

.site-footer .footer-location {
  color: rgba(216, 229, 255, 0.62) !important;
  font-size: 0.82rem !important;
}

.site-footer .footer-socials {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 2px !important;
}

.site-footer .footer-socials a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 6px 11px !important;
  color: rgba(216, 229, 255, 0.82) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  border: 1px solid rgba(109, 150, 255, 0.22) !important;
  border-radius: 999px !important;
  background: rgba(5, 19, 38, 0.55) !important;
}

.site-footer .footer-socials a:hover,
.site-footer .footer-socials a:focus-visible {
  color: #07111f !important;
  border-color: rgba(255, 164, 0, 0.78) !important;
  background: var(--orange) !important;
}

.site-footer .footer-title,
.site-footer .footer-contact > span,
.site-footer .footer-links > span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 16px !important;
  color: #69a0ff !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.site-footer .footer-title::before,
.site-footer .footer-contact > span::before,
.site-footer .footer-links > span::before {
  width: 26px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--orange), #4f83ff) !important;
  box-shadow: none !important;
}

.site-footer .footer-contact {
  display: grid !important;
  gap: 8px !important;
  min-width: 0 !important;
  max-width: none !important;
}

.site-footer .footer-contact .contact-channel {
  min-height: 46px !important;
  padding: 8px 11px !important;
  gap: 10px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  border: 1px solid rgba(109, 150, 255, 0.22) !important;
  border-radius: 12px !important;
  background:
    linear-gradient(135deg, rgba(255, 164, 0, 0.08), rgba(47, 107, 255, 0.06)),
    rgba(5, 17, 32, 0.82) !important;
  box-shadow: none !important;
}

.site-footer .footer-contact .contact-channel .channel-icon {
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;
  color: #ffffff !important;
  border: 1px solid rgba(109, 150, 255, 0.26) !important;
  background: rgba(47, 107, 255, 0.2) !important;
}

.site-footer .channel-copy {
  display: grid !important;
  min-width: 0 !important;
  gap: 2px !important;
  flex: 1 1 auto !important;
}

.site-footer .channel-copy strong {
  color: #ffffff !important;
  font-size: 0.84rem !important;
  line-height: 1.18 !important;
}

.site-footer .channel-copy span {
  max-width: 100% !important;
  overflow: hidden !important;
  color: rgba(216, 229, 255, 0.68) !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.site-footer .channel-arrow {
  flex: 0 0 auto !important;
  color: rgba(255, 164, 0, 0.88) !important;
  font-weight: 900 !important;
  transform: translateX(0) !important;
  transition: transform 180ms ease, color 180ms ease !important;
}

.site-footer .footer-contact .contact-channel:hover,
.site-footer .footer-contact .contact-channel:focus-visible {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 164, 0, 0.58) !important;
  background:
    linear-gradient(135deg, rgba(255, 164, 0, 0.16), rgba(47, 107, 255, 0.1)),
    rgba(6, 20, 39, 0.96) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22) !important;
}

.site-footer .footer-contact .contact-channel:hover .channel-arrow,
.site-footer .footer-contact .contact-channel:focus-visible .channel-arrow {
  color: #ffffff !important;
  transform: translateX(3px) !important;
}

.site-footer .footer-navigation {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 13px !important;
  min-width: 0 !important;
}

.site-footer .footer-link-groups {
  display: grid !important;
  grid-template-columns: minmax(130px, 1fr) minmax(160px, 1.15fr) !important;
  gap: 24px !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

.site-footer .footer-link-group {
  display: grid !important;
  align-content: start !important;
  gap: 7px !important;
}

.site-footer .footer-link-group strong {
  margin-bottom: 2px !important;
  color: #ffffff !important;
  font-size: 0.92rem !important;
}

.site-footer .footer-links a,
.site-footer .footer-legal-links a,
.site-footer .footer-bottom-links a {
  min-height: 0 !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  color: rgba(216, 229, 255, 0.72) !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible,
.site-footer .footer-legal-links a:hover,
.site-footer .footer-legal-links a:focus-visible,
.site-footer .footer-bottom-links a:hover,
.site-footer .footer-bottom-links a:focus-visible {
  color: var(--orange) !important;
  background: transparent !important;
  transform: none !important;
}

.site-footer .footer-legal-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 16px !important;
  grid-column: 1 / -1 !important;
  padding-top: 12px !important;
  margin-top: 2px !important;
  border-top: 1px solid rgba(216, 229, 255, 0.08) !important;
}

.site-footer .footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: min(100% - 40px, 1200px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  margin-top: clamp(18px, 2.8vw, 24px) !important;
  padding: 13px 0 18px !important;
  text-align: left !important;
  border-top: 1px solid rgba(216, 229, 255, 0.1) !important;
}

.site-footer .footer-bottom p {
  width: auto !important;
  margin: 0 !important;
  color: rgba(216, 229, 255, 0.66) !important;
  font-size: 0.86rem !important;
}

.site-footer .footer-bottom-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 8px 14px !important;
  color: rgba(216, 229, 255, 0.58) !important;
  font-size: 0.84rem !important;
}

.back-to-top {
  right: 24px !important;
  bottom: 24px !important;
  width: 44px !important;
  height: 44px !important;
  border-color: rgba(109, 150, 255, 0.44) !important;
  background: rgba(3, 13, 28, 0.96) !important;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: #07111f !important;
  background: var(--orange) !important;
}

@media (max-width: 1080px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-top: 36px !important;
  }

  .site-footer::after {
    right: -210px !important;
    bottom: -230px !important;
    width: 360px !important;
    opacity: 0.11 !important;
  }

  .site-footer .footer-grid,
  .site-footer .footer-link-groups {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .site-footer .footer-brand img {
    width: 148px !important;
  }

  .site-footer .footer-contact .contact-channel {
    min-height: 48px !important;
  }

  .site-footer .footer-bottom {
    display: grid !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .site-footer .footer-bottom-links {
    justify-content: center !important;
  }

  .back-to-top {
    right: 18px !important;
    bottom: 18px !important;
  }
}


.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.blog-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: rgba(37, 99, 235, 0.16);
  font-weight: 800;
}

.blog-pagination a:hover,
.blog-pagination a[aria-current="page"] {
  border-color: rgba(255, 162, 0, 0.75);
  background: linear-gradient(135deg, rgba(255, 162, 0, 0.28), rgba(37, 99, 235, 0.26));
}
