:root {
  --bg: #050706;
  --bg-soft: #08100c;
  --surface: rgba(255, 255, 255, 0.064);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(184, 255, 93, 0.3);
  --text: #f7fff3;
  --muted: #aebbad;
  --muted-strong: #dce8d8;
  --green: #b8ff5d;
  --cyan: #74f8ff;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 6%, rgba(184, 255, 93, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(116, 248, 255, 0.1), transparent 24rem),
    radial-gradient(circle at 74% 70%, rgba(184, 255, 93, 0.07), transparent 30rem),
    linear-gradient(180deg, #050706 0%, #030403 52%, #071009 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  animation: page-fade 520ms ease-out both;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(5, 7, 6, 0.04), rgba(5, 7, 6, 0.82));
  pointer-events: none;
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(184, 255, 93, 0.045) 48%, transparent 58% 100%);
  opacity: 0.55;
  pointer-events: none;
}

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

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto 0;
  padding: 7px 12px 7px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 10, 8, 0.66);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.site-header.is-scrolled {
  background: rgba(7, 10, 8, 0.84);
  border-color: rgba(184, 255, 93, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo-frame {
  --logo-size: 340px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  flex: 0 0 auto;
}

.logo-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--logo-size);
  height: var(--logo-size);
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.logo-frame-header {
  --logo-size: 327px;
  width: 188px;
  height: 68px;
}

.logo-frame-hero {
  --logo-size: 430px;
  width: 238px;
  height: 92px;
}

.logo-frame-footer {
  --logo-size: 403px;
  width: 232px;
  height: 88px;
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 780;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.header-cta {
  padding: 10px 17px;
  color: #071006;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(184, 255, 93, 0.2), 0 14px 34px rgba(105, 216, 62, 0.18);
}

.btn {
  gap: 9px;
  padding: 13px 22px;
  font-size: 1rem;
}

.btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary {
  color: #071006;
  background: linear-gradient(135deg, var(--green), #eaffcf);
  box-shadow: 0 18px 44px rgba(105, 216, 62, 0.2);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  padding-top: 86px;
}

.hero::before {
  position: absolute;
  top: -18%;
  right: -18%;
  z-index: -1;
  width: min(760px, 75vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 34%, rgba(184, 255, 93, 0.28), transparent 34%),
    conic-gradient(from 190deg, rgba(184, 255, 93, 0.1), rgba(116, 248, 255, 0.13), rgba(255, 255, 255, 0.05), rgba(184, 255, 93, 0.1));
  filter: blur(18px);
  opacity: 0.82;
  content: "";
  animation: slow-spin 24s linear infinite;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  min-height: calc(100svh - 158px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 780;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(184, 255, 93, 0.24);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.064);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.1vw, 6.05rem);
  line-height: 0.94;
  font-weight: 870;
}

h1 span {
  display: block;
  color: var(--green);
}

h2 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(2.05rem, 5vw, 4.1rem);
  line-height: 1;
  font-weight: 840;
}

h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.24;
}

.hero-subtitle,
.section-heading p,
.request-panel p,
.reseller-panel p,
.final-cta p,
.footer-grid p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.17rem);
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 30px;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 20px;
}

.hero-badge::before,
.hero-proof span::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(184, 255, 93, 0.6);
  content: "";
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  text-align: center;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-proof span:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 255, 93, 0.24);
  background:
    linear-gradient(180deg, rgba(184, 255, 93, 0.085), rgba(255, 255, 255, 0.052)),
    rgba(255, 255, 255, 0.05);
}

.hero-stage {
  position: relative;
  min-height: 540px;
  perspective: 900px;
}

.hero-stage::before {
  position: absolute;
  inset: 12% 8%;
  border: 1px solid rgba(184, 255, 93, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(184, 255, 93, 0.12), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.015));
  filter: blur(1px);
  transform: rotateX(68deg) rotateZ(-18deg);
  content: "";
}

.orbit-card,
.floating-logo,
.glass-card,
.catalog-card,
.plan-card,
.trust-card,
.payment-card,
.contact-card,
.request-panel,
.reseller-panel,
.final-cta-inner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.orbit-card::before,
.floating-logo::before,
.glass-card::before,
.catalog-card::before,
.plan-card::before,
.trust-card::before,
.payment-card::before,
.contact-card::before,
.request-panel::after,
.reseller-panel::after,
.final-cta-inner::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 42%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.orbit-card:hover::before,
.floating-logo:hover::before,
.glass-card:hover::before,
.catalog-card:hover::before,
.plan-card:hover::before,
.trust-card:hover::before,
.payment-card:hover::before,
.contact-card:hover::before,
.request-panel:hover::after,
.reseller-panel:hover::after,
.final-cta-inner:hover::before {
  opacity: 1;
}

