:root {
  --bg: #05080d;
  --bg-soft: #0a1119;
  --surface: rgba(10, 16, 24, 0.9);
  --surface-strong: rgba(8, 13, 20, 0.96);
  --surface-light: #ffffff;
  --surface-light-soft: #f4f6f9;
  --border: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(11, 18, 27, 0.08);
  --text: #f7f9fc;
  --text-dark: #09111a;
  --muted: #afbac8;
  --muted-dark: #5d6875;
  --signal: #4c9dff;
  --signal-soft: rgba(76, 157, 255, 0.16);
  --success: #88f1b2;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 22px 60px rgba(10, 18, 30, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --max-width: 1240px;
  --header-height: 92px;
  --announcement-height: 56px;
}

html.announcement-dismissed {
  --announcement-height: 0px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(100, 150, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #05080d 0%, #07111a 100%);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.03), transparent 24%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

section {
  scroll-margin-top: calc(var(--header-height) + var(--announcement-height) + 18px);
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

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

.announcement-bar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--announcement-height);
  z-index: 60;
  transition: opacity 180ms ease, transform 180ms ease;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 13, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  z-index: -1;
}

.announcement-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(247, 249, 252, 0.94);
  font-size: 0.92rem;
}

.announcement-inner p {
  margin: 0;
}

.announcement-close {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.announcement-close span {
  position: absolute;
  width: 13px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.92);
}

.announcement-close span:first-child {
  transform: rotate(45deg);
}

.announcement-close span:last-child {
  transform: rotate(-45deg);
}

.announcement-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

html.announcement-dismissed .announcement-bar {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.site-header {
  position: fixed;
  inset: var(--announcement-height) 0 auto;
  z-index: 50;
}

.header-inner {
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, margin-top 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled .header-inner {
  margin-top: 12px;
  padding: 0 18px;
  background: rgba(7, 11, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  user-select: none;
}

.brand-mark {
  width: 210px;
  height: 54px;
  background: url("https://ik.imagekit.io/liora/cdn-front/logo.png") center / contain no-repeat;
  pointer-events: none;
  -webkit-user-drag: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav-link,
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-nav-link {
  color: rgba(247, 249, 252, 0.84);
  border: 1px solid transparent;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.header-cta,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta,
.primary-link {
  color: var(--text-dark);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.12);
}

.secondary-link {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.primary-link-dark {
  box-shadow: 0 18px 40px rgba(10, 18, 30, 0.12);
}

.secondary-link-dark {
  color: var(--text-dark);
  border-color: rgba(9, 16, 24, 0.12);
  background: rgba(9, 16, 24, 0.04);
}

.primary-link:hover,
.secondary-link:hover,
.header-cta:hover,
.partner-card:hover,
.product-card:hover,
.contact-card:hover,
.region-card:hover,
.status-service-card:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  position: absolute;
  left: 17px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 160ms ease, opacity 160ms ease, top 160ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 18px;
}

.menu-toggle span:nth-child(2) {
  top: 27px;
}

.menu-toggle span:nth-child(3) {
  top: 36px;
}

body.nav-open .menu-toggle span:nth-child(1) {
  top: 27px;
  transform: rotate(45deg);
}

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

body.nav-open .menu-toggle span:nth-child(3) {
  top: 27px;
  transform: rotate(-45deg);
}

main {
  padding-top: calc(var(--header-height) + var(--announcement-height));
}

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--announcement-height));
  padding: clamp(94px, 14vh, 150px) 0 78px;
  background:
    linear-gradient(180deg, rgba(3, 6, 10, 0.24) 0%, rgba(3, 6, 10, 0.78) 70%, #09111a 100%),
    linear-gradient(90deg, rgba(2, 5, 8, 0.86) 0%, rgba(2, 5, 8, 0.48) 56%, rgba(2, 5, 8, 0.74) 100%),
    url("https://ik.imagekit.io/liora/123%20(2).png") center / cover no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(9, 17, 26, 0), #09111a);
}

.hero-grid,
.metric-grid,
.why-grid,
.nologs-wrap,
.contact-grid {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 34px;
  align-items: end;
}

.eyebrow,
.panel-kicker,
.status-flag,
.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.eyebrow::before,
.panel-kicker::before,
.status-flag::before,
.contact-label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 0 8px var(--signal-soft);
}

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

.hero-copy h1,
.hero-panel h2,
.section-header h2,
.story-card h2,
.nologs-card h2,
.ops-panel h2,
.contact-copy h2,
.status-hero h1,
.status-summary-card h2,
.status-map-panel h2,
.status-services-section h2 {
  margin: 16px 0 0;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.5rem, 7vw, 6.2rem);
  line-height: 0.92;
}

