:root {
  --ink: #f4f8ff;
  --muted: #a9bdd1;
  --night: #020712;
  --navy: #061225;
  --cyan: #36d9f7;
  --pink: #ff4fbb;
  --coral: #ff633e;
  --line: rgba(192, 230, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night);
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

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

::selection {
  background: #ff4fbb;
  color: #07101f;
}

.site-shell {
  min-width: 320px;
  overflow: clip;
  background: var(--night);
}

.page-width {
  width: min(1320px, calc(100% - 96px));
  max-width: none;
  padding-inline: 0;
  margin-inline: auto;
}

.section-pad {
  position: relative;
  padding-block: 150px;
}

.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;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 2px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  align-items: center;
  min-height: 86px;
  padding-inline: 4.5vw;
  border-bottom: 1px solid rgba(186, 227, 255, 0.13);
  background: linear-gradient(180deg, rgba(2, 7, 18, 0.93), rgba(2, 7, 18, 0.48));
  backdrop-filter: blur(18px) saturate(130%);
}

.brand-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 160px;
  align-items: center;
}

.brand-link img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  color: #dcecff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  inset: auto 50% 3px;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 12px var(--cyan);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.language-switcher {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(199, 232, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.language-switcher button {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 51px;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-inline: 10px;
  border-radius: 999px;
  background: transparent;
  color: #9fb5ca;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-flag {
  width: 18px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(4, 15, 32, 0.18);
  object-fit: cover;
}

.language-label {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
  writing-mode: horizontal-tb;
}

.language-switcher button.active {
  background: #effbff;
  box-shadow: 0 0 20px rgba(68, 222, 250, 0.26);
  color: #061225;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(199, 232, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease;
}

.mobile-nav {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  padding: 130px 8vw 70px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 79, 187, 0.24), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(54, 217, 247, 0.18), transparent 35%),
    rgba(2, 7, 18, 0.985);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-nav.open,
.mobile-nav.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav nav {
  align-self: center;
}

.mobile-nav a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding-block: 17px;
  border-bottom: 1px solid rgba(192, 230, 255, 0.13);
  color: #eff9ff;
  font-size: clamp(30px, 7vw, 58px);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.mobile-nav a span {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0;
}

.mobile-nav a b {
  font: inherit;
}

.hero-section {
  position: relative;
  display: flex;
  min-height: max(790px, 100svh);
  align-items: center;
  isolation: isolate;
  background: #020712;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: 0;
  background-image: url("../assets/reef-background-desktop.png");
  background-position: center center;
  background-size: cover;
  filter: brightness(0.96) saturate(1.08) contrast(1.02);
  animation: reef-drift 20s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 5, 15, 0.58) 0%, rgba(1, 10, 29, 0.16) 50%, rgba(1, 5, 15, 0.58) 100%),
    linear-gradient(180deg, rgba(1, 5, 15, 0.18) 0%, transparent 48%, rgba(1, 7, 19, 0.68) 100%);
}

