:root {
  color-scheme: dark;
  --ink: #f5f7ef;
  --muted: #aeb7c4;
  --line: rgba(142, 234, 54, 0.22);
  --paper: #111820;
  --soft: #0b1016;
  --dark: #050609;
  --surface: #0d1219;
  --surface-2: #151e28;
  --lime: #9dff3d;
  --cyan: #38d7ff;
  --orange: #ff9824;
  --blue: #38d7ff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  --glow: 0 0 26px rgba(157, 255, 61, 0.24);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 104px;
}

main > .section[id] {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  border-radius: 6px;
  background: var(--lime);
  color: #081007;
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(157, 255, 61, 0.24);
  background: rgba(5, 6, 9, 0.94);
  padding: 8px clamp(18px, 4vw, 48px);
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
}

.brand {
  display: flex;
  width: clamp(104px, 9vw, 132px);
  align-items: center;
}

.brand img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 0 28px rgba(157, 255, 61, 0.26), 0 0 22px rgba(56, 215, 255, 0.12);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.main-nav a {
  position: relative;
  color: rgba(86, 215, 255, 0.92);
  padding: 4px 0;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(56, 215, 255, 0.16);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #8ce9ff;
  text-shadow: 0 0 18px rgba(56, 215, 255, 0.42);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 850;
  font: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: clamp(520px, 68vh, 660px);
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.96) 0%, rgba(5, 6, 10, 0.78) 46%, rgba(5, 6, 10, 0.36) 100%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.12), rgba(5, 6, 10, 0.94));
}

.hero-content {
  position: relative;
  display: grid;
  min-height: inherit;
  max-width: var(--max);
  align-content: center;
  padding: clamp(46px, 8vw, 92px) clamp(20px, 5vw, 56px) clamp(34px, 6vw, 64px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: clamp(0.96rem, 1.35vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 152, 36, 0.26);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(157, 255, 61, 0.14);
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  border: 1px solid transparent;
  padding: 13px 20px;
  cursor: pointer;
}

.button-primary {
  background: var(--lime);
  color: #071006;
  box-shadow: 0 0 28px rgba(157, 255, 61, 0.32);
}

.button-accent {
  border-color: rgba(255, 152, 36, 0.82);
  background: linear-gradient(135deg, var(--orange), #ffbe55);
  color: #140900;
  box-shadow: 0 0 30px rgba(255, 152, 36, 0.3);
}

.button-dark {
  border-color: rgba(157, 255, 61, 0.34);
  background: var(--surface-2);
  color: #fff;
}

.subpage-hero {
  background:
    linear-gradient(135deg, rgba(157, 255, 61, 0.08), transparent 34%),
    var(--dark);
  color: #fff;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 56px);
}

.subpage-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.subpage-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.business-hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 152, 36, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 152, 36, 0.12), transparent 42%),
    var(--dark);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: rgba(157, 255, 61, 0.18);
}

.trust-strip div {
  min-height: 118px;
  background: linear-gradient(180deg, #121a22, #0b1016);
  padding: clamp(22px, 3vw, 32px);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: #fff;
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.brand-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(157, 255, 61, 0.26);
  border-radius: 8px;
  background: #050609;
  box-shadow: var(--shadow), 0 0 30px rgba(157, 255, 61, 0.12);
}

.brand-tile img {
  width: 100%;
  height: auto;
  min-height: 240px;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.brand-tile-wide {
  grid-column: 1 / -1;
}

.brand-tile-wide img {
  min-height: 320px;
  aspect-ratio: 2.5 / 1;
  object-position: center;
}

.brand-tile-logo img {
  min-height: 0;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  background: #050609;
}

.brand-tile figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 9, 0.9));
}

.brand-tile-logo figcaption {
  position: static;
  border-top: 1px solid rgba(157, 255, 61, 0.22);
  background:
    linear-gradient(90deg, rgba(157, 255, 61, 0.12), rgba(56, 215, 255, 0.08), rgba(5, 6, 9, 0.96));
}

