:root {
  color-scheme: dark;
  --bg: #080a0d;
  --panel: rgba(14, 18, 24, 0.76);
  --panel-strong: rgba(18, 23, 30, 0.94);
  --line: rgba(197, 213, 224, 0.16);
  --line-strong: rgba(219, 239, 250, 0.34);
  --text: #eef5f7;
  --muted: #97a5ad;
  --soft: #c6d0d5;
  --accent: #8ce7d2;
  --accent-2: #7aa7ff;
  --danger: #ff9f9f;
  --radius: 8px;
  --max: 1120px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", sans-serif;
}

html[lang="en"] {
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.entry-module p:not(.eyebrow) {
  min-height: calc(1.75em * 3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(59, 108, 130, 0.28), transparent 34rem),
    linear-gradient(180deg, #080a0d, #0c0f13 54%, #07090c);
  color: var(--text);
}

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

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

.shell {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-video,
.video-fallback,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: -3;
  filter: saturate(0.65) brightness(0.5) contrast(1.1);
}

.video-fallback {
  z-index: -4;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(140, 231, 210, 0.15) 39% 40%, transparent 41%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 84px),
    linear-gradient(135deg, #071014, #151922 46%, #060709);
  animation: drift 12s linear infinite;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.9), rgba(5, 7, 9, 0.64) 42%, rgba(5, 7, 9, 0.82)),
    linear-gradient(180deg, rgba(5, 7, 9, 0.35), rgba(5, 7, 9, 0.76));
}

.topbar {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 650;
}

.brand-logo {
  width: auto;
  height: 28px;
  max-width: min(190px, 46vw);
  display: block;
  object-fit: contain;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  background: rgba(255,255,255,0.04);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent-2);
  transform: rotate(45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--soft);
  font-size: 14px;
}

.topbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-toggle {
  min-width: 54px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(196, 219, 224, 0.2);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.language-toggle:hover {
  border-color: rgba(125, 224, 207, 0.48);
  color: var(--text);
  background: rgba(125, 224, 207, 0.07);
}

.language-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  align-self: center;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro {
  max-width: 640px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.8;
}

.primary-action,
.secondary-action {
  border: 0;
  border-radius: var(--radius);
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-action {
  margin-top: 18px;
  color: #06100e;
  background: linear-gradient(135deg, var(--accent), #d2fff5);
  font-weight: 700;
  box-shadow: 0 18px 60px rgba(140, 231, 210, 0.18);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

.primary-action.compact {
  margin-top: 0;
}

.secondary-action {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}

.hero-status {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.hero-status span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}

.service-section,
.address-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.aftercare-site {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(140, 231, 210, 0.08), transparent 360px),
    radial-gradient(circle at 82% 0%, rgba(122, 167, 255, 0.16), transparent 28rem);
}

.home-site {
  min-height: 100svh;
  background:
    radial-gradient(circle at 10% 0%, rgba(140, 231, 210, 0.18), transparent 28rem),
    radial-gradient(circle at 94% 20%, rgba(122, 167, 255, 0.15), transparent 30rem),
    linear-gradient(180deg, #080a0d, #0b0f14);
}

.page-topbar {
  border-bottom: 1px solid var(--line);
}

.standalone-service {
  padding-top: 72px;
}

.home-modules {
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 18px;
  align-items: stretch;
}

.entry-module {
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(10, 13, 18, 0.66);
}

.entry-module::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(140, 231, 210, 0.12) 43% 44%, transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 90px);
  opacity: 0.7;
  pointer-events: none;
}

.entry-module > * {
  position: relative;
}

.entry-module h1,
.entry-module h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}

.entry-module p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.85;
}

.review-module {
  background:
    linear-gradient(180deg, rgba(140, 231, 210, 0.105), rgba(255, 255, 255, 0.018)),
    rgba(10, 13, 18, 0.78);
}