.hero-section::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 180px;
  content: "";
  background: linear-gradient(180deg, transparent, #050b18);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-block: 150px 220px;
  animation: hero-enter 950ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-eyebrow {
  color: #7eeeff;
}

.hero-content h1 {
  width: min(870px, 74vw);
  margin: 0;
  color: #f7fbff;
  font-size: clamp(66px, 7.8vw, 132px);
  font-weight: 900;
  letter-spacing: -0.077em;
  line-height: 0.86;
  text-wrap: balance;
}

.hero-content h1 span {
  display: block;
  margin-top: 0.16em;
  padding-bottom: 0.08em;
  background: linear-gradient(92deg, #48e3ff 4%, #8a7dff 34%, #ff55bb 61%, #ff8a36 89%);
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(113, 96, 255, 0.18));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h1 .hero-lead {
  margin-top: 0;
  padding-bottom: 0;
  background: none;
  filter: none;
  -webkit-text-fill-color: currentColor;
}

.hero-description {
  width: min(690px, 72vw);
  margin: 34px 0 0;
  color: #c4d6e8;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: #effcff;
  box-shadow: 0 12px 40px rgba(50, 218, 247, 0.2);
  color: #051124;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 50px rgba(50, 218, 247, 0.34);
}

.button-primary span {
  color: #ef358e;
  font-size: 18px;
}

.button-ghost {
  border: 1px solid rgba(213, 239, 255, 0.31);
  background: rgba(7, 21, 42, 0.36);
  color: #f1f8ff;
  backdrop-filter: blur(10px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(29, 54, 82, 0.55);
}

.hero-stats {
  position: absolute;
  inset: auto 0 70px;
  z-index: 3;
  display: flex;
  gap: 0;
}

.stat {
  display: grid;
  min-width: 190px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding-inline: 24px;
  border-inline-start: 1px solid rgba(198, 234, 255, 0.24);
}

.stat:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}

.stat strong {
  color: #fff;
  font-size: 28px;
  letter-spacing: -0.06em;
}

.stat span {
  max-width: 100px;
  color: #9fb5ca;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  inset: auto 4.5vw 66px auto;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #bfd3e6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 62px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.scroll-cue i::after {
  position: absolute;
  inset: -30px 0 auto;
  height: 30px;
  content: "";
  background: #6ae7ff;
  box-shadow: 0 0 8px #6ae7ff;
  animation: scroll-line 2.2s ease-in-out infinite;
}

.bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.bubbles span {
  position: absolute;
  bottom: -60px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(190, 241, 255, 0.38);
  border-radius: 50%;
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.1);
  animation: bubble-rise 13s linear infinite;
}

.bubbles span:nth-child(1) { left: 16%; animation-delay: -3s; }
.bubbles span:nth-child(2) { left: 39%; width: 7px; height: 7px; animation-delay: -8s; animation-duration: 10s; }
.bubbles span:nth-child(3) { left: 61%; width: 18px; height: 18px; animation-delay: -5s; animation-duration: 16s; }
.bubbles span:nth-child(4) { left: 78%; width: 6px; height: 6px; animation-delay: -1s; animation-duration: 9s; }
.bubbles span:nth-child(5) { left: 91%; width: 10px; height: 10px; animation-delay: -11s; animation-duration: 14s; }

.range-section {
  overflow: hidden;
  isolation: isolate;
}

.range-glow {
  position: absolute;
  z-index: 0;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
}

.glow-one {
  inset: 5% auto auto -300px;
  background: #16dffa;
}

.glow-two {
  inset: auto -280px 2% auto;
  background: #ff3ca6;
}

.section-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  column-gap: 8vw;
  align-items: end;
  margin-bottom: 70px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2,
.trade-copy h2,
.decor-copy h2,
.contact-layout h2 {
  margin: 0;
  color: #f6fbff;
  font-size: clamp(48px, 5.6vw, 92px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.97;
  text-wrap: balance;
}

.section-intro > p:last-child,
.trade-copy > p,
.decor-copy > p,
.contact-layout > div > p:last-child {
  margin: 0;
  color: #a8bbce;
  font-size: 17px;
  line-height: 1.75;
}

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

.category-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(190, 226, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0 0, color-mix(in srgb, var(--accent) 13%, transparent), transparent 46%),
    linear-gradient(145deg, rgba(20, 38, 63, 0.78), rgba(7, 16, 32, 0.82));
  backdrop-filter: blur(14px) saturate(125%);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.17);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.category-card:hover {
  border-color: color-mix(in srgb, var(--accent) 58%, transparent);
  box-shadow: 0 28px 80px color-mix(in srgb, var(--accent) 10%, transparent);
  transform: translateY(-8px);
}

.category-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.category-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  box-shadow: inset 0 0 24px color-mix(in srgb, var(--accent) 7%, transparent);
  color: var(--accent);
  font-size: 27px;
}

