:root {
  --bg: #121212;
  --bg-2: #1a1a1a;
  --panel: rgba(28, 28, 28, 0.7);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f2f2f2;
  --muted: #b5b5b5;
  --muted-2: #8a8a8a;
  --accent: #c78b33;
  --accent-2: #d1d5db;
  --accent-3: #6b7280;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(41, 41, 41, 0.14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(199, 139, 51, 0.2), transparent 30%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 0 20px 40px;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 85%);
  opacity: 0.35;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 320px;
  height: 320px;
  top: 80px;
  left: -60px;
  background: rgba(199, 139, 51, 0.18);
}

.orb-2 {
  width: 360px;
  height: 360px;
  right: -80px;
  top: 260px;
  background: rgba(199, 139, 51, 0.18);
}

.site-header,
.hero-section,
.site-footer {
  position: relative;
  z-index: 2;
}

.hero-section,
.site-footer {
  max-width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: calc(100% + 40px);
  margin: 0 0 42px -20px;
  padding: 18px 24px;
  background: rgba(18, 18, 18, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  transition:
    padding 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    transform 0.32s ease;
}

.brand-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 64px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  transition: min-height 0.32s ease;
}

.site-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  flex: 0 0 auto;
  transform-origin: left center;
  transition: transform 0.32s ease;
}