.aftercare-module {
  background:
    linear-gradient(180deg, rgba(122, 167, 255, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(10, 13, 18, 0.72);
}

.benefit-mini-module {
  grid-column: 1 / -1;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(223, 232, 191, 0.105), rgba(255, 255, 255, 0.018)),
    rgba(10, 13, 18, 0.72);
}

.benefit-mini-module .eyebrow,
.benefit-mini-module h2,
.benefit-mini-module p {
  margin: 0;
}

.benefit-mini-module h2 {
  font-size: 22px;
  line-height: 1.2;
}

.benefit-mini-module p {
  grid-column: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.benefit-mini-module .secondary-action {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.section-head {
  max-width: 690px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.aftercare-form,
.address-form {
  border-top: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  padding: 24px 0;
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.amazon-order-inputs {
  display: grid;
  grid-template-columns: minmax(54px, 3fr) auto minmax(92px, 7fr) auto minmax(92px, 7fr);
  align-items: center;
  gap: 8px;
}

.amazon-order-part {
  min-width: 0;
  padding-right: 8px;
  padding-left: 8px;
  text-align: center;
}

.amazon-order-separator {
  color: var(--muted) !important;
  font-size: 18px !important;
}

.order-benefit-hint {
  min-height: 18px;
  margin: 0;
  text-align: right;
  font-size: 12px;
  line-height: 1.5;
}

.order-benefit-hint.is-idle,
.order-benefit-hint.is-checking {
  color: var(--muted);
}

.order-benefit-hint.is-eligible {
  color: #70dfb2;
}

.order-benefit-hint.is-ineligible {
  color: #ff7474;
}

.order-benefit-hint a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 160ms ease;
}

.order-benefit-hint a:hover,
.order-benefit-hint a:focus-visible {
  color: #70dfb2;
}

@keyframes replacement-card-spectrum {
  0% { background-position: 0 0, 0% 50%; }
  50% { background-position: 0 0, 100% 50%; }
  100% { background-position: 0 0, 0% 50%; }
}

.free-replacement-card.is-disabled {
  border-color: rgba(190, 198, 201, 0.14) !important;
  color: #7c8385;
  background: rgba(118, 126, 128, 0.055) !important;
  cursor: not-allowed;
  opacity: 0.62;
}

.free-replacement-card.is-disabled small {
  color: #6f7678;
}

.free-replacement-card.is-eligible {
  border-color: transparent !important;
  background:
    linear-gradient(#121716, #121716) padding-box,
    linear-gradient(110deg, #60e8ca, #6aa8ff, #bf74ff, #ff78a7, #ffd36a, #60e8ca) border-box !important;
  background-size: 100% 100%, 260% 260% !important;
  box-shadow: 0 12px 38px rgba(112, 223, 178, 0.11);
  animation: replacement-card-spectrum 5s ease infinite;
}

.field span,
.choice-panel legend,
.rating-panel legend {
  color: var(--soft);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
  color: var(--text);
  outline: none;
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

select option {
  color: #111111;
  background: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 92px;
  padding: 13px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(140, 231, 210, 0.72);
  box-shadow: 0 0 0 3px rgba(140, 231, 210, 0.08);
}

.choice-panel,
.upload-panel,
.rating-panel {
  margin: 0;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.choice-panel legend,
.rating-panel legend {
  margin-bottom: 14px;
  padding: 0;
}

.rating-panel {
  display: grid;
  justify-items: center;
}

.rating-panel legend {
  justify-self: start;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 18px);
  width: 100%;
  padding: 18px 0 8px;
}

.star-rating label {
  width: clamp(48px, 7vw, 76px);
  height: clamp(48px, 7vw, 76px);
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.star-rating label:hover {
  background: rgba(255, 255, 255, 0.045);
}

.star-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-rating span {
  color: rgba(238, 245, 247, 0.28);
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1;
  transition: color 140ms ease, transform 140ms ease;
}

.star-rating label.is-active span {
  color: var(--accent);
  transform: translateY(-1px);
}

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

.review-message-field {
  position: relative;
}

.review-message-field textarea {
  padding-bottom: 13px;
}

.character-count {
  justify-self: start;
  margin-top: -2px;
  font-size: 12px;
}

.character-count.is-empty {
  color: var(--muted);
}

.character-count.is-short {
  color: var(--danger);
}

.character-count.is-complete {
  color: var(--accent);
}

.upload-button {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.upload-button:hover {
  border-color: rgba(140, 231, 210, 0.6);
  background: rgba(140, 231, 210, 0.08);
}

.upload-button input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-button span {
  font-size: 21px;
  line-height: 1;
}

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

.review-upload-item {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.review-upload-label {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.review-upload-box {
  position: relative;
  min-height: 180px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.review-upload-box:hover {
  border-color: rgba(140, 231, 210, 0.62);
  background: rgba(140, 231, 210, 0.06);
}

.review-upload-box input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.upload-placeholder {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.22);
}

.review-preview {
  position: absolute;
  inset: 0;
}

.review-preview img,
.review-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-upload-box.has-preview .upload-placeholder {
  opacity: 0;
}

.entitlement-page {
  min-height: calc(100svh - 78px);
  display: grid;
  align-content: start;
}

.entitlement-search {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.countdown-display {
  position: relative;
  min-height: 260px;
  margin: 42px 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(140, 231, 210, 0.16), transparent 28rem),
    rgba(255, 255, 255, 0.032);
}

.countdown-display strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--text);
  font-size: clamp(28px, 5.2vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.countdown-display strong.is-empty {
  color: var(--muted);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 520;
}

.countdown-display > .eyebrow {
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  margin: 0;
  text-align: center;
}

.benefit-status {
  position: absolute;
  top: 48px;
  left: 24px;
  right: 24px;
  min-height: 28px;
  margin: 0;
  text-align: center;
  font-size: clamp(16px, 2.1vw, 22px);
  font-weight: 650;
}

.benefit-status.is-active {
  color: #8ce7d2;
}

.benefit-status.is-active + strong {
  inset: auto 24px;
  top: 60%;
  display: block;
  padding: 0;
  text-align: center;
  transform: translateY(-50%);
  white-space: nowrap;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.benefit-status.is-expired {
  top: 50%;
  transform: translateY(-50%);
  color: #ff7d7d;
}

.optional-review-link {
  display: none;
}

.database-site {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 0%, rgba(140, 231, 210, 0.12), transparent 26rem),
    radial-gradient(circle at 92% 8%, rgba(122, 167, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #080a0d, #0b0f14);
}

.database-login {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(140, 231, 210, 0.14), transparent 28rem),
    rgba(5, 7, 9, 0.94);
}

.database-login[hidden] {
  display: none;
}

.database-login-card {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(14, 18, 24, 0.94);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.36);
}

.database-login-card h1 {
  margin-bottom: 22px;
  font-size: 34px;
}

.database-login-card .field {
  margin-bottom: 14px;
}

.database-page {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 86px;
}

.database-hero,
.database-toolbar,
.database-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.database-hero {
  margin-bottom: 28px;
}

.database-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.record-actions {
  display: flex;
  justify-content: flex-end;
}

.database-hero h1 {
  margin-bottom: 12px;
}

.database-hero p:not(.eyebrow) {
  color: var(--muted);
}

.database-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.database-stats article,
.database-table-wrap,
.database-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.database-stats article {
  padding: 18px;
}

.database-stats span {
  color: var(--muted);
  font-size: 13px;
}

.database-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  line-height: 1;
}

.database-toolbar {
  margin-bottom: 14px;
}

.database-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.database-tabs button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--soft);
  background: transparent;
  cursor: pointer;
}

.database-tabs button.is-active {
  color: #06100e;
  background: var(--accent);
}

.database-search {
  width: min(360px, 100%);
}

.database-table-wrap {
  overflow: auto;
}

.database-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.database-table th,
.database-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.database-table th {
  color: var(--muted);
  font-weight: 600;
}

.database-table tr[data-index] {
  cursor: pointer;
}

.database-table tr[data-index]:hover {
  background: rgba(140, 231, 210, 0.055);
}

.database-detail {
  margin-top: 18px;
  padding: 18px;
}

.database-detail h2 {
  margin-bottom: 0;
  font-size: 20px;
}

.database-detail span {
  color: var(--muted);
  font-size: 13px;
}

.database-record-detail {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.manual-entry-page {
  padding-bottom: 96px;
}

.manual-entry-form {
  display: none;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.manual-entry-form.is-active {
  display: block;
}

.manual-entry-form h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.record-editor {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 7, 9, 0.72);
  backdrop-filter: blur(12px);
}

.record-editor[hidden] {
  display: none;
}

.record-editor-card {
  width: min(760px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(14, 18, 24, 0.98);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.record-editor-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 22px;
}

.icon-action {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

#deleteRecordButton {
  border-color: rgba(255, 159, 159, 0.45);
  color: var(--danger);
}

.detail-panel {
  display: grid;
  gap: 14px;
}

.detail-card,
.detail-field {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.detail-card {
  padding: 18px;
}

.detail-card h3 {
  margin-bottom: 14px;
  font-size: 15px;
}

.detail-card p {
  color: var(--muted);
  line-height: 1.7;
}

.detail-hero-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(140, 231, 210, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.045);
}

.detail-kicker,
.detail-field span,
.detail-media-card figcaption span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.detail-stars {
  display: flex;
  gap: 8px;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.18);
  font-size: 34px;
  line-height: 1;
}

.detail-stars.small {
  font-size: 22px;
}

.detail-stars .is-on {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(140, 231, 210, 0.28);
}

.detail-countdown,
.detail-status {
  margin: 8px 0;
  color: var(--text);
  font-size: 32px;
  font-weight: 650;
}

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

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

.detail-field {
  padding: 13px 14px;
}

.detail-field strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 14px;
  font-weight: 520;
  word-break: break-word;
}

.detail-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.detail-media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.detail-media-card img,
.detail-media-card video,
.media-empty,
.detail-empty {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.detail-media-card img,
.detail-media-card video {
  display: block;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
}

.media-empty,
.detail-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.detail-media-card figcaption {
  padding: 12px;
}

.detail-media-card figcaption strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  word-break: break-word;
}

.radio-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: 18px;
  color: var(--text);
}

.radio-line input,
.resolution-card input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.reason-detail,
.other-reason {
  max-width: 680px;
  margin-top: 16px;
  display: none;
}

.reason-detail.is-visible,
.other-reason.is-visible {
  display: grid;
}

.upload-panel {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 20px;
  align-items: start;
}

.upload-panel h3 {
  margin-bottom: 8px;
}

.upload-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.upload-drop {
  position: relative;
  min-height: 132px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--soft);
  background: rgba(255,255,255,0.035);
  cursor: pointer;
}

.upload-drop input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: 22px;
}

.preview-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.preview-item {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  position: relative;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-item button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  background: rgba(0,0,0,0.62);
  color: #fff;
  cursor: pointer;
}

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

.resolution-card {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  column-gap: 12px;
  background: rgba(255,255,255,0.035);
  cursor: pointer;
}

.resolution-card:has(input:checked) {
  border-color: rgba(140, 231, 210, 0.64);
  background: rgba(140, 231, 210, 0.08);
}

.resolution-card span,
.resolution-card small {
  grid-column: 2;
}

.resolution-card span {
  font-weight: 650;
}

.resolution-card small {
  margin-top: 6px;
  color: var(--muted);
}

.form-footer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.entitlement-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.entitlement-page > #entitlementMessage {
  display: none;
}

.entitlement-review-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.review-share-notice[hidden] {
  display: none;
}

.review-share-notice {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.review-share-panel {
  position: relative;
  width: min(620px, 100%);
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(196, 219, 224, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #121718, #0b0d0e);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58), var(--inset-line);
}

.review-share-panel h2 {
  margin: 0 40px 12px 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.15;
}

.review-share-description {
  margin: 0 0 24px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.75;
}

.review-share-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(196, 219, 224, 0.16);
  border-radius: 50%;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.03);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.review-share-field {
  display: grid;
  gap: 9px;
  color: var(--soft);
  font-size: 12px;
}

.review-share-field textarea {
  width: 100%;
  min-height: 126px;
  resize: vertical;
  padding: 14px;
  border: 1px solid rgba(196, 219, 224, 0.15);
  border-radius: 6px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  font-size: 14px;
  line-height: 1.65;
}

.review-share-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.review-share-button-group {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.review-share-amazon-link {
  flex: 0 0 auto;
}

.review-share-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.form-message {
  margin: 0 auto 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.form-message.is-error {
  color: var(--danger);
}

.form-message.is-success {
  color: var(--accent);
}

.address-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.address-success-modal[hidden] {
  display: none;
}

.address-success-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #141717;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.address-success-dialog,
.address-success-dialog * {
  font-weight: 400 !important;
}

.address-success-dialog h2 {
  margin: 14px 0 28px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
}

.address-success-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.address-success-actions a {
  text-decoration: none;
}

.address-success-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

@media (max-width: 640px) {
  .address-success-dialog {
    padding: 34px 24px 26px;
  }

  .address-success-actions {
    flex-direction: column;
  }
}

.address-section {
  border-top: 1px solid var(--line);
}

@keyframes drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 220px 0, 168px 0, 0 0;
  }
}

@media (max-width: 760px) {
  .topbar,
  .hero-content,
  .hero-status,
  .service-section,
  .address-section {
    width: min(100% - 28px, var(--max));
  }

  .topbar {
    padding-top: 18px;
  }

  .nav {
    margin-left: auto;
    display: flex;
    gap: 2px;
  }

  .nav a {
    display: block;
    padding: 6px 7px;
    font-size: 11px;
  }

  .topbar {
    gap: 8px;
  }

  .brand-logo {
    height: 22px;
    max-width: 110px;
  }

  .language-toggle {
    min-width: 44px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  h1 {
    font-size: 40px;
  }

  .intro {
    font-size: 15px;
  }

  .form-grid,
  .upload-panel,
  .review-upload-grid,
  .resolution-grid,
  .home-modules,
  .entitlement-search,
  .record-editor-fields {
    grid-template-columns: 1fr;
  }

  .home-modules {
    width: min(100% - 28px, var(--max));
    padding: 36px 0 56px;
  }

  .entry-module {
    min-height: 360px;
  }

  .benefit-mini-module {
    grid-template-columns: 1fr;
  }

  .benefit-mini-module .secondary-action {
    grid-column: 1;
    grid-row: auto;
    width: fit-content;
  }

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .entitlement-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-message {
    margin: 0;
  }
}

/* Ludvento visual refinement layer */
:root {
  --bg: #0e0e0e;
  --panel: rgba(12, 16, 21, 0.72);
  --panel-strong: rgba(13, 17, 23, 0.94);
  --line: rgba(196, 219, 224, 0.115);
  --line-strong: rgba(173, 225, 220, 0.28);
  --text: #eef6f5;
  --muted: #819098;
  --soft: #b7c4c8;
  --accent: #7de0cf;
  --accent-2: #8aa6ff;
  --danger: #ff8585;
  --radius: 8px;
  --shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.28);
  --inset-line: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

body {
  background: #0e0e0e;
}

body::before {
  content: none;
}

.aftercare-site,
.home-site,
.database-site {
  background: #0e0e0e;
  padding-top: 69px;
}

.topbar {
  padding: 18px 0;
}

.page-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  margin: 0;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  border-bottom-color: rgba(196, 219, 224, 0.12);
  background: rgba(0, 0, 0, 0.78);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.brand {
  letter-spacing: 0.02em;
}

.brand-mark {
  border-color: rgba(125, 224, 207, 0.34);
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 224, 207, 0.2), transparent 54%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 24px rgba(125, 224, 207, 0.13);
}

.nav {
  gap: 8px;
}

.nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  text-transform: uppercase;
}

.nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.home-modules {
  min-height: calc(100svh - 65px);
  padding: 46px 0 52px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.entry-module {
  min-height: 470px;
  padding: clamp(28px, 4.4vw, 48px);
  border-color: rgba(196, 219, 224, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.018)),
    rgba(8, 12, 17, 0.74);
  box-shadow: var(--shadow-panel), var(--inset-line);
}

.entry-module::before {
  background:
    linear-gradient(120deg, transparent 0 53%, rgba(125, 224, 207, 0.1) 53.4% 53.8%, transparent 54.2%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
  opacity: 1;
}

.entry-module::after,
.benefit-mini-module::after,
.database-stats article::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 224, 207, 0.58));
}

.entry-module h1,
.entry-module h2 {
  max-width: 580px;
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 620;
  letter-spacing: 0;
}

.entry-module p:not(.eyebrow) {
  max-width: 560px;
  color: #aab9bd;
  font-size: 16px;
  line-height: 1.75;
}

.eyebrow {
  color: #89d9ca;
  letter-spacing: 0.18em;
}

.review-module,
.aftercare-module {
  background:
    radial-gradient(circle at 85% 16%, rgba(125, 224, 207, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(8, 12, 17, 0.76);
}

.review-module {
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.68), rgba(6, 7, 8, 0.5)),
    url("./assets/ludvento-review-benefit-bg.png") center / cover no-repeat;
}

.review-module::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.3));
}

