@font-face {
  font-family: Inter;
  src: url('/technology/assets/inter.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Exo;
  src: url('/technology/assets/exo.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #071b2e;
  --blue: #0060ed;
  --lime: #c6f500;
  --cyan: #42d2e7;
  --text: #425365;
  --muted: #eff3f6;
  --line: #dbe3e9;
  --white: #fff;
  --max: 1280px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a,
button {
  touch-action: manipulation;
}
button {
  color: inherit;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke-width: 1.6;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Exo, Inter, Arial, sans-serif;
  line-height: 1.13;
}
h1 {
  font-size: 76px;
  font-weight: 650;
}
h2 {
  font-size: 44px;
  font-weight: 600;
}
h3 {
  font-size: 23px;
  font-weight: 600;
}
p {
  color: var(--text);
}
em {
  color: var(--lime);
  font-style: normal;
}
strong {
  font-weight: 650;
}
ul {
  padding: 0;
  list-style: none;
}
button {
  border: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.site-header :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible {
  outline-color: var(--lime);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(var(--max), calc(100% - 96px));
  margin: auto;
}
.blue {
  color: var(--blue);
}
.green {
  color: var(--lime);
}
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  color: var(--blue);
  margin-bottom: 22px;
  line-height: 1.5;
}
.eyebrow.light {
  color: var(--cyan);
}
.section {
  padding: 108px 0;
  scroll-margin-top: 82px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 370px;
}
.section-heading h2 {
  max-width: 750px;
}
.section h2 + p {
  margin-top: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 650;
  border-radius: 4px;
  line-height: 1.4;
  transition:
    background 0.18s,
    transform 0.18s;
  white-space: normal;
  text-align: center;
}
.button:hover {
  transform: translateY(-2px);
}
.button.lime {
  background: var(--lime);
  color: var(--ink);
}
.button.lime:hover {
  background: #d8ff31;
}
.button.ghost {
  border: 1px solid #6e8295;
  background: transparent;
  color: white;
}
.button.ghost:hover {
  background: #173248;
}
.button.blue-button {
  background: var(--blue);
  color: white;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 650;
}
.text-link:hover {
  color: var(--blue);
}
.text-link svg {
  width: 18px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  padding: 10px;
  background: var(--lime);
  color: var(--ink);
}
.skip-link:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* One header instance and one mobile toggle, with no scroll-time colour overrides. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid #ffffff24;
}
.nav-wrap {
  width: min(1440px, calc(100% - 72px));
  margin: auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-family: Exo, Inter, sans-serif;
  font-size: 32px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  color: white;
}
.brand span {
  color: var(--lime);
}
#main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 550;
}
.nav-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  padding: 24px 0;
  color: #fff;
  font-size: 13px;
}
.nav-trigger svg {
  width: 14px;
  height: 14px;
}
#main-nav > a:not(.button):hover,
.nav-trigger:hover {
  color: var(--lime);
}
.nav-group {
  position: relative;
}
.dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% - 4px);
  left: -24px;
  background: white;
  color: var(--ink);
  width: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px #0002;
  border-radius: 6px;
  transform: translateY(8px);
  transition:
    opacity 0.15s,
    transform 0.15s;
}
.dropdown .eyebrow {
  display: block;
  margin: 0 0 14px;
}
.dropdown > a {
  display: flex;
  gap: 16px;
  padding: 13px 8px;
  border-radius: 4px;
}
.dropdown > a:hover {
  background: #f0f5fb;
}
.dropdown > a svg {
  color: var(--blue);
  margin-top: 3px;
}
.dropdown small {
  display: block;
  font-size: 11px;
  color: #526373;
  font-weight: 400;
}
.nav-group.open .dropdown {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 12px;
}
.nav-login svg {
  width: 15px;
}
.nav-cta {
  min-height: 42px;
  padding: 12px 16px;
}
.menu-toggle {
  display: none;
}
.icon-button {
  background: transparent;
  color: inherit;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff40;
  border-radius: 4px;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #061725;
  color: white;
  min-height: 690px;
  height: min(820px, calc(100svh - 88px));
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 100px;
  pointer-events: none;
}
.hero-content a,
.hero-content button {
  pointer-events: auto;
}
.hero h1 {
  max-width: 760px;
  line-height: 1.03;
}
.hero-description {
  color: #c5d2df;
  font-size: 17px;
  line-height: 1.7;
  max-width: 505px;
  margin-top: 28px;
}
.hero-tags {
  display: flex;
  gap: 25px;
  font-size: 11px;
  color: #a8bed0;
  margin-top: 38px;
}
.hero-tags span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-tags svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  margin-right: 7px;
}
.globe-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #061725;
}
.globe-stage:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #061725 0%,
    #061725e8 26%,
    #06172575 43%,
    transparent 65%
  );
  pointer-events: none;
}
.globe-stage canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-bottom {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
  font-size: 9px;
  color: #8fa6ba;
}
.hero-bottom > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #728798;
  border-radius: 50%;
}
.motion-toggle {
  background: transparent;
  color: #c4d6e2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  padding: 8px;
}
.motion-toggle svg {
  width: 14px;
  height: 14px;
}
.hero-note {
  color: #aebfcf;
  font-size: 12px;
  margin-top: 28px;
}
.globe-fallback {
  position: absolute;
  right: 1%;
  top: 8%;
  width: 56%;
  height: 84%;
  border-radius: 50%;
  background: url('/technology/assets/earth.jpg') 50% / cover;
  box-shadow: inset -100px -20px 100px #00111be8;
  opacity: 0.7;
}
.ecosystem {
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.ecosystem > .wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.ecosystem p {
  font-size: 11px;
  line-height: 1.6;
  min-width: 170px;
}
.ecosystem p strong {
  color: var(--ink);
}
.ecosystem-brands {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex: 1;
}
.ecosystem-brands > a {
  font-size: 23px;
  font-weight: 700;
  color: #233d50;
  white-space: nowrap;
}
.ecosystem-brands > a:hover {
  opacity: 0.7;
}
.ecosystem-brands .green {
  color: #749600;
}
.ecosystem-brands .microsoft {
  display: flex;
  gap: 9px;
  align-items: center;
  font-weight: 500;
  font-size: 21px;
}
.ms-mark {
  display: grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 2px;
}
.ms-mark b:nth-child(1) {
  background: #f25022;
}
.ms-mark b:nth-child(2) {
  background: #7fba00;
}
.ms-mark b:nth-child(3) {
  background: #00a4ef;
}
.ms-mark b:nth-child(4) {
  background: #ffb900;
}
.sibs {
  font-style: italic;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  padding: 28px 25px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  transition:
    border-color 0.2s,
    transform 0.2s;
  background: #fff;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}
.service-card > svg,
.card-top > svg {
  color: var(--blue);
  width: 31px;
  height: 31px;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.card-top > span {
  font-size: 11px;
  color: #7b8b99;
}
.service-card h3 {
  margin-top: 36px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.85;
  margin: 16px 0 28px;
}
.service-card .text-link {
  margin-top: auto;
  font-size: 11px;
  gap: 5px;
}
.sector-section {
  background: #f2f5f7;
}
.sector-tabs {
  display: flex;
  border-bottom: 1px solid #cbd6df;
  gap: 0;
  overflow: auto;
  scrollbar-width: thin;
}
.sector-tabs button {
  background: none;
  padding: 17px 20px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  color: #5a6978;
  white-space: nowrap;
}
.sector-tabs button[aria-selected='true'] {
  color: var(--blue);
  border-color: var(--blue);
}
.sector-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 44px;
  min-height: 340px;
}
.sector-panel h3 {
  font-size: 34px;
}
.sector-panel p {
  font-size: 15px;
  margin-top: 20px;
  max-width: 490px;
}
.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0;
  color: var(--text);
  font-size: 13px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: start;
}
.check-list svg {
  width: 18px;
  height: 20px;
  color: var(--blue);
}
.sector-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1.55;
}
.sector-image img {
  height: 100%;
}
.sector-image > span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 12px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}
.ai-section {
  background: var(--ink);
  color: white;
}
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.ai-layout h2 {
  font-size: 52px;
}
.ai-layout p {
  color: #b7c7d4;
  margin: 24px 0 30px;
  max-width: 460px;
}
.workflow {
  padding: 0 0 0 20px;
}
.flow-item {
  border: 1px solid #466078;
  padding: 21px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #0b2339;
  border-radius: 6px;
}
.flow-item > svg {
  color: var(--cyan);
  width: 28px;
  height: 28px;
}
.flow-item > svg:last-child {
  margin-left: auto;
  width: 20px;
  color: var(--lime);
}
.flow-item small {
  display: block;
  font-size: 9px;
  color: var(--cyan);
}
.flow-item strong {
  display: block;
  font-size: 14px;
  margin: 6px 0;
}
.flow-item span {
  font-size: 11px;
  color: #a5b9cb;
}
.flow-focus {
  border-color: var(--lime);
}
.flow-connector {
  height: 30px;
  width: 1px;
  margin: auto;
  background: var(--cyan);
  position: relative;
}
.flow-connector:after {
  content: '';
  position: absolute;
  top: 0;
  width: 3px;
  height: 6px;
  background: var(--lime);
  left: -1px;
  animation: travel 2s infinite;
}
.workflow > p {
  font-size: 10px;
  text-align: center;
  margin: 20px 0 0;
}
.processing-dots {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.processing-dots b {
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}
.processing-dots b:nth-child(2) {
  animation-delay: 0.2s;
}
.processing-dots b:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes blink {
  50% {
    opacity: 0.25;
  }
}
@keyframes travel {
  to {
    transform: translateY(25px);
  }
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.project-visual {
  display: flex;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.3;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
  border-radius: 5px;
  background: #dfff71;
  color: #173224;
}
.project-visual > strong {
  font-size: 42px;
  z-index: 1;
  font-family: Exo, Inter, sans-serif;
}
.project-category {
  position: absolute;
  top: 23px;
  left: 26px;
  font-size: 10px;
  font-weight: 650;
}
.project-symbol {
  position: absolute;
  right: 28px;
  bottom: 23px;
  opacity: 0.25;
  transform: rotate(-15deg);
  transition: transform 0.3s;
}
.project-symbol svg {
  width: 120px;
  height: 120px;
  stroke-width: 1;
}
.project-visual:hover .project-symbol {
  transform: rotate(0) scale(1.1);
}
.gajopay {
  background: #d9eaff;
  color: #0643b4;
}
.restiza {
  background: #ffe7db;
  color: #a43921;
}
.project-open {
  position: absolute;
  right: 18px;
  top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.project-open svg {
  width: 16px;
}
.project-card h3 {
  font-size: 21px;
  margin: 25px 0 12px;
}
.project-card p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 17px;
}
.project-card .text-link {
  font-size: 12px;
}
.project-visual.has-screenshot {
  padding: 0;
  background: #eaf0f4;
}
.project-visual.has-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s;
}
.project-visual.has-screenshot:hover img {
  transform: scale(1.025);
}
.infrastructure {
  background: #f4f6f8;
}
.infrastructure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.infrastructure p {
  margin-top: 24px;
  font-size: 15px;
}
.network-art {
  position: relative;
  aspect-ratio: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      circle at center,
      transparent 49%,
      #d4e3f350 49.2%,
      transparent 49.8%
    ),
    linear-gradient(#dce4e94d 1px, transparent 1px),
    linear-gradient(90deg, #dce4e94d 1px, transparent 1px);
  background-size:
    auto,
    28px 28px,
    28px 28px;
  overflow: hidden;
}
.network-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  z-index: 2;
}
.network-core svg {
  color: var(--lime);
  width: 32px;
  height: 32px;
}
.network-core strong {
  font-size: 36px;
}
.network-core span {
  font-size: 10px;
  color: #b5c8d8;
}
.network-orbit {
  position: absolute;
  border: 1px solid #80aaff;
  border-radius: 50%;
  width: 80%;
  height: 50%;
  transform: rotate(-32deg);
}
.orbit-2 {
  transform: rotate(45deg);
}
.network-location {
  position: absolute;
  z-index: 3;
  background: white;
  border: 1px solid #d2dde8;
  font-size: 9px;
  font-weight: 700;
  padding: 10px 14px;
}
.loc-1 {
  top: 16%;
  right: 7%;
}
.loc-2 {
  bottom: 14%;
  right: 5%;
}
.loc-3 {
  top: 39%;
  left: 1%;
}
.domain-band {
  background: #0649ce;
  color: white;
  padding: 65px 0;
}
.domain-band > .wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}
.domain-band h2 {
  font-size: 33px;
}
.domain-band p:not(.eyebrow) {
  font-size: 11px;
  color: #d6e4ff;
  margin-top: 12px;
}
.domain-form {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 7px;
  border-radius: 5px;
  gap: 14px;
  color: #526273;
}
.domain-form > svg {
  margin-left: 12px;
  width: 18px;
}
.domain-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 12px 0;
  font-size: 13px;
  outline-offset: 1px;
}
.domain-form .button {
  font-size: 12px;
  min-height: 44px;
  padding: 12px 18px;
}
.domain-form .button svg {
  width: 16px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  margin-top: 50px;
}
.process-grid article {
  border-top: 1px solid #ccd8e3;
  padding-top: 26px;
}
.process-grid article > span {
  color: var(--blue);
  font-family: Exo, Inter, sans-serif;
  font-size: 31px;
  font-weight: 500;
}
.process-grid h3 {
  font-size: 23px;
  margin: 18px 0 14px;
}
.process-grid p {
  font-size: 13px;
  line-height: 1.9;
}
.faq-section {
  background: #f2f5f7;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}
.faq-layout > div > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 14px;
}
.faqs details {
  border-bottom: 1px solid #cbd6df;
  padding: 21px 0;
}
.faqs details:first-child {
  padding-top: 0;
}
.faqs summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}
.faqs summary::-webkit-details-marker {
  display: none;
}
.faqs summary svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.faqs details[open] summary svg {
  transform: rotate(45deg);
}
.faqs details p {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.9;
}
.contact-section {
  background: var(--ink);
  color: white;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 100px;
}
.contact-layout h2 {
  font-size: 48px;
}
.contact-layout p {
  color: #bbcbd7;
  margin: 24px 0 28px;
  max-width: 470px;
  font-size: 15px;
}
.contact-layout .text-link {
  color: var(--cyan);
  font-size: 12px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form label {
  font-size: 12px;
  color: #d4e2ed;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #0e2a40;
  color: #fff;
  border: 1px solid #466078;
  border-radius: 4px;
  padding: 12px 15px;
  min-width: 0;
  max-width: 100%;
  font-size: 13px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form textarea::placeholder {
  color: #a1b6c8;
}
.contact-form label:not(:first-child) {
  margin-top: 10px;
}
.contact-form button {
  margin-top: 10px;
}
.contact-form small {
  color: #a1b6c8;
  font-size: 10px;
  line-height: 1.7;
}
.site-footer {
  background: #04131f;
  color: #d0dce5;
  padding: 0 0 25px;
  border-top: 1px solid #ffffff1a;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ffffff1c;
}
.footer-brands {
  background: #fff;
  margin-bottom: 65px;
  padding: 28px 0;
}
.footer-brands-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 24px;
}
.footer-brands-list a {
  display: flex;
  flex: 0 1 132px;
  min-width: 0;
  height: 64px;
  align-items: center;
  justify-content: center;
}
.footer-brands-list img {
  display: block;
  width: 132px;
  max-width: 100%;
  height: 48px;
  object-fit: contain;
}
.footer-brands-list a:focus-visible {
  outline: 2px solid #0066ff;
  outline-offset: 5px;
}
.footer-eu {
  flex-shrink: 0;
  display: inline-flex;
  padding: 4px;
}
.footer-eu img {
  width: 59px;
  height: 40px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .footer-brands-list { gap: 12px 24px; }
  .footer-brands-list a { flex-basis: 112px; }
  .footer-brands { margin-bottom: 40px; }
}
.footer-top p {
  font-size: 12px;
  color: #a5b6c4;
  flex: 1;
  max-width: 520px;
}
.footer-top .text-link {
  font-size: 12px;
  color: var(--lime);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
}
.footer-grid h2 {
  color: white;
  font:
    600 13px Inter,
    Arial,
    sans-serif;
  margin-bottom: 18px;
}
.footer-grid a {
  display: block;
  color: #9fb2c2;
  font-size: 12px;
  line-height: 2.3;
}
.footer-grid a:hover {
  color: var(--lime);
}
.footer-legal {
  padding-top: 24px;
  border-top: 1px solid #ffffff1c;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.footer-legal p,
.footer-legal > span {
  color: #8ea3b4;
  font-size: 10px;
  line-height: 1.9;
}
.whatsapp {
  position: fixed;
  z-index: 40;
  right: 25px;
  bottom: 24px;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 17px;
  border-radius: 6px;
  box-shadow: 0 4px 24px #001b2e30;
  font-size: 11px;
  font-weight: 650;
}
.whatsapp svg {
  width: 21px;
  height: 21px;
}
.subhero {
  background: var(--ink);
  color: white;
  padding: 100px 0 95px;
  border-bottom: 5px solid var(--lime);
}
.subhero h1 {
  font-size: 60px;
  max-width: 1000px;
}
.subhero p:not(.eyebrow) {
  color: #c0d0dd;
  max-width: 680px;
  font-size: 17px;
  margin-top: 27px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.split p {
  margin-top: 24px;
}
.editorial-image {
  aspect-ratio: 1.5;
  border-radius: 6px;
}
.narrow {
  max-width: 900px;
}
.narrow p {
  font-size: 17px;
  line-height: 1.9;
  margin: 24px 0 30px;
}
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.large-list {
  display: grid;
  gap: 28px;
}
.large-list li {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}
.large-list li > span {
  color: var(--blue);
  font-size: 15px;
}
.large-list p {
  font-size: 13px;
  margin-top: 12px;
}
.capabilities {
  border-left: 2px solid var(--lime);
  padding-left: 36px;
}
.ai-section .check-list,
.ai-section p {
  color: #bfceda;
}
.ai-section .check-list svg {
  color: var(--lime);
}
.notice-band {
  padding: 25px 0;
  background: #eaf1fc;
}
.notice-band > .wrap {
  display: flex;
  gap: 20px;
}
.notice-band p {
  font-size: 12px;
}
.notice-band a {
  text-decoration: underline;
}
.notice-band svg {
  color: var(--blue);
}
@media (min-width: 1700px) {
  .hero {
    height: 790px;
  }
  .hero-content {
    padding-top: 105px;
  }
  .hero h1 {
    font-size: 88px;
  }
}
@media (max-width: 1200px) {
  #main-nav {
    gap: 19px;
  }
  .nav-wrap {
    width: calc(100% - 48px);
  }
  .nav-login {
    margin-left: 0;
  }
  .nav-cta {
    font-size: 11px;
  }
  .wrap {
    width: calc(100% - 72px);
  }
  .hero h1 {
    font-size: 66px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-content {
    padding-top: 75px;
  }
  .section {
    padding: 85px 0;
  }
  .service-grid {
    gap: 14px;
  }
  .service-card {
    padding: 23px 20px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .ai-layout,
  .infrastructure-grid,
  .contact-layout,
  .split {
    gap: 55px;
  }
  .ecosystem-brands {
    gap: 22px;
  }
  .ecosystem-brands > a {
    font-size: 20px;
  }
  .ecosystem-brands .microsoft {
    font-size: 18px;
  }
  .faq-layout {
    gap: 55px;
  }
}
@media (max-width: 1100px) {
  .nav-wrap {
    min-height: 76px;
  }
  .menu-toggle {
    display: flex;
  }
  #main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 76px);
    overflow: auto;
    background: var(--ink);
    padding: 20px 30px 30px;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid #425365;
  }
  #main-nav.is-open {
    display: flex;
    flex-direction: column;
  }
  #main-nav > a {
    padding: 14px 0;
  }
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 15px;
  }
  .dropdown {
    display: none;
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    width: 100%;
    margin-bottom: 10px;
    padding: 18px;
    background: #102d44;
    color: #fff;
    border-color: #37536a;
    box-shadow: none;
  }
  .dropdown small {
    color: #b1c5d5;
  }
  .dropdown .eyebrow {
    color: var(--cyan);
  }
  .dropdown > a:hover {
    background: #193c57;
  }
  .dropdown > a svg {
    color: var(--cyan);
  }
  .nav-group.open .dropdown {
    display: block;
  }
  .nav-cta {
    margin-top: 14px;
  }
  .nav-login {
    justify-content: space-between;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card h3 {
    margin-top: 25px;
  }
  .ecosystem > .wrap {
    gap: 25px;
  }
  .ecosystem-brands {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px 35px;
  }
  .hero {
    min-height: 650px;
    height: calc(100svh - 76px);
    max-height: 790px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-description {
    max-width: 445px;
  }
  .hero-tags {
    gap: 16px;
  }
  .hero-content .actions {
    max-width: 450px;
  }
  .hero-content .button {
    font-size: 12px;
  }
  .sector-panel {
    gap: 35px;
  }
  .sector-panel h3 {
    font-size: 29px;
  }
  .section-heading {
    align-items: start;
  }
  .section-heading > p {
    max-width: 300px;
  }
  h2 {
    font-size: 37px;
  }
  .portfolio-grid {
    gap: 23px;
  }
  .project-visual > strong {
    font-size: 33px;
  }
  .project-visual {
    padding: 25px;
  }
  .process-grid {
    gap: 22px;
  }
  .domain-band > .wrap {
    gap: 35px;
  }
  .domain-form {
    gap: 8px;
  }
  .domain-form > svg {
    display: none;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    width: calc(100% - 40px);
    min-height: 70px;
  }
  .brand {
    font-size: 28px;
  }
  #main-nav {
    top: 70px;
    max-height: calc(100dvh - 70px);
    padding: 14px 20px 24px;
  }
  .hero {
    height: auto;
    min-height: 830px;
    max-height: none;
  }
  .hero-content {
    padding-top: 47px;
    padding-bottom: 310px;
  }
  .hero h1 {
    font-size: 49px;
    line-height: 1.05;
  }
  .hero .eyebrow {
    font-size: 9px;
    max-width: 290px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 420px;
    margin-top: 22px;
  }
  .hero-content .actions {
    gap: 10px;
    margin-top: 25px;
  }
  .hero-content .button {
    min-height: 46px;
    padding: 12px 15px;
    font-size: 11px;
  }
  .hero-tags {
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 25px;
    font-size: 9px;
  }
  .hero-tags svg {
    width: 13px;
    height: 13px;
  }
  .hero-bottom {
    bottom: 18px;
  }
  .hero-bottom > span {
    max-width: 140px;
    font-size: 8px;
  }
  .globe-stage:after {
    background: linear-gradient(
      180deg,
      #061725 0%,
      #061725 29%,
      #061725da 46%,
      transparent 72%
    );
  }
  .globe-fallback {
    width: 80%;
    height: 38%;
    right: 0;
    top: auto;
    bottom: 25px;
  }
  .ecosystem {
    padding: 27px 0;
  }
  .ecosystem > .wrap {
    display: block;
  }
  .ecosystem p {
    font-size: 10px;
    margin-bottom: 22px;
  }
  .ecosystem-brands {
    gap: 20px 26px;
  }
  .ecosystem-brands > a {
    font-size: 19px;
  }
  .ecosystem-brands .microsoft {
    font-size: 17px;
  }
  .section {
    padding: 64px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    max-width: none;
    margin-top: 20px;
    font-size: 14px;
  }
  .section-heading > .text-link {
    margin-top: 22px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 22px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 16px;
  }
  .service-grid {
    gap: 14px;
  }
  .service-card {
    padding: 22px 18px;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .service-card p {
    font-size: 12px;
    margin-bottom: 22px;
  }
  .service-card .text-link {
    font-size: 11px;
  }
  .sector-tabs button {
    padding: 13px 15px;
    font-size: 11px;
  }
  .sector-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
    min-height: 0;
  }
  .sector-panel h3 {
    font-size: 29px;
  }
  .sector-panel p {
    font-size: 14px;
  }
  .sector-image {
    aspect-ratio: 1.65;
  }
  .ai-layout,
  .infrastructure-grid,
  .contact-layout,
  .split,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .ai-layout h2,
  .contact-layout h2 {
    font-size: 37px;
  }
  .workflow {
    padding: 0;
  }
  .flow-item {
    padding: 18px 17px;
    gap: 13px;
  }
  .flow-item strong {
    font-size: 13px;
  }
  .flow-item > svg {
    width: 23px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .project-visual {
    aspect-ratio: 1.65;
  }
  .project-visual > strong {
    font-size: 44px;
  }
  .project-card h3 {
    font-size: 23px;
    margin-top: 20px;
  }
  .project-card p {
    font-size: 14px;
  }
  .network-art {
    aspect-ratio: 1.3;
    max-width: 450px;
    width: 100%;
    margin: auto;
  }
  .infrastructure-grid {
    gap: 32px;
  }
  .domain-band {
    padding: 45px 0;
  }
  .domain-band > .wrap {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .domain-band h2 {
    font-size: 30px;
  }
  .domain-form input {
    font-size: 12px;
    padding-left: 7px;
  }
  .domain-form .button {
    font-size: 11px;
    padding: 12px;
  }
  .domain-form .button svg {
    display: none;
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 25px;
    margin-top: 35px;
  }
  .process-grid h3 {
    font-size: 21px;
  }
  .process-grid p {
    font-size: 12px;
  }
  .faq-layout {
    gap: 35px;
  }
  .faqs summary {
    font-size: 13px;
  }
  .contact-layout .text-link {
    font-size: 11px;
  }
  .footer-top {
    display: block;
  }
  .footer-top p {
    margin: 22px 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
  .footer-legal {
    display: block;
    padding-bottom: 35px;
  }
  .footer-legal > span {
    display: block;
    margin-top: 15px;
  }
  .whatsapp {
    right: 15px;
    bottom: 16px;
    width: 47px;
    height: 47px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }
  .whatsapp span {
    display: none;
  }
  .subhero {
    padding: 65px 0;
  }
  .subhero h1 {
    font-size: 42px;
  }
  .subhero p:not(.eyebrow) {
    font-size: 15px;
  }
  .three-grid {
    grid-template-columns: 1fr;
  }
  .large-list {
    margin: 0;
  }
  .large-list p {
    font-size: 13px;
  }
  .narrow p {
    font-size: 15px;
  }
  .ipv4-hero h1 {
    font-size: 46px;
  }
  .ipv4-hero .hero-content {
    padding-bottom: 330px;
  }
  .hero-note {
    font-size: 10px;
    max-width: 290px;
  }
  .notice-band p {
    font-size: 11px;
  }
  .capabilities {
    padding-left: 22px;
  }
}
@media (max-width: 390px) {
  .hero h1 {
    font-size: 42px;
  }
  .hero-content .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    min-height: 880px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card h3 {
    font-size: 23px;
  }
  .service-card p {
    font-size: 14px;
  }
  .hero-tags {
    max-width: 270px;
  }
  .sector-panel h3 {
    font-size: 26px;
  }
  .subhero h1 {
    font-size: 36px;
  }
  .domain-form {
    gap: 3px;
  }
  .domain-form .button {
    padding: 12px 9px;
  }
}
.globe-stage:not(.globe-ready):before {
  content: '';
  position: absolute;
  right: 0;
  top: 8%;
  height: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url('/technology/assets/earth.jpg') center/cover;
  box-shadow: inset -120px -20px 100px #00111be8;
  opacity: 0.55;
}
.nav-cart {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cart span {
  display: none;
}
.nav-cart svg {
  width: 19px;
  height: 19px;
}
.project-visual.has-screenshot {
  aspect-ratio: 1.58;
}
.project-visual.has-screenshot img {
  object-fit: contain;
}
.project-card .project-label {
  font-size: 10px;
  font-weight: 650;
  color: var(--blue);
  margin: 19px 0 8px;
}
.project-label + h3 {
  margin-top: 0;
}
.project-visual .project-open {
  background: white;
  color: var(--ink);
  border-color: #ccd8e3;
}
.subhero {
  background-color: #071b2e;
  background-image: linear-gradient(90deg, rgba(7,27,46,.97) 0%, rgba(7,27,46,.91) 44%, rgba(7,27,46,.35) 100%), var(--hero-image, none);
  background-position: center, var(--hero-position, center);
  background-size: cover;
}
.reveal-enter {
  animation: reveal-in 0.6s ease-out both;
}
@keyframes reveal-in {
  from {
    opacity: 0.5;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1100px) {
  .nav-cart span {
    display: inline;
  }
}
@media (min-width: 761px) {
  .hero {
    height: min(760px, calc(100svh - 160px));
    min-height: 600px;
  }
}
@media (min-width: 761px) and (max-height: 820px) {
  .hero {
    min-height: 540px;
    height: calc(100svh - 145px);
  }
  .hero-content {
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-description {
    font-size: 15px;
    margin-top: 20px;
  }
  .hero-tags {
    margin-top: 25px;
  }
  .hero-content .actions {
    margin-top: 24px;
  }
  .hero-bottom {
    bottom: 14px;
  }
}
@media (max-width: 760px) {
  .hero {
    min-height: 660px;
    height: calc(100svh - 115px);
  }
  .hero-content {
    padding-top: 35px;
    padding-bottom: 240px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-description {
    font-size: 13px;
    margin-top: 18px;
  }
  .hero-content .actions {
    margin-top: 20px;
  }
  .hero-tags {
    margin-top: 20px;
  }
  .ipv4-hero {
    height: auto;
    min-height: 790px;
  }
  .ipv4-hero .hero-content {
    padding-bottom: 285px;
  }
  .globe-stage:not(.globe-ready):before {
    height: 42%;
    top: auto;
    bottom: 10px;
  }
}
h1,
h2,
h3 {
  overflow-wrap: break-word;
}
.process-grid article,
.contact-layout > *,
.split > * {
  min-width: 0;
}
.flow-connector:after,
.processing-dots b {
  animation-iteration-count: 2;
}
.site-footer {
  padding-bottom: max(25px, env(safe-area-inset-bottom));
}
.contact-form textarea {
  scroll-margin-top: 120px;
}
.sector-more {
  font-size: 12px;
  max-width: 850px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
@media (max-width: 400px) {
  .hero h1 {
    font-size: 37px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid h3 {
    font-size: 23px;
  }
  .hero-content {
    padding-top: 32px;
  }
  .hero-tags {
    gap: 10px;
  }
  .hero {
    min-height: 660px;
  }
  .ipv4-hero {
    min-height: 760px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover,
  .service-card:hover {
    transform: none;
  }
}
.product-hero {
  position: relative;
  overflow: hidden;
}
.product-hero > .wrap {
  position: relative;
  z-index: 1;
}
.product-symbol {
  position: absolute;
  width: 360px;
  height: 360px;
  right: 8%;
  top: 22%;
  color: #5c8cab;
  opacity: 0.12;
  pointer-events: none;
}
.domain-hero .domain-search {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 32px 0 20px;
  padding: 12px 14px 12px 24px;
  background: #fff;
  color: #071b2e;
  border-radius: 8px;
  border: 1px solid #a5bed1;
}
.domain-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 10px 0;
  font: inherit;
  color: #071b2e;
  background: #fff;
}
.domain-search > svg {
  width: 22px;
  flex: 0 0 22px;
}
.domain-result {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(150px, auto) minmax(
      100px,
      auto
    );
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid #cbd9e3;
  border-radius: 8px;
  margin: 12px 0;
}
.domain-result.available {
  border-color: #88bba1;
  background: #f0faf4;
  border-left: 4px solid #188052;
}
.domain-result h3 {
  margin: 0 0 6px;
  font-size: 20px;
  overflow-wrap: anywhere;
}
.domain-result p {
  margin: 0;
  font-size: 14px;
}
.domain-price {
  display: grid;
  gap: 4px;
}
.domain-price small {
  color: #506477;
  max-width: 190px;
}
.domain-price strong {
  font-size: 20px;
}
.availability {
  font-size: 12px;
  font-weight: 700;
  background: #edf1f5;
  padding: 5px 8px;
  border-radius: 4px;
}
.available .availability {
  color: #12633c;
  background: #d7f0df;
}
.result-actions {
  display: grid;
  gap: 8px;
}
.result-skeleton {
  height: 96px;
  border-radius: 8px;
  margin: 12px 0;
  background: linear-gradient(100deg, #edf2f6 25%, #dbe9f1 45%, #edf2f6 65%);
  background-size: 200% 100%;
  animation: result-loading 1.5s linear infinite;
}
@keyframes result-loading {
  to {
    background-position: -200% 0;
  }
}
.loading-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid #c7e1ed;
  border-top-color: #0066ff;
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
  animation: loading-rotate 1s linear infinite;
}
@keyframes loading-rotate {
  to {
    transform: rotate(360deg);
  }
}
.tld-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.tld-grid article {
  border-top: 1px solid #c3d1db;
  padding-top: 24px;
}
.tld-grid strong {
  font-family: 'Exo 2', sans-serif;
  font-size: 48px;
  color: #0066ff;
}
.empty-message {
  border: 1px dashed #b9cbd9;
  padding: 36px;
  border-radius: 8px;
  color: #43596a;
}
.catalog-status {
  margin-top: 30px;
}
.catalog-note {
  font-size: 13px;
  color: #526779;
  max-width: 850px;
  margin-top: 24px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}
.plan-card {
  padding: 30px;
  border: 1px solid #cad8e3;
  border-radius: 8px;
}
.plan-price {
  display: block;
  font-size: 24px;
  margin: 24px 0 8px;
}
.plan-card h3 {
  font-size: 24px;
}
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}
.catalog-filters button {
  border: 1px solid #b8cad6;
  border-radius: 4px;
  background: #fff;
  color: #263e50;
  font: inherit;
  padding: 10px 18px;
  cursor: pointer;
}
.catalog-filters [aria-pressed='true'] {
  background: #071b2e;
  color: #fff;
  border-color: #071b2e;
}
.table-scroll {
  overflow: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-size: 15px;
}
.comparison-table th,
.comparison-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid #cfdae2;
}
.comparison-table thead {
  background: #071b2e;
  color: #fff;
}
.search-label {
  display: block;
  font-weight: 600;
  margin: 28px 0 8px;
}
.wide-search {
  width: 100%;
  padding: 16px;
  border: 1px solid #aabfcc;
  border-radius: 6px;
  font: inherit;
  color: #071b2e;
  background: #fff;
}
.template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 30px;
}
.template-item {
  border: 1px solid #cad8e3;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}
.template-item:hover {
  transform: translateY(-4px);
}
.template-item > a {
  display: block;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #edf2f6;
}
.template-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.35s;
}
.template-item:hover img {
  transform: scale(1.03);
}
.template-item > div {
  padding: 24px;
}
.template-item h3 {
  font-size: 22px;
  margin: 8px 0 24px;
}
.template-item .actions {
  justify-content: space-between;
  gap: 12px;
}
.template-item .button {
  padding: 10px 14px;
  font-size: 13px;
}
.legal-hero h1 {
  font-size: 44px;
  max-width: 960px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
}
.legal-navigation {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: start;
  position: sticky;
  top: 110px;
}
.legal-navigation a {
  padding: 10px 14px;
  border-left: 2px solid #dce5eb;
  font-size: 14px;
  color: #43596a;
}
.legal-navigation a:hover,
.legal-navigation a[aria-current='page'] {
  color: #005ce6;
  background: #f0f6ff;
  border-left-color: #0066ff;
}
.legal-copy {
  min-width: 0;
  overflow-wrap: anywhere;
}
.legal-copy h2 {
  font-size: 25px;
  margin-top: 34px;
}
.legal-copy h3 {
  font-size: 21px;
}
.legal-copy p,
.legal-copy li {
  font-size: 16px;
  line-height: 1.8;
  color: #344c60;
}
.legal-copy a {
  color: #0058d9;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-copy ul,
.legal-copy ol {
  padding-left: 24px;
}
.legal-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 32px;
}
.legal-index > a {
  padding: 20px 0;
  border-top: 1px solid #cad8e3;
  text-decoration: none;
}
.legal-index h3 {
  margin: 0;
}
.legal-contact {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #cad8e3;
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
}
.cart-layout h2 {
  font-size: 25px;
}
.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #cad8e3;
}
.cart-row h3 {
  overflow-wrap: anywhere;
  margin: 0;
  font-size: 19px;
}
.cart-row p {
  margin: 4px 0;
  font-size: 14px;
}
.order-summary {
  background: #eff5f9;
  padding: 24px;
  align-self: start;
  border-radius: 8px;
  border: 1px solid #cad8e3;
}
.order-summary .button {
  width: 100%;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  margin: 26px 0;
}
.summary-total strong {
  font-size: 26px;
}
.preview-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4d490b;
  background: #faf8df;
  padding: 16px 20px;
  border-left: 3px solid #aaa52d;
  margin-bottom: 32px;
}
.preview-notice svg {
  flex-shrink: 0;
  width: 20px;
}
.inline-error {
  color: #8b2730;
  background: #fff1f1;
  padding: 16px;
  border-left: 3px solid #ba3b48;
}
.cart-count {
  color: #071b2e;
  background: #c2f400;
  font-size: 11px;
  padding: 2px 5px;
  border-radius: 4px;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
[hidden] {
  display: none !important;
}
@media (max-width: 1000px) {
  .domain-result {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .template-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tld-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legal-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
  }
  .cart-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .domain-hero .domain-search {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
  }
  .domain-search .button {
    width: 100%;
  }
  .domain-result {
    padding: 18px;
    gap: 16px;
  }
  .domain-result > div:first-child {
    grid-column: 1 / -1;
  }
  .domain-result .result-actions {
    grid-column: 1 / -1;
  }
  .domain-price strong {
    font-size: 17px;
  }
  .template-grid,
  .catalog-grid,
  .legal-layout,
  .cart-layout,
  .legal-index {
    grid-template-columns: 1fr;
  }
  .legal-navigation {
    position: static;
  }
  .legal-hero h1 {
    font-size: 32px;
  }
  .cart-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .cart-row .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .tld-grid {
    gap: 24px;
  }
  .tld-grid h3 {
    font-size: 19px;
  }
  .catalog-filters button {
    padding: 8px 12px;
    font-size: 14px;
  }
  .product-symbol {
    width: 220px;
    height: 220px;
    right: -60px;
    opacity: 0.06;
  }
  .empty-message {
    padding: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .result-skeleton,
  .loading-label::before {
    animation: none;
  }
  .template-item,
  .template-item img {
    transition: none;
  }
}
.legal-copy > div > div {
  margin: 14px 0;
  color: #526779;
}
.legal-copy > div > div > strong {
  display: block;
  color: #071b2e;
  margin-top: 4px;
}
.plan-features {
  padding-left: 20px;
  margin: 20px 0;
  color: #43596a;
  font-size: 14px;
  line-height: 1.7;
}
.plan-features li {
  margin-bottom: 8px;
}
.reseller-brands {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 40px 0;
  border-top: 1px solid #cbd8e2;
  border-bottom: 1px solid #cbd8e2;
  padding: 32px 0;
}
.reseller-brands > div {
  display: grid;
  gap: 10px;
}
.reseller-brands strong {
  color: #071b2e;
  font-family: Exo, sans-serif;
  font-size: 34px;
}
.reseller-brands span {
  font-size: 14px;
  color: #526779;
}
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 36px 0;
}
.opportunity-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #cbd8e2;
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}
.opportunity-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: #0060ed;
}
.opportunity-status > span {
  font-size: 12px;
  font-weight: 600;
  color: #17613e;
  background: #e4f5eb;
  padding: 5px 10px;
  border-radius: 4px;
}
.opportunity-card h3 {
  font-size: 24px;
  margin: 0 0 14px;
}
.opportunity-card p {
  font-size: 15px;
}
.opportunity-card .actions {
  margin-top: auto;
  padding-top: 16px;
}
.commission-label {
  border-left: 3px solid #8daf00;
  padding: 8px 0 8px 12px;
  color: #243e4f;
  font-weight: 600;
  font-size: 14px;
  margin: 20px 0;
}
.partner-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  padding: 24px 0;
  border-top: 1px solid #294357;
  font-size: 14px;
}
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0 32px;
  color: #fff;
}
.payment-methods small {
  display: block;
  color: #b8c8d5;
  font-size: 12px;
  max-width: 380px;
  margin-top: 8px;
}
.payment-methods ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.payment-methods li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.partner-hero { padding: 64px 0 72px; }
.partner-hero h1 { font-size: 52px; max-width: 850px; }
.partner-mark { display: inline-flex; align-items: center; gap: 22px; padding: 16px 24px; margin-bottom: 28px; max-width: 100%; background: #fff; color: #071b2e; border-radius: 4px; }
.partner-mark img { display: block; width: 138px; height: 56px; object-fit: contain; flex-shrink: 0; }
.partner-mark strong { display: block; font: 700 20px/1.4 Inter, sans-serif; }
.partner-mark span { display: block; font-size: 12px; line-height: 1.5; color: #40586b; }
.partner-products .service-card { display: flex; flex-direction: column; }
.partner-products .text-link { margin-top: auto; padding-top: 18px; }
.partner-crosslink { background: #edf6ed; }
.partner-brand-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.partner-brand-grid a { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px; border: 1px solid #d8e1e8; border-radius: 8px; text-decoration: none; color: #071b2e; }
.partner-brand-grid a:hover { border-color: #0066ff; }
.partner-brand-grid img { width: 150px; height: 64px; object-fit: contain; object-position: left center; }
.partner-brand-grid span { color: #465b6e; font-size: 14px; }
@media (max-width: 760px) {
 .partner-hero { padding: 40px 0 52px; }
 .partner-hero h1 { font-size: 36px; }
 .partner-mark { gap: 14px; padding: 14px; }
 .partner-mark img { width: 98px; height: 48px; }
 .partner-mark strong { font-size: 18px; }
 .partner-brand-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
 .partner-brand-grid img { max-width: 100%; }
 .subhero { background-image: linear-gradient(90deg, rgba(7,27,46,.94), rgba(7,27,46,.80)), var(--hero-image, none); }
}
@media (max-width: 400px) {
 .partner-hero h1 { font-size: 30px; }
 .partner-brand-grid { grid-template-columns: 1fr; }
}
.site-header .dropdown { max-height: 70vh; overflow-y: auto; }
.blog-tools { display: grid; grid-template-columns: auto minmax(160px,1fr) auto minmax(180px,.6fr); align-items: center; gap: 16px; margin: 32px 0 20px; }
.blog-tools input, .blog-tools select { width: 100%; min-height: 48px; min-width: 0; padding: 10px 14px; border: 1px solid #8a9daf; border-radius: 4px; background: #fff; color: #071b2e; font: inherit; }
.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; }
.blog-card { border: 1px solid #d8e1e8; border-radius: 8px; overflow: hidden; background: white; }
.blog-card[hidden] { display: none; }
.blog-card > a { display: block; height: 100%; color: #071b2e; text-decoration: none; }
.blog-card > a > div { padding: 24px; }
.blog-card h3 { font-size: 24px; line-height: 1.25; }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-meta { font-size: 14px; color: #465b6e; line-height: 1.7; }
.article-heading { padding-bottom: 0; background: #f2f4f7; }
.article-heading .narrow { max-width: 980px; }
.article-heading h1 { font-size: 52px; line-height: 1.12; color: #071b2e; margin: 24px 0; overflow-wrap: anywhere; }
.article-summary { font-size: 21px; line-height: 1.6; }
.article-cover { width: 100%; max-height: 480px; aspect-ratio: 16/9; object-fit: cover; display: block; margin-top: 32px; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:32px; font-size:14px; }
.article-layout { display:grid; grid-template-columns:260px minmax(0,760px); gap:64px; justify-content:center; align-items:start; }
.article-toc { position:sticky; top:112px; display:grid; gap:18px; border-left:3px solid #c6f500; padding:16px 20px; font-size:15px; }
.article-toc a { color:#29485f; }
.article-body h2 { font-size:30px; line-height:1.25; }
.article-body p, .article-body li { font-size:18px; line-height:1.85; color:#294052; }
.article-body > section { margin-bottom:48px; scroll-margin-top:110px; }
.article-body li { margin-bottom:12px; }
@media(max-width:1100px) { .site-header .dropdown { max-height:none; } .blog-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .article-layout { grid-template-columns:200px minmax(0,1fr); gap:32px; } }
@media(max-width:760px) { .blog-tools { grid-template-columns:1fr; gap:10px; } .blog-grid, .article-layout { grid-template-columns:1fr; } .article-toc { position:static; } .article-heading h1 { font-size:36px; } .article-summary { font-size:18px; } .article-body h2 { font-size:26px; } }
.payment-methods svg {
  width: 20px;
  height: 20px;
  color: #c6f500;
}
@media (max-width: 1000px) {
  .opportunity-grid {
    grid-template-columns: 1fr;
  }
  .reseller-brands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 400px) {
  .reseller-brands strong {
    font-size: 26px;
  }
  .opportunity-card {
    padding: 22px;
  }
  .payment-methods ul {
    gap: 16px;
  }
}