.brand-tile figcaption span,
.brand-tile figcaption strong {
  display: block;
}

.brand-tile figcaption span {
  color: var(--orange);
  font-size: clamp(0.9rem, 1.15vw, 1.02rem);
  font-weight: 950;
  text-transform: uppercase;
}

.brand-tile figcaption strong {
  margin-top: 4px;
  color: #fff;
  font-size: clamp(1.18rem, 2vw, 1.72rem);
  line-height: 1.04;
}

.section {
  padding: clamp(62px, 9vw, 112px) clamp(20px, 5vw, 56px);
  background: var(--dark);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 34px;
}

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

.section-heading h2,
.contact-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: #fff;
}

.section-heading p:not(.eyebrow),
.contact-intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.products-section {
  background:
    linear-gradient(180deg, #07090d 0%, #0e151d 46%, #07090d 100%);
}

.audience-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(157, 255, 61, 0.13), transparent 30%),
    radial-gradient(circle at 84% 28%, rgba(255, 152, 36, 0.1), transparent 32%),
    #07090d;
}

.occasion-section {
  background: #080c12;
}

.business-section {
  background:
    linear-gradient(135deg, rgba(255, 152, 36, 0.08), transparent 36%),
    linear-gradient(180deg, #07090d 0%, #101820 100%);
}

.audience-tabs {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-tab {
  display: grid;
  min-height: 228px;
  align-content: start;
  border: 1px solid rgba(157, 255, 61, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(157, 255, 61, 0.1), rgba(56, 215, 255, 0.06), rgba(13, 18, 25, 0.96)),
    var(--surface);
  padding: clamp(22px, 3.5vw, 32px);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.audience-tab:hover,
.audience-tab:focus-visible {
  border-color: rgba(157, 255, 61, 0.7);
  box-shadow: var(--shadow), var(--glow);
  outline: none;
  transform: translateY(-3px);
}

.audience-tab-business {
  border-color: rgba(255, 152, 36, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 152, 36, 0.15), rgba(56, 215, 255, 0.05), rgba(13, 18, 25, 0.96)),
    var(--surface);
}

.audience-tab-business:hover,
.audience-tab-business:focus-visible {
  border-color: rgba(255, 152, 36, 0.82);
  box-shadow: var(--shadow), 0 0 34px rgba(255, 152, 36, 0.25);
}

.audience-tab span {
  color: var(--orange);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 152, 36, 0.25);
}

.audience-tab-private span {
  color: var(--lime);
  text-shadow: 0 0 15px rgba(157, 255, 61, 0.28);
}

.audience-tab-business span {
  color: var(--orange);
  text-shadow: 0 0 15px rgba(255, 152, 36, 0.28);
}

.audience-tab strong {
  max-width: 500px;
  margin-top: 24px;
  color: #fff;
  font-size: clamp(1.48rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.audience-tab small {
  width: fit-content;
  margin-top: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime), #73e61e);
  color: #071006;
  padding: 11px 15px;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 0 26px rgba(157, 255, 61, 0.22);
}

.audience-tab-business small {
  background: linear-gradient(135deg, var(--orange), #ffbe55);
  color: #140900;
  box-shadow: 0 0 28px rgba(255, 152, 36, 0.28);
}

.brand-showcase-card {
  max-width: var(--max);
  margin: clamp(22px, 4vw, 34px) auto 0;
}

.brand-showcase-card .section-heading {
  margin-right: 0;
  margin-left: 0;
}

.brand-showcase-card .section-heading h2 {
  max-width: 920px;
  font-size: clamp(1.8rem, 4vw, 3.15rem);
}

.occasion-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
}

.occasion-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(157, 255, 61, 0.08), rgba(13, 18, 25, 0.94) 38%),
    var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}

.gallery-card span,
.legal-block span {
  color: var(--orange);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 152, 36, 0.25);
}

.occasion-grid span {
  color: var(--lime);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(157, 255, 61, 0.28);
}

.occasion-grid h3 {
  margin: 42px 0 0;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.14;
}