.orbit-card-main {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: min(330px, 66vw);
  min-height: 240px;
  padding: 28px;
  transform: translate(-50%, -50%) rotateX(7deg) rotateY(-10deg);
}

.orbit-card-main p {
  max-width: 230px;
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
}

.floating-logo {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 148px;
  padding: 12px;
  color: var(--muted-strong);
  animation: float-card 7s ease-in-out infinite;
}

.floating-logo img {
  width: 42px;
  height: 42px;
  padding: 7px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
}

.logo-on-dark,
.mini-logo-row img.logo-on-dark,
.floating-logo img.logo-on-dark {
  border-color: rgba(184, 255, 93, 0.18);
  background:
    radial-gradient(circle at 30% 20%, rgba(184, 255, 93, 0.16), transparent 56%),
    rgba(5, 7, 6, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.floating-logo strong {
  color: var(--text);
  font-size: 0.96rem;
}

.card-ai {
  top: 10%;
  left: 8%;
}

.card-adobe {
  top: 21%;
  right: 0;
  animation-delay: -1.2s;
}

.card-stream {
  left: 0;
  bottom: 21%;
  animation-delay: -2.2s;
}

.card-gift {
  right: 4%;
  bottom: 14%;
  animation-delay: -3.4s;
}

.card-vpn {
  top: 47%;
  right: 8%;
  animation-delay: -4.2s;
}

.card-dev {
  top: 43%;
  left: 13%;
  animation-delay: -5s;
}

.trusted-strip {
  padding: 22px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
}

.logo-marquee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
  align-items: center;
  gap: 10px;
}

.logo-marquee img {
  width: 100%;
  height: 58px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.055);
  opacity: 0.84;
  filter: saturate(0.96);
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.logo-marquee img:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 255, 93, 0.22);
  background: rgba(255, 255, 255, 0.085);
  opacity: 1;
}

.section-heading {
  max-width: 780px;
  margin: 0 0 38px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 18% 10%, rgba(184, 255, 93, 0.09), transparent 26rem);
}

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

.service-card,
.trust-card {
  min-height: 220px;
  padding: 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover,
.trust-card:hover,
.catalog-card:hover,
.plan-card:hover,
.contact-card:hover,
.payment-card:hover {
  transform: translateY(-5px) scale(1.005);
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.05);
}

.mini-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.mini-logo-row img,
.asset-logo,
.contact-card img {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.mini-logo-row img {
  width: 48px;
  height: 48px;
  padding: 8px;
  object-fit: contain;
}

.service-card p,
.catalog-card p,
.plan-card p,
.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.catalog-card {
  min-width: 0;
  min-height: 178px;
  padding: 16px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.asset-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  overflow: hidden;
}

.asset-logo-dark {
  border-color: rgba(184, 255, 93, 0.18);
  background:
    radial-gradient(circle at 35% 20%, rgba(184, 255, 93, 0.16), transparent 56%),
    rgba(5, 7, 6, 0.94);
}

.asset-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.catalog-card h3 {
  min-height: 2.54em;
  font-size: 1rem;
}

.request-section {
  padding-bottom: 58px;
}

.request-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
}

.request-panel::before {
  position: absolute;
  inset: -35% -8% auto auto;
  width: 330px;
  height: 330px;
  border-radius: 999px;
  background: rgba(184, 255, 93, 0.16);
  filter: blur(22px);
  content: "";
}

.request-panel > * {
  position: relative;
}

.request-copy p {
  max-width: 650px;
  margin-bottom: 0;
}

.request-ui {
  display: grid;
  gap: 10px;
}