.aftercare-module {
  background:
    linear-gradient(90deg, rgba(6, 7, 8, 0.78) 0%, rgba(6, 7, 8, 0.62) 48%, rgba(6, 7, 8, 0.2) 100%),
    url("./assets/ludvento-aftercare-bg.png") center / cover no-repeat;
}

.aftercare-module::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

.benefit-mini-module {
  position: relative;
  align-self: start;
  min-height: 96px;
  padding: 18px 18px 18px 22px;
  border-color: rgba(196, 219, 224, 0.105);
  background:
    linear-gradient(90deg, rgba(125, 224, 207, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 12, 17, 0.7);
  box-shadow: var(--inset-line);
}

.benefit-mini-module h2 {
  font-size: 20px;
  font-weight: 600;
}

.primary-action,
.secondary-action {
  min-height: 44px;
  border-radius: 6px;
  letter-spacing: 0.01em;
}

.primary-action {
  background: linear-gradient(135deg, #80e0cf, #d6fff6);
  box-shadow: 0 16px 42px rgba(125, 224, 207, 0.16);
}

.secondary-action {
  border-color: rgba(196, 219, 224, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.secondary-action:hover {
  border-color: rgba(125, 224, 207, 0.38);
  background: rgba(125, 224, 207, 0.065);
}

.aftercare-site,
.home-site,
.database-site {
  background: #0e0e0e;
}

.service-section,
.address-section,
.database-page {
  width: min(1160px, calc(100% - 48px));
}

.standalone-service {
  padding-top: 58px;
}

.section-head {
  max-width: 760px;
}

.section-head h1,
.section-head h2,
.database-hero h1 {
  font-weight: 620;
}

.aftercare-form,
.address-form,
.manual-entry-form {
  border-top-color: rgba(196, 219, 224, 0.105);
}

.form-grid {
  gap: 14px;
}

.field span,
.choice-panel legend,
.rating-panel legend {
  color: #a9b7ba;
  font-size: 12px;
  letter-spacing: 0.045em;
}

input,
select,
textarea {
  border-color: rgba(196, 219, 224, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.032);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.026);
}

input,
select {
  height: 46px;
}

textarea {
  min-height: 104px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(125, 224, 207, 0.55);
  background: rgba(255, 255, 255, 0.046);
  box-shadow: 0 0 0 3px rgba(125, 224, 207, 0.075);
}

.rating-panel,
.choice-panel,
.upload-panel {
  border-top-color: rgba(196, 219, 224, 0.105);
}

.star-rating label {
  width: clamp(42px, 6vw, 66px);
  height: clamp(42px, 6vw, 66px);
}

.star-rating span {
  font-size: clamp(38px, 6vw, 58px);
}

.review-upload-box,
.upload-drop,
.resolution-card,
.countdown-display,
.database-stats article,
.database-table-wrap,
.database-detail,
.detail-card,
.detail-field,
.record-editor-card,
.database-login-card {
  border-color: rgba(196, 219, 224, 0.115);
  background: rgba(255, 255, 255, 0.028);
  box-shadow: var(--inset-line);
}

.review-upload-box,
.upload-drop {
  min-height: 156px;
}

.resolution-card:has(input:checked) {
  border-color: rgba(125, 224, 207, 0.44);
  background: rgba(125, 224, 207, 0.055);
}

.countdown-display {
  min-height: 280px;
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 224, 207, 0.11), transparent 22rem),
    rgba(255, 255, 255, 0.026);
}

.database-page {
  padding-top: 44px;
}

.database-hero {
  align-items: flex-end;
  border-bottom: 1px solid rgba(196, 219, 224, 0.095);
  padding-bottom: 22px;
}

.database-stats {
  gap: 10px;
}

.database-stats article {
  position: relative;
  overflow: hidden;
  padding: 16px;
}

.database-stats strong {
  font-size: 30px;
  font-weight: 610;
}

.database-tabs {
  border-color: rgba(196, 219, 224, 0.105);
  background: rgba(255, 255, 255, 0.026);
}

.database-tabs button {
  min-height: 34px;
  color: #94a3a8;
}

.database-tabs button.is-active {
  color: #07100f;
  background: #7de0cf;
}

.database-table {
  min-width: 820px;
}

.database-table th,
.database-table td {
  padding: 12px 14px;
  border-bottom-color: rgba(196, 219, 224, 0.085);
}

.database-table th {
  color: #8b9a9f;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.database-table tr[data-index]:hover {
  background: rgba(125, 224, 207, 0.045);
}

.detail-hero-card {
  background:
    radial-gradient(circle at 86% 8%, rgba(125, 224, 207, 0.1), transparent 18rem),
    rgba(255, 255, 255, 0.028);
}

.record-editor {
  background: rgba(5, 7, 10, 0.78);
}

.record-editor-card {
  background:
    radial-gradient(circle at 82% 0%, rgba(125, 224, 207, 0.075), transparent 18rem),
    rgba(11, 15, 20, 0.98);
}

.database-login-card {
  background:
    radial-gradient(circle at 80% 0%, rgba(125, 224, 207, 0.075), transparent 16rem),
    rgba(11, 15, 20, 0.98);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.48), var(--inset-line);
}