.occasion-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.private-confidence-note {
  max-width: var(--max);
  margin: 18px auto 0;
  border: 1px solid rgba(157, 255, 61, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(157, 255, 61, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(13, 18, 25, 0.98), rgba(8, 12, 18, 0.98));
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 0 34px rgba(157, 255, 61, 0.08);
}

.private-confidence-note span {
  color: var(--lime);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  font-weight: 950;
  text-transform: uppercase;
}

.private-confidence-note h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  line-height: 1.05;
}

.private-confidence-note p {
  max-width: 900px;
  margin: 14px 0 0;
  color: var(--muted);
}

.business-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.business-grid article {
  min-height: 280px;
  border: 1px solid rgba(56, 215, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(56, 215, 255, 0.1), rgba(13, 18, 25, 0.96)),
    var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}

.business-grid span {
  color: var(--orange);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 152, 36, 0.25);
}

.business-grid h3 {
  margin: 42px 0 0;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.14;
}

.business-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.confidentiality-note {
  max-width: var(--max);
  margin: 18px auto 0;
  border: 1px solid rgba(255, 152, 36, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 152, 36, 0.13), rgba(13, 18, 25, 0.96)),
    var(--surface);
  padding: clamp(22px, 3.5vw, 32px);
  box-shadow: var(--shadow), 0 0 30px rgba(255, 152, 36, 0.12);
}

.confidentiality-note span {
  color: var(--orange);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 152, 36, 0.25);
}

.confidentiality-note h3 {
  margin: 18px 0 0;
  color: #ff8a72;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  line-height: 1.05;
  text-shadow: 0 0 20px rgba(255, 86, 68, 0.24);
}

.confidentiality-note p {
  max-width: 900px;
  margin: 14px 0 0;
  color: var(--muted);
}

.business-contact-layout {
  display: grid;
  max-width: var(--max);
  margin: 24px auto 0;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(22px, 4vw, 38px);
}

.business-contact-copy {
  border: 1px solid rgba(157, 255, 61, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(157, 255, 61, 0.08), rgba(13, 18, 25, 0.96)),
    var(--surface);
  padding: clamp(22px, 3.5vw, 32px);
  box-shadow: var(--shadow);
}

.business-contact-copy span {
  color: var(--orange);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  font-weight: 950;
  text-transform: uppercase;
}

.business-contact-copy h3 {
  margin: 26px 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
  line-height: 1.05;
}

.business-contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
}

.business-request-form .privacy-check a {
  color: var(--orange);
  box-shadow: inset 0 -2px 0 rgba(255, 152, 36, 0.78);
}

.business-request-form .privacy-check a:hover,
.business-request-form .privacy-check a:focus-visible {
  color: #ffbe55;
}

.product-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-page {
  background:
    linear-gradient(180deg, #07090d 0%, #0d131a 100%);
}

.gallery-intro {
  display: grid;
  max-width: var(--max);
  margin: 0 auto 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.gallery-note {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.gallery-card figure {
  margin: 0;
}

.gallery-image-link {
  display: block;
  background: #0a0e14;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: contain;
  background: #0a0e14;
}

.gallery-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(3, 5, 8, 0.92);
  padding: clamp(18px, 4vw, 42px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-frame {
  display: grid;
  max-width: min(1120px, 94vw);
  max-height: 88vh;
  gap: 12px;
  margin: 0;
}

.gallery-lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: calc(88vh - 58px);
  border: 1px solid rgba(157, 255, 61, 0.32);
  border-radius: 8px;
  background: #050609;
  box-shadow: 0 0 42px rgba(157, 255, 61, 0.22);
  object-fit: contain;
}

.gallery-lightbox-caption {
  color: #fff;
  font-weight: 850;
  text-align: center;
  text-shadow: 0 0 18px rgba(157, 255, 61, 0.26);
}

.gallery-lightbox-close {
  position: fixed;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 152, 36, 0.7);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 152, 36, 0.96), rgba(255, 190, 85, 0.96));
  color: #130900;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 0 30px rgba(255, 152, 36, 0.28);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  transform: translateY(-1px);
}