.category-number {
  color: rgba(206, 232, 249, 0.3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.category-card h3 {
  margin: 36px 0 14px;
  color: #f3f9ff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.category-card p {
  margin: 0;
  color: #9cb0c5;
  font-size: 14px;
  line-height: 1.65;
}

.card-beam {
  position: absolute;
  inset: auto 30px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 18px var(--accent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 220ms ease, transform 220ms ease;
}

.category-card:hover .card-beam {
  opacity: 1;
  transform: scaleX(1);
}

.trade-section {
  overflow: hidden;
  isolation: isolate;
  color: #f4f8ff;
}

.trade-watermark {
  position: absolute;
  inset: auto -3vw -4.5vw;
  z-index: 0;
  color: rgba(116, 230, 255, 0.08);
  font-size: clamp(120px, 19vw, 350px);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.65;
  pointer-events: none;
  white-space: nowrap;
}

.trade-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: 9vw;
  align-items: start;
}

.trade-copy {
  position: sticky;
  top: 135px;
}

.trade-copy .eyebrow,
.contact-layout .eyebrow {
  color: #6de7ff;
}

.trade-copy h2 {
  color: #f6fbff;
}

.trade-copy > p {
  max-width: 560px;
  margin-top: 30px;
  color: #bfd1e2;
}

.trade-note {
  display: inline-flex;
  margin-top: 34px;
  padding: 13px 21px;
  border: 1px solid rgba(185, 232, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 18, 39, 0.42);
  color: #f1f9ff;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-list {
  border-top: 1px solid rgba(190, 230, 255, 0.2);
}

.audience-list article {
  display: grid;
  grid-template-columns: 48px 1fr 36px;
  gap: 24px;
  align-items: start;
  padding-block: 34px;
  border-bottom: 1px solid rgba(190, 230, 255, 0.2);
  background: rgba(3, 14, 34, 0.24);
  backdrop-filter: blur(10px) saturate(125%);
  transition: padding-inline 220ms ease, background 220ms ease;
}

.audience-list article:hover {
  padding-inline: 20px;
  background: rgba(19, 53, 82, 0.5);
}

.audience-list article > span {
  padding-top: 5px;
  color: rgba(157, 224, 245, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.audience-list h3 {
  margin: 0 0 10px;
  color: #f6fbff;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.audience-list p {
  max-width: 580px;
  margin: 0;
  color: #b6c9da;
  font-size: 15px;
  line-height: 1.65;
}

.audience-list i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(182, 230, 252, 0.28);
  border-radius: 50%;
  font-size: 15px;
  font-style: normal;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.audience-list article:hover i {
  background: #eafaff;
  color: #07101e;
  transform: rotate(45deg);
}

.brands-section {
  overflow: hidden;
  isolation: isolate;
  color: #f4f8ff;
}

.brand-intro .eyebrow {
  color: #ff73be;
}

.brand-intro h2 {
  color: #f6fbff;
}

.brand-intro > p:last-child {
  color: #b6c9da;
}

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

.brand-card {
  display: grid;
  min-height: 142px;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(6, 18, 37, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(5, 20, 39, 0.055);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.brand-card:nth-child(1),
.brand-card:nth-child(2),
.brand-card:nth-child(3),
.brand-card:nth-child(6),
.brand-card:nth-child(7),
.brand-card:nth-child(8),
.brand-card:nth-child(9),
.brand-card:nth-child(11),
.brand-card:nth-child(12),
.brand-card:nth-child(13),
.brand-card:nth-child(16),
.brand-card:nth-child(18) {
  border-color: rgba(114, 201, 255, 0.14);
  background:
    radial-gradient(circle at 25% 0, rgba(43, 213, 243, 0.14), transparent 40%),
    #071329;
}

.brand-card:hover {
  border-color: rgba(37, 199, 229, 0.55);
  box-shadow: 0 24px 55px rgba(3, 19, 38, 0.14);
  transform: translateY(-6px);
}

.brand-card:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
  transform: translateY(-4px);
}

.brand-card img {
  max-width: 86%;
  max-height: 72px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.brand-card:hover img {
  transform: scale(1.06);
}

.decor-section {
  overflow: hidden;
  isolation: isolate;
}

.decor-reef {
  display: none;
}

.decor-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 11, 30, 0.86) 0%, rgba(4, 11, 30, 0.66) 46%, rgba(4, 11, 30, 0.18) 100%),
    radial-gradient(circle at 75% 30%, rgba(255, 72, 189, 0.23), transparent 34%);
}

.reef-canvas {
  background-color: #061225;
  background-image:
    linear-gradient(
      180deg,
      #050b18 0,
      rgba(3, 11, 29, 0.76) 58px,
      rgba(3, 11, 29, 0.4) 150px,
      rgba(3, 11, 29, 0.4) calc(100% - 150px),
      rgba(3, 11, 29, 0.76) calc(100% - 58px),
      #050b18 100%
    ),
    url("../assets/reef-background-desktop.png");
  background-attachment: scroll, fixed;
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: 100% 100%, cover;
}

.decor-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(153, 209, 255, 0.17);
  border-radius: 50%;
}

.orbit-one {
  inset: -280px -180px auto auto;
  width: 720px;
  height: 720px;
}

.orbit-two {
  inset: -80px 20px auto auto;
  width: 420px;
  height: 420px;
}

.decor-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 7vw;
  align-items: center;
}

.decor-copy {
  max-width: 770px;
}

.decor-copy > p {
  max-width: 690px;
  margin-top: 30px;
}

.decor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.decor-chips span {
  padding: 9px 14px;
  border: 1px solid rgba(185, 225, 255, 0.19);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #c6d9ea;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--cyan);
  color: #f5fbff;
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  color: var(--pink);
}

.decor-mark {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: center;
  padding: 40px;
  border: 1px solid rgba(206, 236, 255, 0.18);
  border-radius: 50%;
  background: rgba(7, 12, 39, 0.46);
  box-shadow: inset 0 0 70px rgba(88, 114, 255, 0.12), 0 0 80px rgba(255, 66, 173, 0.12);
  text-align: center;
  backdrop-filter: blur(9px);
  direction: ltr;
}

.decor-mark span,
.decor-mark strong {
  display: block;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.decor-mark span {
  color: #c8daea;
  font-size: 35px;
}

.decor-mark strong {
  margin-top: 6px;
  background: linear-gradient(90deg, #52e4ff, #ff55bb, #ff9b42);
  background-clip: text;
  font-size: clamp(48px, 5vw, 78px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.decor-mark i {
  margin-top: 26px;
  color: #ff74c4;
  font-size: 46px;
  font-style: normal;
  filter: drop-shadow(0 0 14px #ff4fbb);
}

.contact-section {
  overflow: hidden;
  isolation: isolate;
  background-color: #061225;
  background-image:
    linear-gradient(180deg, #050b18 0, transparent 145px, transparent calc(100% - 145px), #050b18 100%),
    linear-gradient(135deg, rgba(3, 73, 126, 0.7), rgba(16, 90, 155, 0.66) 50%, rgba(89, 42, 151, 0.7)),
    url("../assets/reef-background-desktop.png");
  background-attachment: scroll, scroll, fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, cover;
  color: #f4fbff;
}

@media (min-width: 761px) {
  .hero-image {
    background-attachment: fixed;
    animation: none;
  }
}

.contact-ripple {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(210, 241, 255, 0.18);
  border-radius: 50%;
}

.ripple-one {
  inset: -430px auto auto -260px;
  width: 920px;
  height: 920px;
}

.ripple-two {
  inset: -260px auto auto -90px;
  width: 580px;
  height: 580px;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 10vw;
  align-items: center;
}

.contact-layout h2 {
  color: #f7fbff;
}

.contact-layout > div > p:last-child {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(229, 243, 252, 0.82);
}

.contact-links {
  border-top: 1px solid rgba(213, 241, 255, 0.25);
}

.contact-links a {
  display: grid;
  grid-template-columns: 130px 1fr 38px;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(213, 241, 255, 0.25);
  transition: padding-inline 180ms ease, background 180ms ease;
}

.contact-links a:hover {
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.13);
}

.contact-links span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 800;
  letter-spacing: -0.025em;
  unicode-bidi: plaintext;
}

.contact-links i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(213, 241, 255, 0.34);
  border-radius: 50%;
  font-style: normal;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-links a:hover i {
  background: #eefaff;
  color: #061020;
  transform: rotate(45deg);
}

footer {
  padding-block: 40px;
  border-top: 1px solid rgba(196, 228, 255, 0.13);
  background: #020712;
}

.footer-inner {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  display: inline-flex;
  width: 108px;
}

.footer-inner p {
  margin: 0;
  color: #7990a6;
  font-size: 11px;
  text-align: center;
}

.footer-languages {
  display: flex;
  gap: 8px;
}

.footer-languages button {
  padding: 7px 10px;
  border-radius: 999px;
  background: transparent;
  color: #7e93a8;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.footer-languages button.active {
  background: rgba(85, 225, 251, 0.12);
  color: #7eeeff;
}

.site-shell[dir="rtl"] .hero-content {
  text-align: right;
}

.site-shell[dir="rtl"] .hero-description {
  margin-inline-start: 0;
}

.site-shell[dir="rtl"] .hero-buttons {
  justify-content: flex-start;
}

.site-shell[dir="rtl"] .scroll-cue {
  writing-mode: vertical-lr;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reef-drift {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}

@keyframes bubble-rise {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10% { opacity: 0.45; }
  70% { opacity: 0.18; }
  100% { opacity: 0; transform: translateY(-105vh) translateX(24px); }
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(94px); }
}

@keyframes view-reveal {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@supports (animation-timeline: view()) {
  .category-card,
  .brand-card,
  .audience-list article {
    animation: view-reveal linear both;
    animation-range: entry 5% cover 30%;
    animation-timeline: view();
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 200px 1fr 230px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

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

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

  .trade-layout {
    gap: 6vw;
  }
}

@media (max-width: 1020px) {
  .page-width {
    width: min(100% - 56px, 980px);
  }

  .section-pad {
    padding-block: 120px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-content h1 {
    width: min(810px, 88vw);
  }

  .hero-description {
    width: min(660px, 78vw);
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro > p:last-child {
    max-width: 720px;
  }

  .trade-layout,
  .decor-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trade-copy {
    position: static;
    margin-bottom: 52px;
  }

  .decor-mark {
    width: min(480px, 80vw);
    min-height: 480px;
    margin-inline: auto;
  }

  .contact-layout {
    gap: 70px;
  }
}

@media (max-width: 760px) {
  .page-width {
    width: calc(100% - 36px);
  }

  .section-pad {
    padding-block: 92px;
  }

  .site-header {
    min-height: 74px;
    padding-inline: 18px;
    background: linear-gradient(180deg, rgba(2, 17, 43, 0.84), rgba(2, 17, 43, 0.42));
  }

  .brand-link {
    width: 122px;
  }

  .language-switcher button {
    min-width: 44px;
    height: 30px;
    gap: 4px;
    padding-inline: 7px;
    font-size: 11px;
  }

  .language-flag {
    width: 17px;
    height: 11px;
  }

  .hero-section {
    min-height: max(940px, 100svh);
    background: #0875bc;
  }

  .hero-image {
    background-image: url("../assets/reef-background-primary.png");
    background-position: center top;
    filter: brightness(0.98) saturate(1.08) contrast(1.01);
    animation: none;
  }

  .hero-shade {
    background:
      radial-gradient(ellipse 112% 58% at 50% 17%, rgba(1, 8, 25, 0.78) 0%, rgba(1, 12, 34, 0.48) 48%, transparent 78%),
      linear-gradient(180deg, rgba(1, 9, 27, 0.24) 0%, rgba(1, 12, 32, 0.04) 56%, rgba(1, 8, 23, 0.5) 100%);
  }

  .hero-content {
    align-self: flex-start;
    padding-top: 126px;
    padding-bottom: 300px;
    text-shadow: 0 3px 24px rgba(0, 5, 18, 0.72);
  }

  .hero-content::before {
    position: absolute;
    inset: 92px -28px auto;
    z-index: -1;
    height: 590px;
    border-radius: 0 0 44% 44%;
    content: "";
    background: linear-gradient(180deg, rgba(1, 10, 31, 0.42), rgba(1, 12, 34, 0.22) 67%, transparent);
    filter: blur(2px);
  }

  .hero-content h1 {
    width: 100%;
    font-size: clamp(52px, 15.8vw, 82px);
    line-height: 0.9;
    text-shadow: 0 5px 32px rgba(0, 4, 15, 0.86);
  }

  .hero-description {
    width: 100%;
    margin-top: 24px;
    color: #f0f8ff;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-stats {
    inset: auto 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 17px 13px;
    border: 1px solid rgba(200, 239, 255, 0.24);
    border-radius: 20px;
    background: rgba(1, 13, 35, 0.35);
    box-shadow: 0 16px 50px rgba(0, 6, 19, 0.25);
    backdrop-filter: blur(12px) saturate(130%);
  }

  .stat {
    display: block;
    min-width: 0;
    padding-inline: 13px;
  }

  .stat:first-child {
    padding-inline-start: 7px;
  }

  .stat strong,
  .stat span {
    display: block;
  }

  .stat strong {
    margin-bottom: 7px;
    font-size: 22px;
  }

  .stat span {
    max-width: 96px;
    color: #d8ecfb;
    font-size: 8px;
  }

  .hero-section::after {
    height: 68px;
    background: linear-gradient(180deg, transparent, #07162d);
  }

  .range-section {
    background:
      radial-gradient(circle at 8% 7%, rgba(43, 219, 250, 0.22), transparent 28%),
      radial-gradient(circle at 96% 32%, rgba(255, 74, 184, 0.2), transparent 30%),
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      #07162d;
    background-size: auto, auto, 52px 52px, 52px 52px, auto;
  }

  .reef-canvas {
    background-color: #061225;
    background-image:
      linear-gradient(
        180deg,
        #050b18 0,
        rgba(3, 11, 29, 0.74) 44px,
        rgba(3, 11, 29, 0.42) 112px,
        rgba(3, 11, 29, 0.42) calc(100% - 112px),
        rgba(3, 11, 29, 0.74) calc(100% - 44px),
        #050b18 100%
      ),
      url("../assets/reef-background-primary.png");
    background-attachment: scroll, scroll;
    background-position: center, center top;
    background-repeat: no-repeat, repeat-y;
    background-size: 100% 100%, 100% auto;
  }

  .contact-section {
    background-color: #061225;
    background-image:
      linear-gradient(180deg, #050b18 0, transparent 110px, transparent calc(100% - 110px), #050b18 100%),
      linear-gradient(135deg, rgba(3, 73, 126, 0.7), rgba(16, 90, 155, 0.66) 50%, rgba(89, 42, 151, 0.7)),
      url("../assets/reef-background-primary.png");
    background-attachment: scroll;
    background-position: center, center, center 58%;
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%, cover;
  }

  .range-glow {
    opacity: 0.3;
    filter: blur(95px);
  }

  .category-card {
    background:
      radial-gradient(circle at 0 0, color-mix(in srgb, var(--accent) 19%, transparent), transparent 48%),
      linear-gradient(145deg, rgba(28, 58, 91, 0.8), rgba(8, 24, 48, 0.84));
  }

  .scroll-cue {
    display: none;
  }

  .section-intro {
    margin-bottom: 46px;
  }

  .section-intro h2,
  .trade-copy h2,
  .decor-copy h2,
  .contact-layout h2 {
    font-size: clamp(45px, 12.5vw, 68px);
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-card {
    min-height: 270px;
    padding: 23px;
    border-radius: 20px;
  }

  .category-card h3 {
    margin-top: 30px;
    font-size: 20px;
  }

  .category-card p {
    font-size: 13px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .brand-card {
    min-height: 124px;
    padding: 21px;
    border-radius: 18px;
  }

  .audience-list article {
    grid-template-columns: 36px 1fr 34px;
    gap: 12px;
    padding-block: 26px;
  }

  .audience-list p {
    font-size: 14px;
  }

  .trade-note {
    padding: 12px 17px;
    font-size: 14px;
    letter-spacing: 0.055em;
  }

  .decor-reef {
    inset-inline-start: 10%;
    opacity: 0.24;
  }

  .decor-mark {
    width: min(360px, 88vw);
    min-height: 360px;
    padding: 28px;
  }

  .contact-layout {
    gap: 54px;
  }

  .contact-links a {
    grid-template-columns: 84px 1fr 34px;
    gap: 10px;
    min-height: 82px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-link {
    width: 104px;
  }

  .language-switcher button {
    min-width: 0;
    gap: 2px;
    padding-inline: 3px;
    font-size: 10px;
  }

  .language-flag {
    width: 14px;
    height: 10px;
  }

  .header-actions {
    gap: 8px;
  }

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

  .category-card {
    min-height: 245px;
  }

  .contact-links a {
    grid-template-columns: 1fr 34px;
    gap: 6px 12px;
    padding-block: 17px;
  }

  .contact-links span {
    grid-column: 1;
  }

  .contact-links strong {
    grid-column: 1;
    font-size: 16px;
  }

  .contact-links i {
    grid-area: 1 / 2 / 3 / 3;
    align-self: center;
  }
}

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

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