.request-field {
  display: grid;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: text;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.request-field span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.request-field textarea {
  width: 100%;
  min-height: 76px;
  padding: 0;
  border: 0;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.55;
}

.request-field textarea::placeholder {
  color: rgba(247, 255, 243, 0.5);
}

.request-field:focus-within {
  border-color: rgba(184, 255, 93, 0.42);
  background: rgba(255, 255, 255, 0.085);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 4px rgba(184, 255, 93, 0.08),
    0 22px 55px rgba(0, 0, 0, 0.22);
}

.request-field.is-invalid {
  border-color: rgba(255, 132, 132, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 4px rgba(255, 132, 132, 0.08);
}

.request-error {
  min-height: 1.25em;
  margin: 0;
  color: #ffb6b6;
  font-size: 0.9rem;
}

.request-submit {
  border: 0;
  cursor: pointer;
}

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

.plan-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.plan-card::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(184, 255, 93, 0.12);
  filter: blur(8px);
  content: "";
}

.plan-featured {
  border-color: rgba(184, 255, 93, 0.34);
  background:
    linear-gradient(145deg, rgba(184, 255, 93, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
}

.plan-kicker {
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 780;
}

.plan-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-weight: 780;
}

.trust-card {
  min-height: 190px;
}

.trust-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 840;
}

.payment-section {
  padding-top: 78px;
  padding-bottom: 72px;
}

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

.payment-card {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 18px;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.payment-card img {
  width: 86px;
  height: 54px;
  margin-bottom: 12px;
  object-fit: contain;
}

.payment-card span {
  color: var(--muted-strong);
  font-weight: 700;
}

.payment-text strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.15rem;
}

.payment-text span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  padding-top: 58px;
}

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

.contact-card {
  display: grid;
  min-height: 198px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-card img {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  padding: 8px;
  object-fit: contain;
}

.contact-card span {
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 700;
}

.contact-card strong {
  color: var(--text);
  overflow-wrap: anywhere;
}

.reseller {
  padding-top: 34px;
}

.reseller-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(26px, 5vw, 46px);
  overflow: hidden;
}

.reseller-panel::before {
  position: absolute;
  inset: auto -12% -50% 36%;
  height: 230px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 255, 93, 0.16), rgba(116, 248, 255, 0.09));
  filter: blur(22px);
  content: "";
}

.reseller-panel > * {
  position: relative;
}

.reseller-panel p {
  max-width: 780px;
  margin-bottom: 0;
}

.final-cta {
  padding-top: 52px;
}

.final-cta-inner {
  display: grid;
  place-items: center;
  padding: clamp(36px, 7vw, 72px) clamp(20px, 5vw, 52px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 255, 93, 0.2), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.final-cta p {
  max-width: 700px;
  margin-bottom: 28px;
}

.site-footer {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

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

.footer-grid p {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.footer-meta {
  text-align: right;
}

.footer-meta a {
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes page-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(7, 10, 8, 0.97);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

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

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .service-grid,
  .trust-grid,
  .plan-grid,
  .contact-grid,
  .request-panel {
    grid-template-columns: 1fr;
  }

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

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

  .reseller-panel {
    grid-template-columns: 1fr;
  }

  .reseller-panel .btn {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .content-wrap {
    width: min(100% - 24px, var(--max));
  }

  .section-pad {
    padding: 72px 0;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    margin-top: 8px;
    padding: 8px 10px 8px 14px;
  }

  .logo-frame-header {
    --logo-size: 316px;
    width: 180px;
    height: 60px;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.45rem);
    line-height: 1;
  }

  .hero-badge {
    justify-content: center;
    max-width: 100%;
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .hero-actions .btn,
  .request-ui .btn,
  .final-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    font-size: 0.86rem;
  }

  .hero-proof span {
    min-height: 38px;
    padding: 8px 10px;
  }

  .hero-stage {
    min-height: 365px;
  }

  .orbit-card-main {
    width: min(250px, 72vw);
    min-height: 186px;
    padding: 22px;
  }

  .logo-frame-hero {
    --logo-size: 330px;
    width: 184px;
    height: 70px;
  }

  .floating-logo {
    min-width: 122px;
    padding: 10px;
  }

  .floating-logo img {
    width: 34px;
    height: 34px;
    padding: 6px;
  }

  .card-ai {
    top: 4%;
    left: 0;
  }

  .card-adobe {
    top: 13%;
    right: 0;
  }

  .card-dev {
    top: 44%;
    left: 0;
  }

  .card-vpn {
    top: 42%;
    right: 0;
  }

  .card-stream {
    bottom: 12%;
    left: 5%;
  }

  .card-gift {
    right: 2%;
    bottom: 4%;
  }

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

  .service-grid,
  .catalog-grid,
  .trust-grid,
  .plan-grid,
  .contact-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card h3 {
    min-height: auto;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
