:root {
  --case-font: "Inter", "Segoe UI", Arial, sans-serif;
  --case-bg: #fbfbf8;
  --case-bg-soft: #f4f5ef;
  --case-surface: #ffffff;
  --case-surface-2: #f8f8f3;
  --case-ink: #151713;
  --case-muted: #666d62;
  --case-faint: #8c9488;
  --case-line: rgba(18, 22, 17, 0.12);
  --case-accent: #3e7e4a;
  --case-accent-2: #b3c45f;
  --case-contrast: #ffffff;
  --case-radius: 8px;
  --case-shadow: 0 28px 90px rgba(24, 29, 22, 0.1);
  --case-width: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 4%, var(--case-glow, transparent), transparent 34vw),
    linear-gradient(180deg, var(--case-bg) 0%, var(--case-bg-soft) 100%);
  color: var(--case-ink);
  font-family: var(--case-font);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.case-theme-gift {
  --case-bg: #030706;
  --case-bg-soft: #07100d;
  --case-surface: #0a120f;
  --case-surface-2: #101b15;
  --case-ink: #f6fff2;
  --case-muted: #aab7a3;
  --case-faint: #71806e;
  --case-line: rgba(140, 230, 45, 0.22);
  --case-accent: #8fe828;
  --case-accent-2: #35ba59;
  --case-contrast: #071008;
  --case-glow: rgba(143, 232, 40, 0.18);
  --case-shadow: 0 32px 110px rgba(0, 0, 0, 0.45);
}

.case-theme-tailcare {
  --case-bg: #fcfcf8;
  --case-bg-soft: #f4f6ef;
  --case-surface: #ffffff;
  --case-surface-2: #f6f8f1;
  --case-ink: #11160f;
  --case-muted: #626c5d;
  --case-faint: #8a9284;
  --case-line: rgba(54, 92, 55, 0.14);
  --case-accent: #2f7e48;
  --case-accent-2: #97b06c;
  --case-contrast: #ffffff;
  --case-glow: rgba(101, 154, 93, 0.12);
}

.case-theme-maverick {
  --case-bg: #fff4e7;
  --case-bg-soft: #f8e5d1;
  --case-surface: #fff9ef;
  --case-surface-2: #f8ead8;
  --case-ink: #281611;
  --case-muted: #755d51;
  --case-faint: #9f8374;
  --case-line: rgba(139, 28, 18, 0.17);
  --case-accent: #9b150e;
  --case-accent-2: #d86b3b;
  --case-contrast: #ffffff;
  --case-glow: rgba(150, 31, 19, 0.12);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

.case-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: var(--case-width);
  margin: 0 auto;
  padding: 16px 0;
  border-bottom: 1px solid var(--case-line);
  background: color-mix(in srgb, var(--case-bg) 82%, transparent);
  backdrop-filter: blur(18px);
}

.case-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.case-logo-dot {
  width: 6px;
  height: 6px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--case-accent);
}

.case-topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--case-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.case-topnav a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

.case-topnav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--case-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

.case-topnav a:hover {
  color: var(--case-ink);
}

.case-topnav a:hover::after {
  transform: scaleX(1);
}

.case-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--case-line);
  border-radius: var(--case-radius);
  background: color-mix(in srgb, var(--case-surface) 86%, transparent);
  color: var(--case-ink);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.case-button:hover {
  border-color: color-mix(in srgb, var(--case-accent) 46%, var(--case-line));
  transform: translateY(-1px);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--case-accent) 18%, transparent);
}

.case-button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--case-accent) 0%, var(--case-accent-2) 100%);
  color: var(--case-contrast);
}

.case-button--primary:hover {
  border-color: transparent;
}

.case-theme-gift .case-button--primary {
  color: #071008;
}

.case-main {
  isolation: isolate;
}

.case-hero,
.case-section,
.case-footer {
  width: var(--case-width);
  margin-right: auto;
  margin-left: auto;
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(34px, 5.4vw, 78px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(44px, 6vw, 86px) 0 44px;
}

.case-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--case-accent);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.case-kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.case-title {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 8.2vw, 7.6rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
}

.case-title mark {
  color: var(--case-accent);
  background: none;
}