.lightbox-open {
  overflow: hidden;
}

.gallery-card figcaption {
  padding: 20px;
}

.gallery-card h2,
.gallery-card h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.14;
}

.gallery-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.upload-note {
  max-width: var(--max);
  margin: 28px auto 0;
  border: 1px dashed rgba(157, 255, 61, 0.36);
  border-radius: 8px;
  background: rgba(157, 255, 61, 0.06);
  padding: 22px;
}

.upload-note p {
  margin: 0;
  color: var(--muted);
}

.upload-note .text-link {
  margin: 0 0 0 4px;
}

.notes-page {
  background:
    radial-gradient(circle at 16% 14%, rgba(157, 255, 61, 0.12), transparent 30%),
    #07090d;
}

.notice-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.notice-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(56, 215, 255, 0.08), rgba(13, 18, 25, 0.95)),
    var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}

.notice-card span {
  color: var(--orange);
  font-size: clamp(0.95rem, 1.2vw, 1.04rem);
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 152, 36, 0.25);
}

.notice-card h3 {
  margin: 34px 0 0;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.14;
}

.notice-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-page {
  background: var(--dark);
}

.legal-layout {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 20px;
}

.legal-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.legal-block h2 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: 1.4rem;
}

.legal-block p {
  margin: 0 0 10px;
  color: var(--muted);
}

.withdrawal-template {
  margin-top: 14px;
  border: 1px solid rgba(157, 255, 61, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.withdrawal-template p {
  margin-bottom: 12px;
}

.legal-block a {
  color: var(--lime);
  font-weight: 850;
}

.privacy-check a {
  color: var(--cyan);
  font-weight: 850;
  box-shadow: inset 0 -2px 0 var(--lime);
}

.legal-block a.button-primary {
  color: #071006;
}

.legal-block a:hover,
.legal-block a:focus-visible {
  color: #fff;
}

.privacy-check a:hover,
.privacy-check a:focus-visible {
  color: #8ce9ff;
}

.business-request-form .privacy-check a:hover,
.business-request-form .privacy-check a:focus-visible {
  color: #ffbe55;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #141d26, #0d1219);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(157, 255, 61, 0.58);
  box-shadow: var(--shadow), var(--glow);
  transform: translateY(-3px);
}

.product-image-link {
  display: block;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  background: #0a0e14;
}

.product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-content {
  display: grid;
  min-height: 292px;
  align-content: start;
  padding: 22px;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--lime);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(157, 255, 61, 0.22);
}

.product-content h3,
.process-item h3 {
  margin: 0;
  color: #fff;
  font-size: 1.32rem;
  line-height: 1.14;
}

.product-content p:not(.product-kicker),
.process-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.text-link {
  width: fit-content;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 900;
  box-shadow: inset 0 -2px 0 var(--lime);
}

.text-link.private-contact-link {
  color: var(--lime);
  text-shadow: 0 0 16px rgba(157, 255, 61, 0.24);
}

.process-section {
  background: #080c12;
}

.process-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.process-item {
  border-top: 4px solid var(--lime);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 22px;
  box-shadow: inset 0 0 0 1px rgba(157, 255, 61, 0.08);
}

.process-item span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--lime);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 950;
  text-shadow: 0 0 15px rgba(157, 255, 61, 0.28);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(56, 215, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #06080c, #0c1218);
  color: #fff;
}

.contact-layout {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 56px);
}

.contact-intro {
  position: sticky;
  top: 116px;
  padding-top: 14px;
}

.contact-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.request-form {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(157, 255, 61, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 215, 255, 0.12), rgba(157, 255, 61, 0.09)),
    rgba(13, 18, 25, 0.96);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow), var(--glow);
}

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

.request-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 850;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(157, 255, 61, 0.24);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.86);
  color: #fff;
  font: inherit;
  padding: 12px 14px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(157, 255, 61, 0.16);
  outline: none;
}