.hero-copy p,
.section-header p,
.story-card p,
.nologs-card p,
.feature-item p,
.product-card p,
.contact-copy p,
.ops-panel p,
.hero-panel p,
.status-hero p,
.status-map-panel p,
.status-summary-card p,
.status-service-card p,
.region-card p,
.region-meta span,
.overview-list li {
  line-height: 1.7;
}

.hero-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(247, 249, 252, 0.84);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-panel,
.metric-card,
.story-card,
.trust-card,
.nologs-card,
.nologs-quote,
.ops-panel,
.contact-form,
.contact-card,
.status-summary-card,
.status-map-panel,
.region-card,
.status-service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel,
.story-card,
.nologs-card,
.nologs-quote,
.contact-form,
.status-summary-card,
.status-map-panel {
  border-radius: var(--radius-xl);
}

.hero-panel {
  padding: 30px;
}

.panel-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.hero-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.process-list {
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-item:first-child {
  border-top: 0;
  padding-top: 8px;
}

.process-item h3,
.feature-item h3,
.product-card h3,
.status-service-card h3,
.region-card h3 {
  margin: 0;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
}

.process-item p,
.feature-item p,
.product-card p,
.status-service-card p,
.region-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-panel-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 22px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

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

.metric-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.metric-value {
  display: block;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  letter-spacing: -0.05em;
}

.metric-label {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.partner-section,
.products-section,
.ops-section,
.contact-section,
.status-main {
  color: var(--text-dark);
}

.partner-section {
  padding: 110px 0;
  background: #f7f8fa;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-header h2,
.story-card h2,
.nologs-card h2,
.ops-panel h2,
.contact-copy h2,
.status-summary-card h2,
.status-map-panel h2,
.status-services-section h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 0.98;
}

.section-header p {
  margin: 0;
  color: var(--muted-dark);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.partner-card {
  min-height: 122px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(9, 16, 24, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.partner-logo {
  width: 100%;
  max-width: 170px;
  max-height: 42px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) opacity(0.92);
}

.partner-logo-starlink {
  max-width: 196px;
  max-height: 50px;
}

.partner-logo-mysterium {
  max-width: 198px;
  max-height: 58px;
}

.partner-logo-aws,
.partner-logo-gcore,
.partner-logo-ionos {
  max-width: 180px;
  max-height: 48px;
}

.partner-logo-termius,
.partner-logo-tall {
  max-height: 52px;
}

.why-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #081018 0%, #0b141d 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 24px;
}

.story-card {
  padding: 34px;
}

.story-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.trust-card {
  padding: 22px;
  border-radius: 24px;
  box-shadow: none;
}

.trust-card strong {
  display: block;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 1.58rem;
  letter-spacing: -0.05em;
}

.trust-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.64;
}

.visual-stack {
  display: grid;
  gap: 18px;
}

.visual-card {
  position: relative;
  min-height: 290px;
  padding: 26px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-size: cover;
  background-position: center;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 12, 0.08), rgba(5, 8, 12, 0.84));
}

.visual-card span {
  position: relative;
  max-width: 260px;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.46rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.visual-card-lake {
  background-image: url("https://ik.imagekit.io/liora/lake-8844310.jpg");
}

.visual-card-urban {
  background-image: url("https://ik.imagekit.io/liora/urban-vintage-78A265wPiO4-unsplash.jpg");
}

.products-section {
  padding: 110px 0;
  background: var(--surface-light-soft);
}

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

.product-card {
  grid-column: span 4;
  position: relative;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(9, 16, 24, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8, 17, 27, 0.06), transparent 68%);
}

.product-card-wide {
  grid-column: span 6;
}

.card-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(9, 16, 24, 0.06);
  color: rgba(9, 16, 24, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  position: relative;
  margin-top: 22px;
  color: var(--text-dark);
  font-size: 1.36rem;
}

.product-card p {
  position: relative;
  color: var(--muted-dark);
}

.nologs-section {
  padding: 120px 0;
  background:
    linear-gradient(180deg, rgba(3, 6, 9, 0.74), rgba(3, 6, 9, 0.9)),
    url("https://ik.imagekit.io/liora/maksim-samuilionak-uymaeBza9KQ-unsplash.jpg") center / cover no-repeat fixed;
}

.nologs-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
}

.nologs-card {
  padding: 34px;
}