@media (max-width: 760px) {
  .home-modules {
    gap: 12px;
    padding-top: 28px;
  }

  .entry-module {
    min-height: 330px;
  }

  .database-hero {
    align-items: stretch;
  }
}

.review-showcase {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 72px;
  overflow: hidden;
}

.home-site .home-modules {
  min-height: 0;
  padding-bottom: 20px;
  align-content: start;
}

.review-showcase-head {
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.review-showcase-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.review-showcase-head > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
}

.review-showcase-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.review-showcase-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.review-showcase-track.is-scrolling {
  animation: review-showcase-scroll 34s linear infinite;
}

.review-showcase-viewport:hover .review-showcase-track,
.review-showcase-viewport:focus-within .review-showcase-track {
  animation-play-state: paused;
}

.public-review-card {
  width: min(420px, calc(100vw - 48px));
  min-height: 320px;
  padding: 18px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgba(196, 219, 224, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 0%, rgba(125, 224, 207, 0.09), transparent 15rem),
    rgba(255, 255, 255, 0.028);
  box-shadow: var(--inset-line);
}

.public-review-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.public-review-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(140, 231, 210, 0.32);
  border-radius: 50%;
  color: #07100f;
  background: linear-gradient(135deg, #7de0cf, #d8fff7);
  font-size: 14px;
  font-weight: 750;
}