.site-logo-icon-wrap {
  width: 68px;
  flex: 0 0 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo-icon-spin {
  display: block;
  width: 100%;
  transform-origin: center center;
}

.site-logo-icon {
  display: block;
  width: 100%;
  height: auto;
}

.site-logo-text {
  display: block;
  width: 190px;
  height: auto;
  transform-origin: left center;
  transition: width 0.32s ease;
}

@keyframes logoSpinIn {
  0% {
    opacity: 0;
    transform: rotate(0deg) scale(0.82);
    filter: blur(4px);
  }
  70% {
    opacity: 1;
    transform: rotate(332deg) scale(1.04);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: rotate(360deg) scale(1);
    filter: blur(0);
  }
}

@keyframes logoSpinBack {
  0% {
    transform: rotate(0deg);
  }
  78% {
    transform: rotate(-330deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.site-header.is-scrolled {
  padding: 10px 24px;
  background: rgba(18, 18, 18, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
}

.site-header.is-scrolled .brand-wrap {
  min-height: 48px;
}

.site-header.is-scrolled .site-logo-lockup {
  transform: scale(0.9);
}

.site-header.is-scrolled .site-logo-icon-wrap {
  width: 58px;
  flex-basis: 58px;
}

.site-header.is-scrolled .site-logo-text {
  width: 190px;
  margin-left: -0px;
}

.site-logo-icon-spin.spin-in {
  animation: logoSpinIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.site-logo-icon-spin.spin-back {
  animation: logoSpinBack 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-section {
  display: grid;
  gap: 22px;
}

.hero-card,
.info-card,
.notify-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  position: relative;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(199, 139, 51, 0.18), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-title {
  margin: 0 0 18px;
  max-width: 900px;
  font-size: clamp(1.54rem, 4.2vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #c9d3f4 45%, #e7cb4b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dde5fa;
  font-size: 0.92rem;
  font-weight: 500;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #fad14b);
  color: #151515;
  box-shadow: 0 14px 34px rgba(255, 159, 47, 0.24);
}

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

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-full {
  width: 100%;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  border-color: #c78b33;
  box-shadow: inset 0 0 14px rgba(199, 139, 51, 0.18);
}

.info-card h3 {
  margin: 0 0 6px;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}

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

.notify-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.notify-label {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.notify-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
}

.notify-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.notify-actions {
  width: min(100%, 320px);
  flex: 0 0 320px;
}

.site-footer {
  padding-top: 22px;
}

.site-footer p {
  margin: 0;
  color: var(--muted-2);
  text-align: center;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.showcase-slider-section {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 22px;
  position: relative;
  z-index: 2;
}

.showcase-slider {
  position: relative;
  height: 605px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.03);
}

.showcase-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.showcase-slide.active {
  opacity: 1;
  visibility: visible;
}

.showcase-image {
  display: block;
  width: 100%;
  height: 605px;
  object-fit: cover;
  object-position: center;
}

.showcase-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.06) 100%);
  pointer-events: none;
  z-index: 2;
}

.showcase-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  max-width: 680px;
}

.showcase-kicker {
  margin: 0 0 8px;
  color: #ffb866;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-overlay h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.5);
  color: #ffffff;
  font-size: 1.3rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.showcase-nav:hover {
  background: rgba(18, 18, 18, 0.75);
}

.showcase-prev {
  left: 18px;
}

.showcase-next {
  right: 18px;
}

.showcase-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.showcase-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.showcase-dot.active {
  background: #ff9f2f;
  transform: scale(1.15);
}

@media (max-width: 980px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .notify-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .notify-actions {
    width: 100%;
    flex: 1 1 auto;
  }

  .brand-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .notify-card-header {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

}

@media (max-width: 640px) {
  .page-shell {
    padding: 18px 14px 28px;
  }

  .site-header {
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 14px 16px;
  }

  .site-logo-lockup {
    gap: 8px;
  }

  .notify-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
  }

  .notify-card-header .notify-actions {
    width: 100%;
    margin-left: 0;
  }

  .notify-card-header .btn {
    width: 100%;
  }

  .site-logo-icon-wrap {
    width: 52px;
    flex-basis: 52px;
  }

  .site-logo-text {
    width: 170px;
    margin-left: 0;
  }

  .site-header.is-scrolled {
    padding: 8px 16px;
  }

  .site-header.is-scrolled .site-logo-icon-wrap {
    width: 46px;
    flex-basis: 46px;
  }

  .site-header.is-scrolled .site-logo-text {
    width: 150px;
    margin-left: 0;
  }

  .showcase-slider {
    height: 260px;
  }

  .showcase-slide img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .showcase-image {
    height: 260px;
  }

  .showcase-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .showcase-overlay h3 {
    font-size: 1.1rem;
  }

  .showcase-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .showcase-prev {
    left: 12px;
  }

  .showcase-next {
    right: 12px;
  }

  .showcase-dots {
    bottom: 12px;
  }

  .hero-card,
  .notify-card,
  .info-card {
    padding: 20px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .brand-wrap {
    gap: 12px;
  }

  .apply-modal__dialog {
    padding-bottom: 110px;
  }

  .apply-form__actions {
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }
}

.notify-card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: none;
  margin-left: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.notify-card-header .notify-copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}

.notify-card-header .notify-label {
  margin: 0 0 4px;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.notify-card-header h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.notify-card-header p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.2;
  color: var(--muted);
}

.notify-card-header .notify-actions {
  width: auto;
  flex: 0 0 auto;
  margin-left: auto;
}

.notify-card-header .btn {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-header.is-scrolled .notify-card-header {
  padding: 10px 12px;
  border-radius: 12px;
  width: auto;
  max-width: none;
}

.site-header.is-scrolled .notify-card-header h3 {
  font-size: 1.0rem;
}

.site-header.is-scrolled .notify-card-header p:last-child {
  font-size: 0.9rem;
}

body.apply-modal-open {
  overflow: hidden;
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.apply-modal.is-open {
  display: block;
}

.apply-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.apply-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 36px);
  margin: 18px auto;
  padding: 28px;
  overflow: auto;
  border-radius: 28px;
  background: rgba(21, 21, 21, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.apply-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.apply-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.03);
}

.apply-modal__header {
  margin-bottom: 24px;
  padding-right: 56px;
}

.apply-modal__eyebrow {
  margin: 0 0 8px;
  color: #ffbf69;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.apply-modal__header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.apply-modal__intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.apply-progress {
  margin-top: 22px;
}

.apply-progress__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.apply-progress__bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.apply-progress__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #fad14b);
  transition: width 0.25s ease;
}

.apply-form__status {
  min-height: 24px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 600;
}

.apply-form__status.is-error {
  color: #ff8a8a;
}

.apply-form__status.is-success {
  color: #9ee3a1;
}

.apply-form__status.is-pending {
  color: #ffd17b;
}

.apply-step {
  display: none;
}

.apply-step.is-active {
  display: block;
}

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

.apply-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apply-field--full {
  grid-column: 1 / -1;
}

.apply-field label {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.apply-field label span {
  color: #ffbf69;
}

.apply-field input,
.apply-field select,
.apply-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus {
  border-color: rgba(199, 139, 51, 0.9);
  box-shadow: 0 0 0 3px rgba(199, 139, 51, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.apply-field textarea {
  resize: vertical;
  min-height: 140px;
}

.apply-field input::placeholder,
.apply-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.conditional-field {
  display: none;
}

.conditional-field.is-visible {
  display: flex;
}

.apply-word-count {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.apply-review__intro {
  margin: 0 0 16px;
  color: var(--muted);
}

.apply-review__grid {
  display: grid;
  gap: 12px;
}

.apply-review__item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.apply-review__label {
  display: block;
  margin-bottom: 6px;
  color: #ffbf69;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apply-review__value {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.apply-form__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.apply-form__actions .btn {
  min-width: 140px;
}

#applySubmitBtn {
  display: none;
}

@media (max-width: 760px) {
  .apply-modal__dialog {
    width: min(100vw - 20px, 920px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    padding: 20px 20px 110px;
    border-radius: 22px;
  }

    .apply-form__actions {
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .apply-modal__header {
    padding-right: 42px;
  }

  .apply-progress__meta {
    flex-direction: column;
    gap: 4px;
  }

  .apply-field-grid {
    grid-template-columns: 1fr;
  }

  .apply-form__actions {
    flex-direction: column;
  }

  .apply-form__actions .btn {
    width: 100%;
  }
}

.apply-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-image:
    linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position:
    calc(100% - 26px) calc(50% - 3px),
    calc(100% - 20px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.apply-field select option {
  background: #1a1a1a;
  color: #ffffff;
}

.apply-field select:focus {
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.apply-field select:invalid {
  color: rgba(255, 255, 255, 0.55);
}

.apply-success-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.apply-success-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.apply-success-toast__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 280px;
  max-width: min(92vw, 460px);
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(199, 139, 51, 0.45);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  color: #fff;
  text-align: center;
}

.apply-success-toast__inner strong {
  font-size: 0.98rem;
  color: #ffcf72;
}

.apply-success-toast__inner span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}