:root {
  color-scheme: dark;
  --seo-bg: #05090e;
  --seo-panel: #0a1017;
  --seo-panel-soft: #0e151e;
  --seo-panel-raised: #111a24;
  --seo-text: #f4f6f8;
  --seo-muted: #a8b0ba;
  --seo-muted-2: #747e8a;
  --seo-line: rgba(255, 255, 255, 0.15);
  --seo-line-soft: rgba(255, 255, 255, 0.08);
  --seo-accent: #168dff;
  --seo-accent-strong: #3aa0ff;
  --seo-focus: #65b5ff;
  --seo-display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --seo-body: "Inter", Arial, Helvetica, sans-serif;
  --seo-content: 1480px;
  --seo-copy: 760px;
  --seo-header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--seo-header-height) + 24px);
  background: var(--seo-bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--seo-bg);
  color: var(--seo-text);
  font-family: var(--seo-body);
  font-synthesis: none;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--seo-focus);
  outline-offset: 4px;
}

::selection {
  background: var(--seo-accent);
  color: #02060a;
}

.seo-page {
  min-height: 100vh;
  overflow: clip;
  background:
    radial-gradient(circle at 84% 4%, rgba(22, 141, 255, 0.11), transparent 27rem),
    var(--seo-bg);
  color: var(--seo-text);
}

.seo-container {
  width: min(100%, var(--seo-content));
  margin-inline: auto;
  padding-inline: clamp(24px, 5.5vw, 88px);
}

.seo-skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 18px;
  padding: 11px 15px;
  border: 1px solid var(--seo-accent);
  background: var(--seo-text);
  color: var(--seo-bg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.seo-header {
  position: relative;
  z-index: 100;
  min-height: var(--seo-header-height);
  border-bottom: 1px solid var(--seo-line-soft);
  background: rgba(5, 9, 14, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.seo-header__inner {
  width: 100%;
  min-height: var(--seo-header-height);
  display: grid;
  grid-template-columns: minmax(205px, 1fr) auto minmax(205px, 1fr);
  align-items: center;
  gap: 28px;
  padding-inline: clamp(26px, 3vw, 54px);
}

.seo-brand {
  position: relative;
  width: 220px;
  height: 58px;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.seo-brand img {
  position: absolute;
  top: -32px;
  left: -27px;
  width: 275px;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

.seo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.65vw, 48px);
}

.seo-nav a,
.seo-header__action,
.seo-language {
  color: #dce2e8;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.seo-nav a {
  padding-block: 12px;
}

.seo-nav a:hover,
.seo-nav a[aria-current="page"],
.seo-language:hover {
  color: var(--seo-accent-strong);
}

.seo-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.seo-language {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
}

.seo-language::before {
  width: 12px;
  height: 12px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 45%, currentColor 45% 55%, transparent 55%),
    linear-gradient(transparent 45%, currentColor 45% 55%, transparent 55%);
  opacity: 0.72;
}

.seo-header__action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--seo-line);
}

.seo-header__action:hover {
  border-color: var(--seo-accent);
  background: rgba(22, 141, 255, 0.08);
  color: var(--seo-text);
}

.seo-breadcrumbs {
  border-bottom: 1px solid var(--seo-line-soft);
}

.seo-breadcrumbs ol {
  min-height: 54px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding-block: 13px;
  list-style: none;
}

.seo-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--seo-muted-2);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #4d5864;
}

.seo-breadcrumbs a {
  color: var(--seo-muted);
  text-decoration: none;
}

.seo-breadcrumbs a:hover {
  color: var(--seo-accent-strong);
}

.seo-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 69vh, 760px);
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--seo-line);
  background: var(--seo-panel);
}

.seo-hero__media,
.seo-hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.seo-hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.seo-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.97) 0%, rgba(3, 7, 11, 0.82) 44%, rgba(3, 7, 11, 0.35) 72%, rgba(3, 7, 11, 0.58) 100%),
    linear-gradient(0deg, rgba(3, 7, 11, 0.92) 0%, transparent 45%);
}

.seo-hero--plain {
  min-height: clamp(480px, 58vh, 650px);
  background:
    linear-gradient(120deg, rgba(22, 141, 255, 0.11), transparent 46%),
    linear-gradient(180deg, var(--seo-panel-soft), var(--seo-bg));
}