.case-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--case-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tags span,
.micro-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--case-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--case-surface) 74%, transparent);
  color: var(--case-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.case-visual {
  position: relative;
  min-height: 620px;
}

.case-visual::before {
  position: absolute;
  inset: 6% 0 auto 16%;
  z-index: -1;
  width: 64%;
  height: 58%;
  border-radius: 999px;
  background: var(--case-glow, rgba(0, 0, 0, 0.08));
  filter: blur(58px);
  content: "";
}

.phone-frame,
.browser-frame,
.mini-dashboard,
.shot {
  overflow: hidden;
  border: 1px solid var(--case-line);
  background: var(--case-surface);
  box-shadow: var(--case-shadow);
}

.phone-frame {
  position: relative;
  width: min(248px, 38vw);
  padding: 10px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent),
    color-mix(in srgb, var(--case-surface) 76%, #000 24%);
}

.phone-frame::before {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: color-mix(in srgb, var(--case-ink) 82%, #000);
  transform: translateX(-50%);
  content: "";
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  aspect-ratio: 430 / 930;
  object-fit: cover;
  object-position: top center;
}

.browser-frame {
  position: relative;
  border-radius: 13px;
}

.browser-frame::before,
.shot--browser::before {
  display: block;
  height: 30px;
  border-bottom: 1px solid var(--case-line);
  background:
    radial-gradient(circle at 17px 50%, #ff6961 0 4px, transparent 5px),
    radial-gradient(circle at 33px 50%, #f7c948 0 4px, transparent 5px),
    radial-gradient(circle at 49px 50%, #49c96d 0 4px, transparent 5px),
    color-mix(in srgb, var(--case-surface) 84%, var(--case-bg-soft));
  content: "";
}

.browser-frame img,
.shot img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.browser-frame > img {
  aspect-ratio: 16 / 10.7;
  height: auto;
}

.hero-browser {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(530px, 78%);
}

.hero-phone {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 3;
}

.hero-phone--secondary {
  left: 22%;
  bottom: 24px;
  z-index: 2;
  width: min(214px, 32vw);
  opacity: 0.92;
  transform: rotate(3deg);
}

.hero-phone--tertiary {
  right: 2%;
  bottom: 0;
  left: auto;
  width: min(220px, 32vw);
  transform: rotate(-2deg);
}

.hero-panel {
  position: absolute;
  right: 2%;
  top: 56px;
  width: min(360px, 52%);
  padding: 18px;
  border: 1px solid var(--case-line);
  border-radius: 13px;
  background: color-mix(in srgb, var(--case-surface) 86%, transparent);
  box-shadow: var(--case-shadow);
  backdrop-filter: blur(14px);
}

.hero-panel h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.hero-panel p {
  margin: 0;
  color: var(--case-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--case-accent);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.hero-panel-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.hero-panel-list span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 10px;
  border: 1px solid var(--case-line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--case-surface-2) 78%, transparent);
  color: var(--case-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel-list b {
  color: var(--case-ink);
  font-variant-numeric: tabular-nums;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: var(--case-width);
  margin: 0 auto 36px;
}

.metric-card {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--case-line);
  border-radius: var(--case-radius);
  background: color-mix(in srgb, var(--case-surface) 82%, transparent);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--case-accent);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric-card span {
  display: block;
  color: var(--case-muted);
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.35;
}

.case-nav {
  position: sticky;
  top: 77px;
  z-index: 40;
  display: flex;
  gap: 8px;
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 0 auto 32px;
  padding: 6px;
  overflow-x: auto;
  border: 1px solid var(--case-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--case-bg) 78%, transparent);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.case-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--case-muted);
  font-size: 0.82rem;
  font-weight: 850;
  transition: background 160ms ease, color 160ms ease;
}

.case-nav a:hover {
  background: color-mix(in srgb, var(--case-accent) 13%, transparent);
  color: var(--case-ink);
}

.case-section {
  padding: clamp(36px, 6vw, 70px) 0;
  border-top: 1px solid var(--case-line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--case-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head h2,
.wide-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-copy {
  max-width: 720px;
  margin: 0;
  color: var(--case-muted);
  font-size: 1rem;
  line-height: 1.76;
  text-wrap: pretty;
}

.two-column,
.three-column,
.four-column,
.screen-grid,
.tech-grid,
.result-grid {
  display: grid;
  gap: 12px;
}

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

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

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

.info-card,
.feature-card,
.tech-card,
.result-card,
.flow-card {
  border: 1px solid var(--case-line);
  border-radius: var(--case-radius);
  background: color-mix(in srgb, var(--case-surface) 84%, transparent);
}

.info-card,
.feature-card,
.result-card {
  padding: clamp(20px, 2.4vw, 28px);
}

.info-card h3,
.feature-card h3,
.result-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.info-card p,
.feature-card p,
.result-card p {
  margin: 0;
  color: var(--case-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.feature-card ul,
.result-card ul,
.case-list {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.feature-card li,
.result-card li,
.case-list li {
  position: relative;
  padding-left: 20px;
  color: var(--case-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.feature-card li::before,
.result-card li::before,
.case-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--case-accent);
  content: "";
}

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

.flow-card {
  position: relative;
  min-height: 166px;
  padding: 18px;
}

.flow-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 2;
  width: 16px;
  height: 1px;
  background: var(--case-accent);
  content: "";
}

.flow-card b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--case-accent);
  color: var(--case-contrast);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.case-theme-gift .flow-card b {
  color: #071008;
}

.flow-card h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.flow-card p {
  margin: 0;
  color: var(--case-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

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

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

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

.shot {
  border-radius: var(--case-radius);
}

.shot img {
  aspect-ratio: 430 / 930;
  height: auto;
}

.shot--browser img {
  aspect-ratio: 16 / 10.7;
  height: auto;
}

.shot--wide img {
  aspect-ratio: 16 / 8.7;
  height: auto;
}

.shot-caption {
  padding: 14px 15px 16px;
  border-top: 1px solid var(--case-line);
  background: color-mix(in srgb, var(--case-surface) 88%, transparent);
}

.shot-caption h3 {
  margin: 0 0 5px;
  font-size: 0.95rem;
}

.shot-caption p {
  margin: 0;
  color: var(--case-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.media-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.media-copy .shot {
  min-height: 100%;
}

.media-copy__text {
  align-self: center;
}

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

.tech-card {
  min-height: 108px;
  padding: 16px 12px;
}

.tech-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.9rem;
}

.tech-card span {
  display: block;
  color: var(--case-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.result-grid {
  grid-template-columns: 1.2fr repeat(4, minmax(0, 0.68fr));
  align-items: stretch;
}

.result-card strong {
  display: block;
  color: var(--case-accent);
  font-size: clamp(1.8rem, 3.8vw, 3.1rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.case-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 12px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--case-line);
  border-radius: var(--case-radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--case-accent) 16%, transparent), transparent 62%),
    color-mix(in srgb, var(--case-surface) 86%, transparent);
}

.case-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.02;
}

.case-cta p {
  margin: 0;
  color: var(--case-muted);
  line-height: 1.55;
}

.case-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--case-line);
  color: var(--case-faint);
  font-size: 0.82rem;
}

.case-theme-gift .browser-frame,
.case-theme-gift .phone-frame,
.case-theme-gift .mini-dashboard,
.case-theme-gift .shot,
.case-theme-gift .metric-card,
.case-theme-gift .info-card,
.case-theme-gift .feature-card,
.case-theme-gift .tech-card,
.case-theme-gift .result-card,
.case-theme-gift .flow-card {
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(143, 232, 40, 0.08);
}

.case-theme-tailcare .case-title {
  font-size: clamp(3.2rem, 7.6vw, 7rem);
}

.case-theme-tailcare .phone-frame {
  background: #f7faf5;
}

.case-theme-maverick .case-title {
  color: #8a130d;
}

.case-theme-maverick .phone-frame {
  background: #2b130d;
}

.case-js .metric-card,
.case-js .case-nav,
.case-js .section-head,
.case-js .info-card,
.case-js .feature-card,
.case-js .flow-card,
.case-js .shot,
.case-js .tech-card,
.case-js .result-card,
.case-js .case-cta {
  opacity: 0;
  transform: translateY(22px);
}

.case-js .is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

  .case-js .metric-card,
  .case-js .case-nav,
  .case-js .section-head,
  .case-js .info-card,
  .case-js .feature-card,
  .case-js .flow-card,
  .case-js .shot,
  .case-js .tech-card,
  .case-js .result-card,
  .case-js .case-cta {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .case-header {
    grid-template-columns: auto auto;
  }

  .case-topnav {
    display: none;
  }

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

  .case-visual {
    min-height: 610px;
  }

  .case-metrics,
  .four-column,
  .screen-grid,
  .tech-grid,
  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .media-copy {
    grid-template-columns: 1fr;
  }

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

  .flow-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --case-width: min(100% - 28px, 1180px);
  }

  html {
    scroll-padding-top: 86px;
  }

  .case-header {
    gap: 14px;
    padding: 12px 0;
  }

  .case-logo {
    font-size: 0.98rem;
  }

  .case-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .case-hero {
    padding-top: 34px;
  }

  .case-title {
    font-size: clamp(2.9rem, 18vw, 4.8rem);
  }

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

  .case-visual {
    min-height: 520px;
  }

  .hero-browser {
    right: 0;
    bottom: 26px;
    width: 78%;
  }

  .hero-phone {
    width: min(230px, 62vw);
  }

  .hero-phone--secondary {
    left: auto;
    right: 2%;
    bottom: 112px;
    width: min(190px, 48vw);
  }

  .hero-phone--tertiary {
    width: min(190px, 48vw);
  }

  .hero-panel {
    top: 6px;
    right: 0;
    width: min(320px, 74%);
    padding: 14px;
  }

  .case-metrics,
  .two-column,
  .three-column,
  .four-column,
  .screen-grid,
  .screen-grid--three,
  .screen-grid--two,
  .tech-grid,
  .result-grid,
  .flow-row,
  .case-cta {
    grid-template-columns: 1fr;
  }

  .case-nav {
    top: 64px;
    justify-content: flex-start;
    width: calc(100% - 28px);
    border-radius: 14px;
  }

  .section-head h2,
  .wide-title {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .case-footer {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .case-visual {
    min-height: 470px;
  }

  .hero-panel {
    width: 82%;
  }

  .phone-frame {
    padding: 8px;
    border-radius: 28px;
  }

  .phone-frame img {
    border-radius: 21px;
  }
}

.gift-showcase {
  --gift-bg: #030806;
  --gift-panel: rgba(8, 14, 13, 0.92);
  --gift-panel-2: rgba(10, 18, 17, 0.94);
  --gift-line: rgba(130, 220, 42, 0.18);
  --gift-line-soft: rgba(255, 255, 255, 0.065);
  --gift-green: #8cf12c;
  --gift-green-2: #37d960;
  --gift-text: #f2fff0;
  --gift-muted: #9ca99a;
  --gift-dim: #63705e;
  background:
    radial-gradient(circle at 72% 9%, rgba(79, 148, 22, 0.22), transparent 28vw),
    radial-gradient(circle at 15% 2%, rgba(17, 66, 40, 0.22), transparent 20vw),
    linear-gradient(180deg, #020504 0%, #04100d 46%, #030807 100%);
  color: var(--gift-text);
}

.gift-showcase .case-js .is-visible {
  transition-duration: 420ms;
}

.gift-topbar,
.gift-page,
.gift-footer {
  width: min(1088px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.gift-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  min-height: 54px;
  padding: 14px 0 8px;
  color: rgba(243, 255, 240, 0.86);
  font-size: 0.72rem;
}

.gift-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gift-brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(140, 241, 44, 0.55);
  border-radius: 5px;
  background:
    radial-gradient(circle at 68% 32%, var(--gift-green) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(140, 241, 44, 0.2), rgba(140, 241, 44, 0.02));
  box-shadow: 0 0 18px rgba(140, 241, 44, 0.22);
}

.gift-breadcrumb {
  color: rgba(243, 255, 240, 0.56);
  line-height: 1.25;
}

.gift-service-pill,
.gift-top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  border-radius: 8px;
  font-weight: 850;
}

.gift-service-pill {
  padding: 0 16px;
  border: 1px solid rgba(140, 241, 44, 0.16);
  background: rgba(8, 14, 13, 0.82);
  color: rgba(243, 255, 240, 0.86);
}

.gift-service-pill span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(140, 241, 44, 0.12);
  color: var(--gift-green);
}

.gift-top-cta {
  padding: 0 20px;
  background: linear-gradient(135deg, var(--gift-green), var(--gift-green-2));
  color: #071008;
  box-shadow: 0 12px 38px rgba(140, 241, 44, 0.18);
}

.gift-page {
  display: grid;
  gap: 14px;
  padding: 18px 0 0;
}

.gift-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.9fr);
  gap: 36px;
  align-items: center;
  min-height: 472px;
  overflow: hidden;
  border-bottom: 1px solid var(--gift-line);
}

.gift-hero::before {
  position: absolute;
  inset: -30% -10% -20% 42%;
  background: radial-gradient(circle, rgba(140, 241, 44, 0.16), transparent 54%);
  pointer-events: none;
  content: "";
}

.gift-hero-decor {
  position: absolute;
  inset: -40px -96px auto auto;
  width: min(660px, 56vw);
  opacity: 0.5;
  mix-blend-mode: screen;
  filter: saturate(1.12) contrast(1.05);
  pointer-events: none;
}

.gift-hero-copy {
  position: relative;
  z-index: 2;
  padding: 28px 0 34px;
}

.gift-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 14px;
  padding: 0 13px;
  border: 1px solid rgba(140, 241, 44, 0.26);
  border-radius: 7px;
  background: rgba(140, 241, 44, 0.06);
  color: var(--gift-green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gift-hero h1 {
  max-width: 560px;
  margin: 0 0 14px;
  font-size: clamp(3.1rem, 7vw, 5.9rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

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

.gift-subtitle {
  margin: 0 0 18px;
  color: rgba(243, 255, 240, 0.92);
  font-size: 1.05rem;
  font-weight: 750;
}

.gift-lead {
  max-width: 500px;
  margin: 0 0 22px;
  color: var(--gift-muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.gift-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 540px;
  margin-bottom: 14px;
}

.gift-stat-grid div,
.gift-card,
.gift-game,
.gift-tech-stats,
.gift-final-cta {
  border: 1px solid var(--gift-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--gift-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.gift-stat-grid div {
  min-height: 74px;
  padding: 14px 12px;
  border-radius: 7px;
}

.gift-stat-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gift-green);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.gift-stat-grid span {
  display: block;
  color: rgba(243, 255, 240, 0.72);
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.25;
}

.gift-stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.gift-stack-tags span {
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(243, 255, 240, 0.62);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 24px;
}

.gift-hero-phones {
  position: relative;
  z-index: 1;
  min-height: 472px;
}

.gift-hero-phone-render {
  position: absolute;
  right: -92px;
  bottom: -44px;
  width: min(720px, 58vw);
  height: auto;
  filter: drop-shadow(0 30px 90px rgba(0, 0, 0, 0.42));
}

.gift-phone {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(140, 241, 44, 0.28);
  border-radius: 34px;
  background: #050806;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62), 0 0 44px rgba(140, 241, 44, 0.1);
}

.gift-phone::before {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 16px;
  border-radius: 0 0 14px 14px;
  background: #050806;
  transform: translateX(-50%);
  content: "";
}

.gift-phone img {
  width: 100%;
  height: auto;
  aspect-ratio: 430 / 930;
  object-fit: cover;
  object-position: top center;
}

.gift-phone-main {
  right: 148px;
  bottom: -18px;
  z-index: 3;
  width: 268px;
  transform: rotate(-4deg);
}

.gift-phone-back {
  right: 6px;
  bottom: -5px;
  z-index: 2;
  width: 218px;
  opacity: 0.82;
  transform: rotate(7deg);
}

.gift-card,
.gift-final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gift-card::after,
.gift-final-cta::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 72% 0%, rgba(140, 241, 44, 0.08), transparent 34%);
  content: "";
}

.gift-problem {
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 150px;
  padding: 28px;
}

.gift-problem-copy {
  position: relative;
  z-index: 1;
}

.gift-card-icon {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-bottom: 8px;
  border: 1px solid rgba(140, 241, 44, 0.4);
  border-radius: 999px;
  color: var(--gift-green);
  font-weight: 900;
}

.gift-problem h2,
.gift-section-head h2,
.gift-games h2,
.gift-retention h2,
.gift-admin h2,
.gift-tech h2,
.gift-result h2,
.gift-final-cta h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.1;
}

.gift-problem ul,
.gift-result ul {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.gift-problem li,
.gift-result li {
  position: relative;
  padding-left: 18px;
  color: var(--gift-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.gift-problem li::before,
.gift-result li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gift-green);
  box-shadow: 0 0 10px rgba(140, 241, 44, 0.5);
  content: "";
}

.gift-telegram-emblem {
  position: relative;
  z-index: 1;
  width: 170px;
  border-radius: 999px;
  opacity: 0.86;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 34px rgba(140, 241, 44, 0.24));
}

.gift-ecosystem {
  padding: 24px;
}

.gift-section-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}

.gift-section-head p,
.gift-retention p,
.gift-tech p,
.gift-result p,
.gift-final-cta p {
  margin: 7px 0 0;
  color: var(--gift-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.gift-mini-benefits {
  display: flex;
  gap: 8px;
}

.gift-mini-benefits span {
  max-width: 160px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--gift-line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(243, 255, 240, 0.78);
  font-size: 0.72rem;
  font-weight: 850;
}

.gift-module-row,
.gift-retention-row {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.gift-module-row {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.gift-module-row span,
.gift-retention-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 43px;
  padding: 0 11px;
  border: 1px solid rgba(140, 241, 44, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(243, 255, 240, 0.74);
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.gift-module-row span::before,
.gift-retention-row span::before {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(140, 241, 44, 0.38);
  border-radius: 5px;
  background: radial-gradient(circle, rgba(140, 241, 44, 0.36), rgba(140, 241, 44, 0.06));
  content: "";
}

.gift-games {
  padding: 24px 22px 0;
}

.gift-section-head-inline {
  justify-content: flex-start;
  align-items: end;
}

.gift-section-head-inline p {
  margin: 0 0 3px 20px;
}

.gift-game-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.gift-game {
  overflow: hidden;
  border-radius: 7px 7px 0 0;
  text-align: center;
}

.gift-game img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: top center;
  border-bottom: 1px solid var(--gift-line);
  background:
    radial-gradient(circle at 50% 15%, rgba(140, 241, 44, 0.14), transparent 44%),
    #050806;
}

.gift-game h3 {
  margin: 10px 8px 4px;
  color: var(--gift-green);
  font-size: 0.78rem;
  font-weight: 900;
}

.gift-game p {
  min-height: 44px;
  margin: 0;
  padding: 0 9px 12px;
  color: var(--gift-muted);
  font-size: 0.68rem;
  line-height: 1.34;
}

.gift-retention {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 120px;
  padding: 22px;
}

.gift-retention-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gift-retention-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  width: 360px;
  height: 112px;
  overflow: hidden;
  opacity: 0.26;
  mask-image: linear-gradient(90deg, transparent, #000 28%);
}

.gift-retention-strip img {
  width: 130px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.gift-admin {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: center;
  min-height: 250px;
  padding: 24px;
}

.gift-admin-copy,
.gift-admin-shots,
.gift-tech > *,
.gift-result > *,
.gift-final-cta > * {
  position: relative;
  z-index: 1;
}

.gift-admin-copy > p {
  margin: 8px 0 18px;
  color: var(--gift-muted);
  font-size: 0.82rem;
}

.gift-admin-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.gift-admin-tools article {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--gift-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.gift-admin-tools strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.gift-admin-tools span {
  color: var(--gift-muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.gift-admin-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gift-admin-pills span {
  min-height: 29px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(243, 255, 240, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 27px;
}

.gift-admin-shots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gift-admin-shots img {
  width: 100%;
  height: 230px;
  border: 1px solid rgba(140, 241, 44, 0.22);
  border-radius: 10px;
  object-fit: contain;
  object-position: top center;
  background:
    radial-gradient(circle at 50% 12%, rgba(140, 241, 44, 0.12), transparent 42%),
    #050806;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.gift-tech {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 18px;
  padding: 24px;
}

.gift-tech-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.gift-tech-grid span {
  min-height: 74px;
  padding: 13px 10px;
  border: 1px solid var(--gift-line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--gift-muted);
  font-size: 0.66rem;
  line-height: 1.28;
}

.gift-tech-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gift-text);
  font-size: 0.78rem;
}

.gift-tech-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 16px;
  align-content: center;
  padding: 18px;
  border-radius: 8px;
}

.gift-tech-stats strong {
  display: block;
  color: var(--gift-green);
  font-size: 1.45rem;
  line-height: 1;
}

.gift-tech-stats span {
  color: var(--gift-muted);
  font-size: 0.72rem;
}

.gift-tech-stats b {
  margin-top: 12px;
  color: rgba(243, 255, 240, 0.82);
  font-size: 0.82rem;
  line-height: 1.25;
}

.gift-result {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  padding: 24px;
}

.gift-result-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.gift-result-metrics span {
  min-height: 95px;
  padding: 16px 14px;
  border: 1px solid var(--gift-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--gift-muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.gift-result-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gift-green);
  font-size: 1.55rem;
  line-height: 1;
}

.gift-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 20px;
  align-items: center;
  min-height: 150px;
  padding: 26px 28px;
}

.gift-final-decor {
  position: absolute;
  inset: auto auto -86px -90px;
  width: 430px;
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
}

.gift-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.gift-final-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.gift-final-actions a:first-child {
  background: linear-gradient(135deg, var(--gift-green), var(--gift-green-2));
  color: #071008;
}

.gift-final-actions a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(243, 255, 240, 0.86);
}

.gift-final-phones {
  display: flex;
  justify-content: center;
  min-height: 126px;
}

.gift-final-phones img {
  width: 112px;
  height: 146px;
  margin-left: -18px;
  border: 1px solid rgba(140, 241, 44, 0.22);
  border-radius: 14px;
  object-fit: contain;
  object-position: top center;
  background:
    radial-gradient(circle at 50% 15%, rgba(140, 241, 44, 0.14), transparent 44%),
    #050806;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.gift-final-phones img:nth-child(1) {
  transform: rotate(-7deg) translateY(12px);
}

.gift-final-phones img:nth-child(2) {
  z-index: 2;
  transform: translateY(-5px);
}

.gift-final-phones img:nth-child(3) {
  transform: rotate(7deg) translateY(12px);
}

.gift-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0 26px;
  color: rgba(243, 255, 240, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
}

@keyframes gift-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gift-float-in {
  from {
    opacity: 0;
    transform: translateX(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gift-hero-copy,
  .gift-hero-phones {
    animation: none;
  }
}

@media (max-width: 1040px) {
  .gift-topbar {
    grid-template-columns: auto 1fr auto;
  }

  .gift-breadcrumb {
    display: none;
  }

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

  .gift-hero-phones {
    min-height: 460px;
  }

  .gift-hero-phone-render {
    right: 50%;
    bottom: -54px;
    width: min(690px, 100vw);
    transform: translateX(50%);
  }

  .gift-problem,
  .gift-admin,
  .gift-tech,
  .gift-result,
  .gift-final-cta {
    grid-template-columns: 1fr;
  }

  .gift-telegram-emblem {
    justify-self: center;
    width: 130px;
  }

  .gift-module-row,
  .gift-game-grid,
  .gift-retention-row,
  .gift-tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gift-retention {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .gift-topbar,
  .gift-page,
  .gift-footer {
    width: min(100% - 28px, 1088px);
  }

  .gift-topbar {
    grid-template-columns: 1fr auto;
    padding-top: 12px;
  }

  .gift-service-pill {
    display: none;
  }

  .gift-top-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .gift-hero {
    gap: 10px;
  }

  .gift-hero-copy {
    padding-top: 22px;
  }

  .gift-hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .gift-stat-grid,
  .gift-module-row,
  .gift-game-grid,
  .gift-retention-row,
  .gift-admin-tools,
  .gift-admin-shots,
  .gift-tech-grid,
  .gift-result-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift-hero-phones {
    min-height: 390px;
  }

  .gift-hero-phone-render {
    bottom: -24px;
    width: min(620px, 136vw);
  }

  .gift-problem,
  .gift-ecosystem,
  .gift-games,
  .gift-retention,
  .gift-admin,
  .gift-tech,
  .gift-result,
  .gift-final-cta {
    padding: 18px;
  }

  .gift-section-head,
  .gift-mini-benefits {
    flex-direction: column;
  }

  .gift-section-head-inline {
    align-items: start;
  }

  .gift-section-head-inline p {
    margin: 7px 0 0;
  }

  .gift-game img {
    height: 190px;
  }

  .gift-admin-shots img {
    height: 210px;
  }

  .gift-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .gift-stat-grid,
  .gift-module-row,
  .gift-game-grid,
  .gift-retention-row,
  .gift-admin-tools,
  .gift-admin-shots,
  .gift-tech-grid,
  .gift-result-metrics {
    grid-template-columns: 1fr;
  }

  .gift-hero-phones {
    min-height: 334px;
  }

  .gift-hero-phone-render {
    bottom: -12px;
    width: 132vw;
  }

  .gift-hero-decor {
    width: 520px;
    opacity: 0.34;
  }
}

/* Gift Roulette: reference-grade dark neon polish */
.gift-showcase {
  --gift-panel: rgba(6, 12, 11, 0.91);
  --gift-panel-2: rgba(8, 16, 14, 0.9);
  --gift-line: rgba(214, 255, 196, 0.075);
  --gift-line-soft: rgba(255, 255, 255, 0.052);
  --gift-green-line: rgba(140, 241, 44, 0.11);
  background:
    radial-gradient(ellipse at 75% 5%, rgba(84, 152, 24, 0.18), transparent 34vw),
    radial-gradient(ellipse at 12% 0%, rgba(14, 68, 43, 0.18), transparent 24vw),
    linear-gradient(180deg, #020504 0%, #030807 45%, #020605 100%);
}

.gift-topbar {
  min-height: 58px;
  padding: 11px 0 9px;
  border-bottom: 1px solid rgba(214, 255, 196, 0.065);
}

.gift-brand-mark {
  border-color: rgba(140, 241, 44, 0.42);
  box-shadow: 0 0 16px rgba(140, 241, 44, 0.16);
}

.gift-service-pill {
  border-color: rgba(214, 255, 196, 0.075);
  background: rgba(5, 10, 10, 0.72);
}

.gift-top-cta {
  box-shadow: 0 13px 34px rgba(140, 241, 44, 0.16);
}

.gift-hero {
  min-height: 488px;
  border-bottom-color: rgba(214, 255, 196, 0.07);
  background:
    radial-gradient(ellipse at 73% 42%, rgba(140, 241, 44, 0.105), transparent 46%),
    linear-gradient(90deg, rgba(3, 8, 8, 0) 0%, rgba(7, 18, 12, 0.22) 100%);
}

.gift-hero::before {
  inset: -42% -20% -24% 44%;
  background: radial-gradient(circle, rgba(140, 241, 44, 0.095), transparent 56%);
}

.gift-hero-decor {
  top: -88px;
  right: -160px;
  width: min(900px, 70vw);
  opacity: 0.28;
  filter: saturate(1.02) contrast(1.04);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 82%, transparent 100%);
}

.gift-hero-phones {
  min-height: 488px;
}

.gift-hero-phone-render {
  right: -150px;
  bottom: -56px;
  width: min(800px, 64vw);
  filter: drop-shadow(0 32px 88px rgba(0, 0, 0, 0.54));
}

.gift-stat-grid div,
.gift-card,
.gift-game,
.gift-tech-stats,
.gift-final-cta {
  border-color: var(--gift-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), transparent 42%),
    var(--gift-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.026),
    0 16px 48px rgba(0, 0, 0, 0.13);
}

.gift-card::after,
.gift-final-cta::after {
  background: radial-gradient(circle at 74% 0%, rgba(140, 241, 44, 0.045), transparent 35%);
}

.gift-label {
  border-color: rgba(140, 241, 44, 0.18);
  background: rgba(140, 241, 44, 0.035);
}

.gift-stat-grid div,
.gift-stack-tags span,
.gift-admin-pills span,
.gift-result-metrics span {
  border-color: rgba(214, 255, 196, 0.07);
}

.gift-problem {
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr);
}

.gift-telegram-emblem {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(140, 241, 44, 0.16), rgba(140, 241, 44, 0.04) 52%, transparent 72%);
  color: var(--gift-green);
  filter: drop-shadow(0 0 26px rgba(140, 241, 44, 0.2));
  mix-blend-mode: normal;
  opacity: 1;
}

.gift-telegram-emblem::before {
  position: absolute;
  inset: 18px -78px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(140, 241, 44, 0.2), transparent);
  filter: blur(10px);
  content: "";
}

.gift-telegram-emblem svg {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gift-module-row span,
.gift-retention-row span {
  min-width: 0;
  min-height: 43px;
  padding: 0 10px;
  border-color: rgba(214, 255, 196, 0.075);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.023), rgba(255, 255, 255, 0.01));
  color: rgba(243, 255, 240, 0.78);
  line-height: 1.12;
  white-space: normal;
}

.gift-module-row span::before,
.gift-retention-row span::before {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
  background: var(--gift-green);
  box-shadow: 0 0 14px rgba(140, 241, 44, 0.2);
  -webkit-mask: var(--gift-icon) center / 17px 17px no-repeat;
  mask: var(--gift-icon) center / 17px 17px no-repeat;
}

.gift-chip-game { --gift-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 8h10a5 5 0 0 1 4.8 3.6l.8 3.1A3.2 3.2 0 0 1 19.5 19c-1.2 0-2-.7-2.8-1.5L15.2 16H8.8l-1.5 1.5C6.5 18.3 5.7 19 4.5 19a3.2 3.2 0 0 1-3.1-4.3l.8-3.1A5 5 0 0 1 7 8Zm1 3H6v2H4v2h2v2h2v-2h2v-2H8v-2Zm8.5 1.8a1.3 1.3 0 1 0 0-2.6 1.3 1.3 0 0 0 0 2.6Zm2.2 3.3a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4Z'/%3E%3C/svg%3E"); }
.gift-chip-case { --gift-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 9h16v11H4V9Zm1-4h5.3L12 8H4.5L5 5Zm8.7 0H19l.5 3H12l1.7-3ZM11 9h2v11h-2V9ZM3 8h18v3H3V8Z'/%3E%3C/svg%3E"); }
.gift-chip-pay { --gift-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6h18a2 2 0 0 1 2 2v2H1V8a2 2 0 0 1 2-2Zm-2 6h22v4a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-4Zm4 3v1h6v-1H5Z'/%3E%3C/svg%3E"); }
.gift-chip-task { --gift-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10a2 2 0 0 1 2 2v16H5V5a2 2 0 0 1 2-2Zm2 4h6V5H9v2Zm-.5 5 2.1 2.1 4.9-5 1.5 1.5-6.4 6.4L7 13.5 8.5 12Z'/%3E%3C/svg%3E"); }
.gift-chip-ref { --gift-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm8 1a4 4 0 1 1 0-8 4 4 0 0 1 0 8ZM1 21a7 7 0 0 1 14 0H1Zm12.5 0a8.7 8.7 0 0 0-2.2-5.8A6.5 6.5 0 0 1 23 19v2h-9.5Z'/%3E%3C/svg%3E"); }
.gift-chip-trophy { --gift-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10v3h4v2a6 6 0 0 1-5.2 5.9A6 6 0 0 1 13 16.9V20h4v2H7v-2h4v-3.1a6 6 0 0 1-2.8-3A6 6 0 0 1 3 8V6h4V3Zm10 5v3.7A4 4 0 0 0 19 8h-2ZM5 8a4 4 0 0 0 2 3.7V8H5Z'/%3E%3C/svg%3E"); }
.gift-chip-bonus { --gift-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 2h2v5h-2V2Zm6.4 2.2 1.4 1.4-3.5 3.5-1.4-1.4 3.5-3.5ZM4.2 5.6l1.4-1.4 3.5 3.5-1.4 1.4-3.5-3.5ZM4 11h16v11H4V11Zm2 2v7h12v-7H6Zm5-2h2v11h-2V11Z'/%3E%3C/svg%3E"); }
.gift-chip-admin { --gift-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16v11H4V4Zm2 2v7h12V6H6Zm4 11h4l1 3h3v2H6v-2h3l1-3Z'/%3E%3C/svg%3E"); }
.gift-chip-spin { --gift-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 1-7.1 17.1l1.5-1.5A8 8 0 1 0 4 12h3L3 16 0 12h2A10 10 0 0 1 12 2Zm-1 5h2v5l4 2-1 1.8-5-2.8V7Z'/%3E%3C/svg%3E"); }

.gift-game {
  border-color: rgba(214, 255, 196, 0.065);
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, rgba(18, 35, 26, 0.72), rgba(5, 10, 10, 0.92));
}

.gift-game img {
  height: 278px;
  border-bottom-color: rgba(214, 255, 196, 0.06);
  border-radius: 8px 8px 0 0;
}

.gift-retention {
  min-height: 132px;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
}

.gift-retention-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: block;
  width: min(650px, 70%);
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.86;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
}

.gift-admin-tools article {
  border-color: rgba(214, 255, 196, 0.07);
  background: rgba(255, 255, 255, 0.018);
}

.gift-admin-shots {
  display: block;
}

.gift-admin-shots .gift-admin-render {
  width: 100%;
  max-width: 690px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.34));
}

.gift-tech-grid span,
.gift-tech-stats span,
.gift-admin-pills span,
.gift-result-metrics span {
  border-color: rgba(214, 255, 196, 0.07);
  background: rgba(255, 255, 255, 0.018);
}

.gift-final-cta {
  min-height: 208px;
  border-color: rgba(214, 255, 196, 0.075);
}

.gift-final-decor {
  opacity: 0.32;
  filter: saturate(1.04) contrast(1.04);
}

.gift-final-phones {
  display: grid;
  place-items: center;
  min-height: 150px;
}

.gift-final-phones img,
.gift-final-phones img:nth-child(1),
.gift-final-phones img:nth-child(2),
.gift-final-phones img:nth-child(3) {
  width: min(100%, 610px);
  height: auto;
  margin-left: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.42));
  transform: none;
}

@media (max-width: 1040px) {
  .gift-hero {
    min-height: auto;
  }

  .gift-hero-phone-render {
    right: 50%;
    bottom: -46px;
    width: min(760px, 118vw);
    transform: translateX(50%);
  }

  .gift-problem {
    grid-template-columns: 1fr;
  }

  .gift-telegram-emblem {
    width: 96px;
    height: 96px;
  }

  .gift-admin-shots {
    display: block;
  }
}

@media (max-width: 720px) {
  .gift-topbar {
    border-bottom: 0;
  }

  .gift-hero-phone-render {
    bottom: -30px;
    width: min(700px, 140vw);
  }

  .gift-module-row,
  .gift-game-grid,
  .gift-retention-row,
  .gift-admin-tools,
  .gift-tech-grid,
  .gift-result-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift-admin-shots {
    grid-template-columns: none;
  }

  .gift-retention {
    grid-template-columns: 1fr;
    min-height: 210px;
  }

  .gift-retention-strip {
    width: 100%;
    height: 132px;
    opacity: 0.64;
  }

  .gift-admin-shots .gift-admin-render {
    max-width: 100%;
  }
}

@media (max-width: 460px) {
  .gift-hero-phone-render {
    bottom: -14px;
    width: 146vw;
  }

  .gift-module-row,
  .gift-game-grid,
  .gift-retention-row,
  .gift-admin-tools,
  .gift-tech-grid,
  .gift-result-metrics {
    grid-template-columns: 1fr;
  }

  .gift-game img {
    height: 212px;
  }
}

/* Gift Roulette: screenshot review fixes */
.gift-hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.94fr);
}

.gift-hero h1 {
  max-width: 660px;
  font-size: clamp(3.2rem, 5.55vw, 4.75rem);
  line-height: 0.92;
  white-space: nowrap;
}

.gift-hero h1 span {
  white-space: nowrap;
}

.gift-hero-phone-render {
  right: -44px;
  bottom: -54px;
  width: min(760px, 60vw);
}

.gift-admin-shots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  place-items: center;
}

.gift-admin-shots .gift-admin-render {
  width: min(100%, 620px);
  max-height: 270px;
}

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

  .gift-hero h1,
  .gift-hero h1 span {
    white-space: normal;
  }

  .gift-hero-phone-render {
    right: 50%;
    bottom: -44px;
    width: min(740px, 118vw);
  }
}

@media (max-width: 720px) {
  .gift-hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .gift-hero-phones {
    min-height: 410px;
    margin-top: -50px;
  }

  .gift-hero-phone-render {
    bottom: -26px;
    width: min(670px, 138vw);
  }
}

/* Gift Roulette: responsive hero atmosphere and motion choreography */
.gift-showcase {
  --gift-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gift-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

.gift-hero {
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(ellipse at 73% 48%, rgba(111, 214, 28, 0.1), transparent 45%),
    linear-gradient(90deg, #020605 0%, #020705 48%, #041009 100%);
}

.gift-hero::before {
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 6, 5, 0.88) 0%,
    rgba(2, 6, 5, 0.72) 34%,
    rgba(2, 6, 5, 0.16) 64%,
    rgba(2, 6, 5, 0.04) 100%
  );
}

.gift-hero-decor {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
  mix-blend-mode: screen;
  filter: saturate(0.9) contrast(1.05);
  -webkit-mask-image: none;
  mask-image: none;
}

.gift-hero-copy,
.gift-hero-phones {
  z-index: 2;
}

.gift-hero-phones {
  overflow: visible;
}

.gift-hero-phone-render {
  right: 0;
  bottom: -34px;
  max-width: 100%;
}

.case-js .gift-topbar {
  animation: gift-topbar-enter 620ms var(--gift-ease-out) both;
}

.case-js .gift-hero-decor {
  animation: gift-atmosphere-enter 1100ms var(--gift-ease-out) 80ms both;
}

.case-js .gift-hero-copy > * {
  animation: gift-copy-enter 720ms var(--gift-ease-out) both;
}

.case-js .gift-hero-copy > :nth-child(1) { animation-delay: 90ms; }
.case-js .gift-hero-copy > :nth-child(2) { animation-delay: 150ms; }
.case-js .gift-hero-copy > :nth-child(3) { animation-delay: 230ms; }
.case-js .gift-hero-copy > :nth-child(4) { animation-delay: 290ms; }
.case-js .gift-hero-copy > :nth-child(5) { animation-delay: 370ms; }
.case-js .gift-hero-copy > :nth-child(6) { animation-delay: 440ms; }

.case-js .gift-hero-phones {
  animation: gift-phone-stage-enter 980ms var(--gift-ease-out) 210ms both;
}

.case-js .gift-reveal {
  opacity: 0.08;
  filter: blur(7px);
  clip-path: inset(0 0 10% 0 round 8px);
  transform: translate3d(0, 28px, 0) scale(0.992);
  transition:
    opacity 680ms var(--gift-ease-out),
    filter 760ms var(--gift-ease-out),
    clip-path 820ms var(--gift-ease-out),
    transform 820ms var(--gift-ease-out);
}

.case-js .gift-reveal.is-visible {
  opacity: 1;
  filter: none;
  clip-path: inset(0 0 0 0 round 8px);
  transform: translate3d(0, 0, 0) scale(1);
}

.case-js .gift-reveal .gift-reveal-child {
  --gift-reveal-x: 0px;
  --gift-reveal-y: 17px;
  --gift-reveal-scale: 0.985;
  opacity: 0;
  transform: translate3d(var(--gift-reveal-x), var(--gift-reveal-y), 0) scale(var(--gift-reveal-scale));
  transition:
    opacity 540ms var(--gift-ease-out),
    transform 720ms var(--gift-ease-out);
}

.case-js .gift-reveal.is-visible .gift-reveal-child {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: calc(100ms + var(--gift-reveal-index, 0) * 45ms);
}

.case-js .gift-problem .gift-problem-copy:first-child,
.case-js .gift-admin .gift-admin-copy {
  --gift-reveal-x: -26px;
  --gift-reveal-y: 0px;
}

.case-js .gift-problem .gift-problem-copy:last-child,
.case-js .gift-admin .gift-admin-render,
.case-js .gift-final-phones {
  --gift-reveal-x: 26px;
  --gift-reveal-y: 0px;
}

.case-js .gift-problem .gift-telegram-emblem {
  --gift-reveal-y: 0px;
  --gift-reveal-scale: 0.76;
}

.case-js .gift-games .gift-game:nth-child(2n),
.case-js .gift-tech-grid > :nth-child(2n),
.case-js .gift-result-metrics > :nth-child(2n) {
  --gift-reveal-y: 25px;
}

.case-js .gift-retention .gift-retention-strip {
  --gift-reveal-x: 34px;
  --gift-reveal-y: 0px;
}

@media (hover: hover) and (pointer: fine) {
  .gift-game,
  .gift-admin-tools article,
  .gift-tech-grid span,
  .gift-result-metrics span {
    transition:
      border-color 240ms ease,
      background-color 240ms ease,
      box-shadow 300ms ease,
      transform 300ms var(--gift-ease-soft);
  }

  .gift-game:hover,
  .gift-admin-tools article:hover,
  .gift-tech-grid span:hover,
  .gift-result-metrics span:hover {
    border-color: rgba(140, 241, 44, 0.15);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translateY(-3px);
  }

  .case-js .gift-reveal.is-visible .gift-game:hover,
  .case-js .gift-reveal.is-visible .gift-tech-grid span:hover,
  .case-js .gift-reveal.is-visible .gift-result-metrics span:hover {
    transform: translateY(-3px);
    transition-delay: 0ms;
  }

  .gift-top-cta,
  .gift-final-actions a {
    transition:
      filter 180ms ease,
      box-shadow 240ms ease,
      transform 180ms var(--gift-ease-out);
  }

  .gift-top-cta:hover,
  .gift-final-actions a:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
  }
}

@keyframes gift-topbar-enter {
  from { opacity: 0; transform: translate3d(0, -14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes gift-atmosphere-enter {
  from { opacity: 0; filter: blur(10px) saturate(0.72); transform: scale(1.045); }
  to { opacity: 0.68; filter: blur(0) saturate(0.9) contrast(1.05); transform: scale(1); }
}

@keyframes gift-copy-enter {
  from { opacity: 0; filter: blur(7px); transform: translate3d(0, 22px, 0); }
  to { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }
}

@keyframes gift-phone-stage-enter {
  from { opacity: 0; filter: blur(10px); transform: translate3d(54px, 28px, 0) scale(0.94); }
  to { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 1040px) {
  .gift-hero-decor {
    object-position: 66% center;
  }

  .gift-hero-phone-render {
    right: 50%;
    bottom: -32px;
  }
}

@media (max-width: 720px) {
  .gift-hero::before {
    background: linear-gradient(
      180deg,
      rgba(2, 6, 5, 0.9) 0%,
      rgba(2, 6, 5, 0.7) 46%,
      rgba(2, 6, 5, 0.12) 78%,
      rgba(2, 6, 5, 0.02) 100%
    );
  }

  .gift-hero-decor {
    top: auto;
    bottom: 0;
    height: 52%;
    object-position: 70% center;
    opacity: 0.54;
  }

  .case-js .gift-reveal .gift-reveal-child {
    --gift-reveal-x: 0px;
    --gift-reveal-y: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-js .gift-topbar,
  .case-js .gift-hero-decor,
  .case-js .gift-hero-copy > *,
  .case-js .gift-hero-phones,
  .case-js .gift-hero-phone-render {
    animation: none;
  }

  .case-js .gift-reveal,
  .case-js .gift-reveal .gift-reveal-child {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
    transition: none;
  }
}

/* Gift Roulette: full-interface device v4 and crisp module iconography */
.gift-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.gift-module-row .gift-chip::before,
.gift-retention-row .gift-chip::before {
  display: none;
  content: none;
}

.gift-chip-icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: none;
  stroke: var(--gift-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  filter: drop-shadow(0 0 6px rgba(140, 241, 44, 0.22));
}

.gift-module-row .gift-chip,
.gift-retention-row .gift-chip {
  gap: 9px;
  border-color: rgba(214, 255, 196, 0.065);
  background: rgba(255, 255, 255, 0.015);
}

.gift-hero-phone-render {
  right: -8px;
  bottom: 0;
  width: min(560px, 48vw);
  max-width: none;
}

.gift-retention {
  isolation: isolate;
  overflow: hidden;
  min-height: 280px;
  align-items: start;
}

.gift-retention > div {
  position: relative;
  z-index: 2;
}

.gift-retention-strip {
  right: 0;
  bottom: 0;
  width: min(620px, 62%);
  height: auto;
  object-fit: contain;
  object-position: right top;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 27%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 27%, #000 100%);
}

.gift-final-cta {
  overflow: hidden;
  min-height: 270px;
}

.gift-final-cta > * {
  min-width: 0;
}

.gift-final-decor {
  display: none;
}

.gift-final-phones {
  align-self: stretch;
  min-height: 220px;
  overflow: visible;
}

.gift-final-phones img,
.gift-final-phones img:nth-child(1) {
  width: min(100%, 670px);
  max-width: none;
  align-self: end;
  margin-bottom: 0;
}

.gift-admin {
  min-height: 340px;
}

.gift-admin-shots .gift-admin-render {
  width: min(100%, 720px);
  height: auto;
  max-height: none;
}

@media (max-width: 1040px) {
  .gift-hero-phones {
    min-height: 500px;
  }

  .gift-hero-phone-render {
    right: 50%;
    top: 0;
    bottom: auto;
    width: min(570px, 100vw);
  }
}

@media (max-width: 720px) {
  .gift-hero-phones {
    min-height: 350px;
    margin-top: 8px;
  }

  .gift-hero-phone-render {
    top: 0;
    bottom: auto;
    width: 110%;
  }

  .gift-retention {
    min-height: 0;
    padding-bottom: 230px;
  }

  .gift-retention-strip {
    right: 0;
    bottom: 4px;
    width: 172%;
    height: auto;
    opacity: 0.92;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .gift-final-phones img,
  .gift-final-phones img:nth-child(1) {
    width: 100%;
    margin-bottom: 0;
  }

  .gift-admin-shots .gift-admin-render {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

@media (max-width: 460px) {
  .gift-hero-phones {
    min-height: 350px;
  }
}