.public-review-avatar[data-style="1"] {
  background: linear-gradient(135deg, #89aaff, #d9e3ff);
}

.public-review-avatar[data-style="2"] {
  background: linear-gradient(135deg, #e4c47a, #fff0c1);
}

.public-review-avatar[data-style="3"] {
  background: linear-gradient(135deg, #c69cff, #eadbff);
}

.public-review-author strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
}

.public-review-author small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-review-rating {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
  color: rgba(244, 207, 105, 0.28);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.public-review-rating .is-active {
  color: #f4cf69;
  text-shadow: 0 0 18px rgba(244, 207, 105, 0.18);
}

.public-review-content {
  min-height: 48px;
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.public-review-content.is-empty {
  color: var(--muted);
}

.public-review-media {
  min-height: 170px;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.public-review-media.is-single {
  grid-template-columns: 1fr;
}

.public-review-media img,
.public-review-media video {
  width: 100%;
  height: 170px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(196, 219, 224, 0.1);
  border-radius: 6px;
  background: #080a0d;
}

.public-review-card.no-media {
  min-height: 190px;
}

.review-showcase-empty {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0;
  padding: 42px 20px;
  border: 1px dashed rgba(196, 219, 224, 0.14);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

@keyframes review-showcase-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-showcase-track.is-scrolling {
    animation: none;
  }
}

@media (max-width: 760px) {
  .review-showcase {
    width: min(100% - 28px, var(--max));
    padding: 0 0 52px;
  }

  .home-site .home-modules {
    padding-bottom: 16px;
  }

  .review-showcase-head {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .review-showcase-head > p {
    text-align: left;
  }

  .public-review-card {
    min-height: 290px;
  }
}

.brand-home-hero {
  position: relative;
  width: 100%;
  height: clamp(460px, 39.0625vw, 750px);
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(196, 219, 224, 0.1);
  background: #0b0e14;
}

.brand-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 8, 13, 0.34), transparent 34%);
}

.brand-home-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.brand-home-hero-action {
  position: absolute;
  top: 58%;
  left: max(28px, calc((100vw - var(--max)) / 2));
  z-index: 2;
  transform: translateY(-50%);
}

.brand-buy-button {
  min-width: 148px;
  min-height: 54px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(238, 245, 247, 0.54);
  border-radius: 6px;
  color: #f5f8fa;
  background: rgba(7, 10, 15, 0.48);
  backdrop-filter: blur(8px);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.03em;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.brand-buy-button:hover {
  border-color: rgba(140, 231, 210, 0.88);
  background: rgba(7, 10, 15, 0.74);
  transform: translateY(-2px);
}

.brand-buy-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.home-aftercare-link {
  padding: 7px 0;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0.08em;
  transition: color 160ms ease;
}

.home-aftercare-link:hover {
  color: var(--accent);
}

.home-aftercare-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.brand-home-reviews {
  padding-top: 58px;
}

.home-aftercare-banner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  min-height: 220px;
  margin: 18px auto 0;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(196, 219, 224, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(120deg, #0b0d0e 0%, #101415 100%);
  box-shadow: var(--shadow-panel), var(--inset-line);
}

.home-aftercare-banner::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 224, 207, 0.58));
}

.home-aftercare-copy,
.home-aftercare-action {
  position: relative;
  z-index: 1;
}

.home-aftercare-copy {
  max-width: 650px;
}

.home-aftercare-copy h2 {
  margin: 4px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.home-aftercare-copy > p:not(.eyebrow) {
  margin: 0;
  color: #aab9bd;
  font-size: 15px;
  line-height: 1.75;
}

.home-aftercare-action {
  min-width: 176px;
  flex: 0 0 auto;
  margin-right: 0;
}

.contact-site {
  min-height: 100svh;
}

.contact-page {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 0 96px;
}

.contact-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.contact-heading h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.contact-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.contact-card {
  min-height: 178px;
  padding: 28px;
  border: 1px solid rgba(196, 219, 224, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(17, 22, 24, 0.94), rgba(10, 12, 13, 0.96));
  box-shadow: var(--shadow-panel), var(--inset-line);
}

.contact-card-unified {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.contact-info-row {
  min-height: 0;
  padding: 24px 28px;
}

.contact-info-row:nth-child(odd) {
  border-right: 0;
}

.contact-info-row:nth-child(n + 2) {
  border-top: 1px solid rgba(196, 219, 224, 0.1);
}

.contact-card-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  line-height: 1.3;
}

.contact-email {
  display: inline-block;
  color: var(--text);
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.contact-email:hover {
  color: var(--accent);
}

.contact-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-map {
  margin-top: 18px;
  padding: 24px 28px 28px;
  border: 1px solid rgba(196, 219, 224, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(17, 22, 24, 0.94), rgba(10, 12, 13, 0.96));
  box-shadow: var(--shadow-panel), var(--inset-line);
}

.contact-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.contact-map-head .contact-card-label {
  margin: 0;
}

.contact-map-link {
  color: var(--soft);
  font-size: 12px;
}

.contact-map-link:hover {
  color: var(--accent);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  min-height: 360px;
  border: 0;
  border-radius: 5px;
  background: #d8d8d8;
}

@media (max-width: 760px) {
  .home-site .home-modules {
    grid-template-columns: 1fr;
  }

  .review-share-notice {
    padding: 14px;
  }

  .review-share-panel {
    max-height: calc(100svh - 28px);
    overflow-y: auto;
  }

  .review-share-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .review-share-amazon-link,
  .review-share-button-group,
  .review-share-actions button {
    width: 100%;
  }

  .review-share-button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .topbar {
    gap: 8px;
  }

  .brand-logo {
    height: 22px;
    max-width: 110px;
  }

  .nav {
    margin-left: auto;
    gap: 2px;
  }

  .nav a {
    display: block;
    padding: 6px 7px;
    font-size: 11px;
  }

  .language-toggle {
    min-width: 44px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  .brand-home-hero {
    height: 56svh;
    min-height: 380px;
    max-height: 520px;
  }

  .brand-home-hero img {
    object-position: 62% center;
  }

  .brand-home-hero::after {
    background: linear-gradient(90deg, rgba(5, 8, 13, 0.48), transparent 54%);
  }

  .brand-home-hero-action {
    top: auto;
    bottom: 34px;
    left: 20px;
    transform: none;
  }

  .brand-home-reviews {
    padding-top: 40px;
  }

  .home-aftercare-banner {
    width: min(100% - 28px, var(--max));
    min-height: 280px;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(150deg, #0b0d0e 0%, #101415 100%);
  }

  .home-aftercare-action {
    width: 100%;
    margin-right: 0;
  }

  .contact-page {
    width: min(100% - 28px, var(--max));
    padding: 56px 0 72px;
  }

  .contact-heading {
    margin-bottom: 30px;
  }

  .contact-heading h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

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

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

  .contact-info-row {
    padding: 24px;
  }

  .contact-info-row:nth-child(odd) {
    border-right: 0;
  }

  .contact-info-row:nth-child(n + 2) {
    border-top: 1px solid rgba(196, 219, 224, 0.1);
  }

  .contact-card {
    min-height: 150px;
    padding: 24px;
  }

  .contact-card-unified {
    min-height: 0;
    padding: 0;
  }

  .contact-map {
    padding: 22px;
  }

  .contact-map iframe {
    height: 300px;
    min-height: 300px;
  }
}