.request-form textarea {
  min-height: 150px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.4;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--lime);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.request-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.form-status {
  min-height: 22px;
  color: var(--lime);
  font-weight: 850;
}

.mail-address {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 3px;
  justify-content: flex-start;
  color: var(--cyan);
  font-size: 1.02rem;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(56, 215, 255, 0.24);
}

.mail-inline {
  border-bottom: 2px solid var(--lime);
  color: var(--cyan);
  font-weight: 850;
  padding-bottom: 2px;
  text-shadow: 0 0 14px rgba(56, 215, 255, 0.2);
}

.business-shortcut {
  display: grid;
  max-width: 420px;
  gap: 10px;
  margin-top: 24px;
  border: 1px solid rgba(255, 152, 36, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 152, 36, 0.12), rgba(13, 18, 25, 0.92)),
    rgba(13, 18, 25, 0.96);
  padding: 18px;
  box-shadow: 0 0 28px rgba(255, 152, 36, 0.14);
}

.business-shortcut strong {
  color: #fff;
  line-height: 1.22;
}

.business-shortcut p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.business-shortcut .button {
  width: fit-content;
  margin-top: 2px;
}

.legal-action {
  width: fit-content;
  margin-top: 10px;
  min-height: 38px;
  padding: 9px 14px;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82) !important;
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 750;
}

.legal-action:hover,
.legal-action:focus-visible {
  border-color: rgba(86, 215, 255, 0.52);
  background: rgba(86, 215, 255, 0.1);
  color: #fff !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(157, 255, 61, 0.2);
  background: #050609;
  color: rgba(255, 255, 255, 0.76);
  padding: 28px clamp(20px, 5vw, 56px);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.main-nav .nav-private,
.main-nav .nav-contact {
  color: var(--lime);
  text-shadow: 0 0 14px rgba(157, 255, 61, 0.28);
}

.main-nav .nav-business {
  color: var(--orange);
  text-shadow: 0 0 14px rgba(255, 152, 36, 0.28);
}

.main-nav .nav-private::after,
.main-nav .nav-contact::after {
  background: var(--lime);
}

.main-nav .nav-business::after {
  background: var(--orange);
}

.main-nav .nav-private:hover,
.main-nav .nav-private:focus-visible,
.main-nav .nav-contact:hover,
.main-nav .nav-contact:focus-visible {
  color: #b7ff61;
  text-shadow: 0 0 20px rgba(157, 255, 61, 0.5);
}

.main-nav .nav-business:hover,
.main-nav .nav-business:focus-visible {
  color: #ffbe55;
  text-shadow: 0 0 20px rgba(255, 152, 36, 0.5);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 860px) {
  [id] {
    scroll-margin-top: 148px;
  }

  main > .section[id] {
    scroll-margin-top: 104px;
  }

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

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 8px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 0.84rem;
  }

  .brand {
    width: 104px;
  }

  .brand img {
    width: 100%;
  }

  .hero {
    min-height: 600px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 6, 10, 0.9) 0%, rgba(5, 6, 10, 0.72) 50%, rgba(5, 6, 10, 0.94) 100%);
  }

  .hero-content {
    align-content: end;
  }

  .trust-strip,
  .audience-tabs,
  .occasion-grid,
  .business-grid,
  .business-contact-layout,
  .notice-grid,
  .product-grid,
  .gallery-intro,
  .gallery-grid,
  .process-grid,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand-tile-wide {
    grid-column: auto;
  }

  .brand-tile img,
  .brand-tile-wide img {
    min-height: 240px;
    aspect-ratio: 1.25 / 1;
  }

  .brand-tile-logo img {
    min-height: 0;
    aspect-ratio: 2 / 1;
    object-fit: contain;
  }

  .product-content {
    min-height: auto;
  }

  .contact-intro {
    position: static;
    padding-top: 0;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 540px) {
  [id] {
    scroll-margin-top: 150px;
  }

  main > .section[id] {
    scroll-margin-top: 118px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 2.32rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding-inline: 16px;
  }
}