.seo-hero--plain::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: clamp(24px, 7vw, 110px);
  width: min(42vw, 600px);
  height: 100%;
  content: "";
  border-inline: 1px solid var(--seo-line-soft);
  background:
    linear-gradient(var(--seo-line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--seo-line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.2;
  mask-image: linear-gradient(to left, #000, transparent);
}

.seo-hero__content {
  width: min(920px, 100%);
  padding-block: clamp(72px, 11vw, 150px) clamp(64px, 8vw, 112px);
}

.seo-eyebrow,
.seo-kicker {
  margin: 0 0 18px;
  color: var(--seo-accent-strong);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.seo-title,
.seo-section__title,
.seo-related__title,
.seo-cta__title {
  margin: 0;
  font-family: var(--seo-display);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 0.94;
  text-wrap: balance;
  text-transform: uppercase;
}

.seo-title {
  max-width: 13ch;
  font-size: clamp(4.4rem, 9.3vw, 8.75rem);
}

html[lang="el"] .seo-title {
  max-width: 16ch;
  font-size: clamp(3.8rem, 7.4vw, 7.1rem);
  line-height: 1;
  text-wrap: balance;
}

.seo-hero__summary {
  max-width: 700px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: #c5ccd4;
  font-size: clamp(0.98rem, 1.25vw, 1.2rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.seo-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.seo-badge,
.seo-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  padding: 7px 11px;
  border: 1px solid var(--seo-line);
  background: rgba(5, 9, 14, 0.66);
  color: #dce2e8;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.seo-status::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--seo-accent);
  box-shadow: 0 0 0 4px rgba(22, 141, 255, 0.12);
}

.seo-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 20px;
  border: 1px solid var(--seo-line);
  background: transparent;
  color: var(--seo-text);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.seo-button::after {
  content: "\2192";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.seo-button:hover {
  border-color: var(--seo-accent);
  background: rgba(22, 141, 255, 0.08);
}

.seo-button:hover::after {
  transform: translateX(4px);
}

.seo-button--primary {
  border-color: var(--seo-accent);
  background: var(--seo-accent);
  color: #02070c;
}

.seo-button--primary:hover {
  background: var(--seo-accent-strong);
  color: #02070c;
}

.seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.seo-facts {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  border-bottom: 1px solid var(--seo-line);
  background: var(--seo-panel);
}

.seo-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-inline: 1px solid var(--seo-line-soft);
}

.seo-fact {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  margin: 0;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--seo-line);
}

.seo-fact:last-child {
  border-right: 0;
}

.seo-fact dt {
  color: var(--seo-muted-2);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.seo-fact dd {
  margin: 0;
  color: var(--seo-text);
  font-family: var(--seo-display);
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  text-transform: uppercase;
}

.seo-cookie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 18px;
  width: 100%;
  margin: 0;
}

.seo-cookie-card {
  min-width: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--seo-line);
  background:
    linear-gradient(145deg, rgba(32, 146, 255, 0.07), transparent 45%),
    var(--seo-panel);
}

.seo-cookie-card dt,
.seo-cookie-card dd {
  min-width: 0;
  margin: 0;
}

.seo-cookie-card dt {
  display: grid;
  gap: 18px;
}

.seo-cookie-card__type {
  color: var(--seo-accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.seo-cookie-card code {
  color: var(--seo-text);
  font-family: var(--seo-display);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.seo-cookie-card dd {
  max-width: 38ch;
  color: var(--seo-muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.seo-main {
  display: block;
}

.seo-section {
  padding-block: clamp(84px, 10vw, 142px);
  border-bottom: 1px solid var(--seo-line-soft);
}

.seo-section--compact {
  padding-block: clamp(64px, 8vw, 104px);
}

.seo-section--panel {
  background: var(--seo-panel);
}

.seo-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.28fr);
  gap: clamp(52px, 6vw, 96px);
  align-items: start;
}

.seo-section__heading {
  position: sticky;
  top: 28px;
  min-width: 0;
}

.seo-section__index {
  display: block;
  margin-bottom: 28px;
  color: var(--seo-accent);
  font-family: var(--seo-display);
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}

.seo-section__title,
.seo-related__title {
  font-size: clamp(3.25rem, 5vw, 5rem);
  overflow-wrap: break-word;
}

html[lang="el"] .seo-section__title,
html[lang="el"] .seo-related__title {
  font-size: clamp(2.9rem, 4.25vw, 4.4rem);
  line-height: 1.02;
  text-wrap: balance;
}

html[lang="el"] .seo-feature h3,
html[lang="el"] .seo-use-case h3 {
  font-size: clamp(1.65rem, 2.15vw, 2.15rem);
  line-height: 1.04;
}

.seo-section__intro {
  max-width: 34rem;
  margin: 24px 0 0;
  color: var(--seo-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.seo-prose {
  max-width: var(--seo-copy);
  color: #c1c8d0;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.85;
}

.seo-prose > :first-child {
  margin-top: 0;
}

.seo-prose > :last-child {
  margin-bottom: 0;
}

.seo-prose h2,
.seo-prose h3,
.seo-prose h4 {
  margin: 2.4em 0 0.75em;
  color: var(--seo-text);
  font-family: var(--seo-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.04;
  text-transform: uppercase;
  text-wrap: balance;
}

.seo-prose h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
}

.seo-prose h3 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.seo-prose h4 {
  font-size: 1.55rem;
}

.seo-prose p,
.seo-prose ul,
.seo-prose ol,
.seo-prose blockquote,
.seo-prose table {
  margin: 0 0 1.5em;
}

.seo-prose strong {
  color: var(--seo-text);
  font-weight: 600;
}

.seo-prose a {
  color: var(--seo-accent-strong);
}

.seo-prose a:hover {
  color: #85c4ff;
}

.seo-prose ul,
.seo-prose ol {
  display: grid;
  gap: 0.72em;
  padding-left: 1.25em;
}

.seo-prose li::marker {
  color: var(--seo-accent);
}

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

.seo-faq details {
  border: 1px solid var(--seo-line);
  background: var(--seo-panel);
}

.seo-faq summary {
  position: relative;
  padding: 22px 64px 22px 24px;
  color: var(--seo-text);
  cursor: pointer;
  font-family: var(--seo-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.08;
  list-style: none;
  text-transform: uppercase;
}

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

.seo-faq summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "+";
  color: var(--seo-accent);
  font-family: var(--seo-body);
  font-size: 1.5rem;
  font-weight: 300;
  transform: translateY(-50%);
}

.seo-faq details[open] summary::after {
  content: "−";
}

.seo-faq p {
  max-width: 66ch;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--seo-muted);
  line-height: 1.75;
}

.seo-prose blockquote {
  padding: 22px 26px;
  border-left: 3px solid var(--seo-accent);
  background: var(--seo-panel-soft);
  color: var(--seo-text);
  font-size: 1.08em;
}

.seo-prose table {
  width: 100%;
  border-collapse: collapse;
  color: #c8cfd6;
  font-size: 0.9rem;
}

.seo-prose th,
.seo-prose td {
  padding: 15px 14px;
  border: 1px solid var(--seo-line);
  text-align: left;
  vertical-align: top;
}

.seo-prose th {
  background: var(--seo-panel-soft);
  color: var(--seo-text);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-feature-grid,
.seo-use-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(40px, 6vw, 76px);
  border: 1px solid var(--seo-line);
  background: var(--seo-line);
}

.seo-feature,
.seo-use-case {
  min-height: 220px;
  padding: clamp(26px, 3.5vw, 42px);
  background: var(--seo-panel);
}

.seo-feature__number,
.seo-use-case__number {
  display: block;
  margin-bottom: 38px;
  color: var(--seo-accent);
  font-family: var(--seo-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.seo-feature h3,
.seo-use-case h3 {
  margin: 0 0 15px;
  font-family: var(--seo-display);
  font-size: clamp(1.85rem, 2.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  text-transform: uppercase;
}

/*
 * Human-facing copy must wrap only at natural word boundaries. Long technical
 * identifiers keep their dedicated overflow rules below, but headings, labels,
 * buttons and prose should never split words into isolated letters.
 */
.seo-title,
.seo-eyebrow,
.seo-hero__summary,
.seo-badge,
.seo-status,
.seo-button,
.seo-section__title,
.seo-related__title,
.seo-section__intro,
.seo-feature h3,
.seo-feature p,
.seo-use-case h3,
.seo-use-case p,
.seo-card h3,
.seo-card p,
.seo-cta__title,
.seo-prose,
.seo-fact dt,
.seo-fact dd,
.seo-footer__nav a,
.seo-footer__bottom {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.seo-feature p,
.seo-use-case p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

.seo-related {
  padding-block: clamp(84px, 10vw, 140px);
  background: #070c12;
}

.seo-related__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.seo-related__heading > p {
  max-width: 34rem;
  margin: 0;
  color: var(--seo-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--seo-line);
  background: var(--seo-line);
}

.seo-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.2vw, 40px);
  background: var(--seo-panel);
  color: inherit;
  text-decoration: none;
  transition: background-color 200ms ease;
}

.seo-card:hover {
  background: var(--seo-panel-raised);
}

.seo-card__type {
  color: var(--seo-accent);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.seo-card h3 {
  margin: auto 0 18px;
  font-family: var(--seo-display);
  font-size: clamp(2.25rem, 3.8vw, 3.55rem);
  font-weight: 500;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.seo-card p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.seo-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--seo-line-soft);
  color: #dce2e8;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-card__link::after {
  content: "\2197";
  color: var(--seo-accent);
  font-size: 1.15rem;
}

.seo-cta {
  position: relative;
  isolation: isolate;
  padding-block: clamp(88px, 12vw, 170px);
  overflow: hidden;
  border-block: 1px solid var(--seo-line);
  background:
    radial-gradient(circle at 87% 30%, rgba(22, 141, 255, 0.18), transparent 28rem),
    var(--seo-panel);
}

.seo-cta::after {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -52%;
  width: min(55vw, 760px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(22, 141, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(22, 141, 255, 0.025),
    0 0 0 140px rgba(22, 141, 255, 0.018);
}

.seo-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.55fr);
  gap: clamp(46px, 8vw, 130px);
  align-items: end;
}

.seo-cta__title {
  max-width: 12ch;
  font-size: clamp(4rem, 8vw, 8rem);
}

.seo-cta__aside {
  display: grid;
  gap: 28px;
  justify-items: start;
}

.seo-cta__aside p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.seo-footer {
  padding-block: 56px 40px;
  background: #03070b;
}

.seo-footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.4fr);
  gap: clamp(48px, 9vw, 140px);
  padding-bottom: 52px;
  border-bottom: 1px solid var(--seo-line-soft);
}

.seo-footer__brand {
  width: min(220px, 100%);
  display: inline-block;
}

.seo-footer__brand img {
  width: 220px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.seo-footer__brand + p {
  max-width: 28rem;
  margin: 22px 0 0;
  color: var(--seo-muted-2);
  font-size: 0.78rem;
  line-height: 1.7;
}

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

.seo-footer__nav h2 {
  margin: 0 0 16px;
  color: var(--seo-muted-2);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-footer__nav ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-footer__nav a {
  color: #c7ced6;
  font-size: 0.76rem;
  line-height: 1.55;
  text-decoration: none;
}

.seo-footer__nav a:hover {
  color: var(--seo-accent-strong);
}

.seo-footer__corporate {
  padding-block: 44px;
  border-bottom: 1px solid var(--seo-line-soft);
}

.seo-footer__corporate h2 {
  margin: 8px 0 28px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.seo-footer__corporate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin: 0;
}

.seo-footer__corporate-grid > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  padding-block: 14px;
  border-top: 1px solid var(--seo-line-soft);
}

.seo-footer__corporate-grid dt {
  color: var(--seo-muted-2);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-footer__corporate-grid dd {
  min-width: 0;
  margin: 0;
  color: #c7ced6;
  font-size: 0.72rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.seo-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: #65707b;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.seo-footer__bottom p {
  margin: 0;
}

.seo-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.seo-footer__legal a {
  color: #7f8994;
  text-decoration: none;
}

.seo-footer__legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #7f8994;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.seo-footer__legal a:hover,
.seo-footer__legal button:hover,
.seo-footer__legal button:focus-visible {
  color: var(--seo-text);
}

@media (max-width: 1100px) {
  .seo-header__inner {
    grid-template-columns: 1fr auto;
  }

  .seo-nav {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-block: 0 10px;
    scrollbar-width: thin;
  }

  .seo-header,
  .seo-header__inner {
    min-height: 78px;
  }

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

  .seo-fact:nth-child(2n) {
    border-right: 0;
  }

  .seo-fact:nth-child(n + 3) {
    border-top: 1px solid var(--seo-line);
  }

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

@media (max-width: 820px) {
  :root {
    --seo-header-height: 74px;
  }

  .seo-header__inner {
    gap: 10px 18px;
    padding-block: 9px 0;
  }

  .seo-brand {
    width: 180px;
    height: 52px;
  }

  .seo-brand img {
    top: -29px;
    left: -24px;
    width: 245px;
  }

  .seo-header__action {
    display: none;
  }

  .seo-nav {
    gap: 22px;
  }

  .seo-hero {
    min-height: 620px;
  }

  .seo-hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 7, 11, 0.94), rgba(3, 7, 11, 0.62)),
      linear-gradient(0deg, rgba(3, 7, 11, 0.92), transparent 50%);
  }

  .seo-title {
    font-size: clamp(4.2rem, 16vw, 7rem);
  }

  .seo-section__layout,
  .seo-cta__inner,
  .seo-footer__top {
    grid-template-columns: 1fr;
  }

  .seo-section__heading {
    position: static;
  }

  .seo-cookie-card {
    min-height: 220px;
  }

  .seo-related__heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .seo-card {
    min-height: 280px;
  }

  .seo-cta__aside {
    max-width: 36rem;
  }
}

@media (max-width: 600px) {
  .seo-page {
    overflow-x: clip;
  }

  .seo-container {
    padding-inline: 22px;
  }

  .seo-header__inner {
    padding-inline: 18px;
  }

  .seo-brand {
    width: 160px;
    height: 48px;
  }

  .seo-brand img {
    top: -20px;
    left: -19px;
    width: 198px;
  }

  .seo-language {
    font-size: 0.625rem;
  }

  .seo-language::before {
    display: none;
  }

  .seo-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px 10px;
    overflow: visible;
    padding-bottom: 10px;
  }

  .seo-nav a {
    min-width: 0;
    padding: 9px 2px;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    text-align: center;
    white-space: normal;
  }

  .seo-breadcrumbs ol {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-block: 15px;
  }

  .seo-breadcrumbs li:not(:last-child)::after {
    display: none;
  }

  .seo-breadcrumbs li,
  .seo-breadcrumbs a,
  .seo-breadcrumbs span {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .seo-hero {
    min-height: 660px;
  }

  .seo-hero__media {
    object-position: 62% center;
  }

  .seo-hero__content {
    width: 100%;
    min-width: 0;
    padding-block: 74px 62px;
  }

  .seo-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.85rem, 13.2vw, 4.15rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  html[lang="el"] .seo-title {
    max-width: 100%;
    font-size: clamp(2.65rem, 11.8vw, 3.8rem);
    line-height: 1.02;
  }

  .seo-eyebrow {
    max-width: 100%;
    font-size: 0.61rem;
    letter-spacing: 0.14em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .seo-hero__summary {
    max-width: 100%;
    font-size: 0.93rem;
    line-height: 1.65;
    overflow-wrap: normal;
    word-break: normal;
  }

  .seo-hero__meta {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .seo-badge,
  .seo-status {
    width: 100%;
    max-width: 100%;
    min-height: 38px;
    justify-content: flex-start;
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
  }

  .seo-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-button {
    width: 100%;
    max-width: 100%;
    gap: 14px;
    justify-content: space-between;
    padding-inline: 16px;
    font-size: 0.61rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
    overflow-wrap: normal;
    word-break: normal;
    text-align: left;
  }

  .seo-facts__grid {
    grid-template-columns: 1fr;
  }

  .seo-fact,
  .seo-fact:nth-child(2n) {
    min-height: 122px;
    border-top: 1px solid var(--seo-line);
    border-right: 0;
  }

  .seo-fact:first-child {
    border-top: 0;
  }

  .seo-section {
    padding-block: 80px;
  }

  .seo-section__title,
  .seo-related__title {
    max-width: 100%;
    font-size: clamp(2.65rem, 12.5vw, 3.75rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  html[lang="el"] .seo-section__title,
  html[lang="el"] .seo-related__title {
    font-size: clamp(2.4rem, 10.8vw, 3.3rem);
    line-height: 1.04;
  }

  .seo-feature-grid,
  .seo-use-cases {
    grid-template-columns: 1fr;
  }

  .seo-prose {
    min-width: 0;
    font-size: 0.94rem;
    line-height: 1.78;
    overflow-wrap: normal;
    word-break: normal;
  }

  .seo-prose table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .seo-cta__title {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .seo-card h3 {
    font-size: clamp(2.05rem, 10vw, 3rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .seo-cta::after {
    width: 92vw;
    right: -38%;
  }

  .seo-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .seo-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-footer__legal {
    justify-content: flex-start;
  }

  .seo-footer__corporate-grid {
    grid-template-columns: 1fr;
  }
}

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

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

@media (forced-colors: active) {
  .seo-button,
  .seo-badge,
  .seo-status,
  .seo-card,
  .seo-fact {
    border: 1px solid CanvasText;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body,
  .seo-page,
  .seo-section,
  .seo-section--panel,
  .seo-related,
  .seo-footer {
    background: #fff !important;
    color: #111 !important;
  }

  .seo-header,
  .seo-hero__media,
  .seo-hero__shade,
  .seo-hero__actions,
  .seo-cta,
  .seo-related,
  .seo-footer,
  .seo-skip-link {
    display: none !important;
  }

  .seo-hero,
  .seo-hero--plain {
    min-height: 0;
    border: 0;
    background: #fff !important;
  }

  .seo-hero__content {
    padding-block: 36px;
  }

  .seo-title,
  .seo-hero__summary,
  .seo-section__title,
  .seo-section__intro,
  .seo-prose,
  .seo-fact dt,
  .seo-fact dd {
    color: #111 !important;
  }

  .seo-facts,
  .seo-facts__grid,
  .seo-fact {
    border-color: #bbb;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}