.nologs-card p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.feature-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nologs-quote {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.nologs-quote blockquote {
  margin: 0;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.nologs-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.ops-section {
  padding: 40px 0 0;
  background: var(--surface-light-soft);
}

.ops-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff 0%, #eef2f6 100%);
  border: 1px solid rgba(9, 16, 24, 0.08);
  box-shadow: var(--shadow-soft);
}

.ops-panel p,
.contact-copy p {
  margin: 20px 0 0;
  color: var(--muted-dark);
}

.contact-section {
  padding: 40px 0 112px;
  background: var(--surface-light-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 24px;
  align-items: start;
}

.contact-copy {
  padding: 18px 0;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(9, 16, 24, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-label {
  color: rgba(9, 16, 24, 0.64);
}

.contact-card a {
  display: inline-block;
  margin-top: 14px;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.contact-form {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 251, 0.96));
  border-color: rgba(9, 16, 24, 0.08);
  box-shadow: var(--shadow-soft);
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field + .form-field {
  margin-top: 16px;
}

.form-field span {
  color: rgba(9, 16, 24, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(9, 16, 24, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-dark);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(76, 157, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(76, 157, 255, 0.12);
  background: #ffffff;
}

.form-submit {
  margin-top: 20px;
  border: 0;
}

.form-disclaimer,
.form-status {
  margin: 14px 0 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-status.is-success {
  color: #1f7f53;
}

.form-status.is-error {
  color: #b34040;
}

.site-footer {
  background: #05080d;
  color: rgba(247, 249, 252, 0.92);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: start;
  padding: 42px 0 28px;
}

.brand-footer .brand-mark {
  width: 184px;
  height: 48px;
}

.footer-brand p {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(247, 249, 252, 0.64);
  line-height: 1.68;
}

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

.footer-links a {
  color: rgba(247, 249, 252, 0.74);
  border: 1px solid transparent;
}

.footer-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: rgba(247, 249, 252, 0.58);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.swiss-badge {
  width: 118px;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.32));
}

.status-body {
  background:
    radial-gradient(circle at top, rgba(100, 150, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #05080d 0%, #08121b 100%);
}

.status-main {
  padding-top: calc(var(--header-height) + var(--announcement-height));
  color: var(--text);
}

.status-hero {
  padding: 94px 0 42px;
  background:
    linear-gradient(180deg, rgba(4, 8, 13, 0.54), rgba(4, 8, 13, 0.84)),
    url("https://ik.imagekit.io/liora/lake-8844310.jpg") center / cover no-repeat;
}

.status-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 24px;
  align-items: end;
}

.status-hero h1 {
  max-width: 740px;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.94;
}

.status-hero p {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(247, 249, 252, 0.84);
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.status-summary-card {
  padding: 30px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-indicator::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(136, 241, 178, 0.16);
  animation: pulse 2.1s ease infinite;
}

.status-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.status-summary-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-summary-grid strong {
  display: block;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.status-summary-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.status-map-section {
  padding: 86px 0;
}

.status-map-panel {
  padding: 34px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.region-card {
  padding: 22px;
  border-radius: 24px;
}

.region-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.region-capacity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #dcecff;
  background: rgba(76, 157, 255, 0.14);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.region-meta article {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.region-meta strong {
  display: block;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.region-meta span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.status-overview-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 24px;
  margin-top: 24px;
}

.overview-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.overview-list li + li {
  margin-top: 10px;
}

.status-services-section {
  padding: 0 0 112px;
}

.status-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.status-service-card {
  padding: 22px;
  border-radius: 24px;
}

.status-service-card p {
  color: rgba(255, 255, 255, 0.72);
}

.status-service-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #d8ffe8;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-service-state::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
}

[hidden] {
  display: none !important;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(136, 241, 178, 0.18);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(136, 241, 178, 0);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .why-grid,
  .nologs-wrap,
  .contact-grid,
  .section-header,
  .ops-panel,
  .status-hero-grid,
  .status-overview-strip {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .status-summary-grid,
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-card,
  .product-card-wide {
    grid-column: auto;
  }

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

@media (max-width: 900px) {
  body.nav-open {
    overflow: hidden;
  }

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

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header.is-scrolled .header-inner {
    margin-top: 8px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    background: rgba(7, 11, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav-link {
    width: 100%;
    justify-content: center;
  }

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

  .hero-copy h1,
  .status-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .metric-grid,
  .trust-grid,
  .partner-grid,
  .products-grid,
  .region-grid,
  .status-services-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  :root {
    --header-height: 84px;
    --announcement-height: 64px;
  }

  .announcement-inner {
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 0.84rem;
  }

  .brand-mark {
    width: 178px;
    height: 46px;
  }

  .brand-footer .brand-mark {
    width: 164px;
    height: 42px;
  }

  .hero-panel,
  .metric-card,
  .story-card,
  .nologs-card,
  .nologs-quote,
  .ops-panel,
  .contact-form,
  .status-summary-card,
  .status-map-panel {
    padding: 24px;
  }

  .menu-toggle {
    width: 52px;
    height: 52px;
  }

  .menu-toggle span {
    left: 15px;
  }

  .hero-actions,
  .status-actions {
    gap: 12px;
  }

  .primary-link,
  .secondary-link,
  .secondary-link-dark,
  .primary-link-dark {
    width: 100%;
  }

  .footer-meta {
    flex-direction: column;
    gap: 10px;
  }

  .status-summary-grid,
  .region-meta {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
