@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Work+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #172033;
  --muted: #637083;
  --paper: #f7fbff;
  --surface: #ffffff;
  --line: #dbe8f4;
  --aqua: #19c4d6;
  --blue: #3a8bff;
  --coral: #ff6b7a;
  --lemon: #ffd35a;
  --lavender: #a98cff;
  --green: #23c883;
  --shadow: 0 24px 70px rgba(52, 107, 156, 0.14);
  --radius: 22px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --modern-shadow: 0 24px 80px rgba(25, 50, 93, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(25, 196, 214, 0.16), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #ffffff 100%);
  color: var(--ink);
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3,
.brand,
.button,
.nav {
  font-family: "Outfit", "Work Sans", sans-serif;
}

:focus-visible {
  outline: 3px solid rgba(58, 139, 255, 0.5);
  outline-offset: 4px;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(219, 232, 244, 0.7);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  z-index: 10;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(52, 107, 156, 0.12);
}

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

.brand {
  font-size: 17px;
  font-weight: 900;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.nav {
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
}

.nav a:not(.nav-cta) {
  color: var(--muted);
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  color: #fff;
}

.nav-cta {
  border-radius: 999px;
  padding: 11px 16px;
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 38px;
  padding: 8px;
  width: 44px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 100%;
}

.hero {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.9fr);
  min-height: 88vh;
  padding: 124px clamp(18px, 4vw, 56px) 52px;
}

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

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

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

.hero h1,
.section h2 {
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(58px, 9vw, 118px);
  margin-bottom: 24px;
}

.hero p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  max-width: 610px;
}

.hero-actions,
.trust-row,
.package-tabs {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.trust-row {
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 13px;
}

.hero-path {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(52, 107, 156, 0.08);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  max-width: 520px;
  overflow: hidden;
}

.hero-path span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  padding: 14px 12px;
  text-align: center;
}

.hero-path span + span {
  border-left: 1px solid var(--line);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  background: linear-gradient(135deg, rgba(25, 196, 214, 0.18), rgba(255, 107, 122, 0.12));
  border-radius: 36px;
  content: "";
  inset: 8% 2% 6% 10%;
  position: absolute;
  transform: rotate(-3deg);
}

.hero-visual img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: block;
  position: relative;
  width: 100%;
}

.service-strip,
.section,
.footer {
  padding-inline: clamp(18px, 4vw, 56px);
}

.service-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-bottom: 32px;
  padding-top: 22px;
}

.sales-band {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(18px, 4vw, 56px) 30px;
}

.sales-band div {
  background: #ffffff;
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 22px;
}

.sales-band div:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.sales-band div:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.sales-band strong {
  font-size: 18px;
}

.sales-band span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.service-card {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(52, 107, 156, 0.08);
  display: grid;
  gap: 6px;
  min-height: 142px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card.active {
  border-color: rgba(58, 139, 255, 0.45);
  transform: translateY(-2px);
}

.service-card strong {
  font-size: 22px;
}

.service-card small {
  color: var(--muted);
  font-weight: 700;
}

.service-icon {
  align-items: center;
  border-radius: 14px;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.service-icon svg {
  display: block;
  height: 35px;
  width: 35px;
}

.service-icon.instagram {
  background: linear-gradient(135deg, #ffcc5f 0%, #ff5d6c 45%, #8b5cf6 100%);
  color: #fff;
}

.service-icon.instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-icon.tiktok {
  background: #10131f;
  color: #fff;
}

.service-icon.tiktok svg {
  fill: currentColor;
}

.service-icon.twitter {
  background: #0f172a;
  color: #fff;
}

.service-icon.twitter svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.service-icon.youtube {
  background: #ff3131;
  color: #fff;
}

.service-icon.youtube rect {
  fill: currentColor;
}

.service-icon.youtube path {
  fill: #fff;
}

.service-icon.spotify {
  background: #20d466;
  color: #102318;
}

.service-icon.spotify circle {
  fill: currentColor;
}

.service-icon.spotify path {
  fill: none;
  stroke: #20d466;
  stroke-linecap: round;
  stroke-width: 1.35;
}

.service-icon.free {
  background: linear-gradient(135deg, var(--lemon), var(--green));
  color: #123025;
}

.service-icon.free svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.85;
}

.section {
  padding-bottom: clamp(70px, 8vw, 112px);
  padding-top: clamp(70px, 8vw, 112px);
}

.section-heading {
  max-width: 860px;
}

.section-heading.compact {
  margin-inline: auto;
  max-width: 720px;
  text-align: center;
}

.section h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}

.section-heading p:not(.eyebrow),
.flow-copy p,
.mini-note span,
.benefit-grid p,
.steps p,
.package-card p,
.faq p,
.success-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.package-tabs {
  gap: 10px;
  justify-content: center;
  margin: 32px 0 20px;
}

.tab {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  min-height: 44px;
  padding: 10px 16px;
}

.tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.package-grid,
.benefit-grid,
.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card,
.benefit-grid article,
.steps li,
.action-form,
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.package-card {
  box-shadow: 0 18px 44px rgba(52, 107, 156, 0.09);
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  min-height: 364px;
  padding: 26px;
}

.package-card.highlighted {
  border-color: rgba(58, 139, 255, 0.42);
  box-shadow: var(--shadow);
}

.package-card.hidden {
  display: none;
}

.badge {
  align-self: start;
  background: #eaf8ff;
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  justify-self: start;
  padding: 8px 11px;
}

.package-card h3 {
  font-size: 28px;
  margin: 24px 0 10px;
}

.package-card strong {
  display: block;
  font-size: 34px;
  margin: 10px 0 22px;
}

.package-card .sale-price {
  align-items: baseline;
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.sale-price s {
  color: #78869a;
  font-size: 20px;
  font-weight: 650;
  text-decoration-thickness: 2px;
}

.sale-price span {
  color: #087f5b;
}

.deal-countdown {
  background: #fff4d6;
  border: 1px solid #f1c75b;
  border-radius: 12px;
  color: #6b4700;
  display: grid;
  gap: 2px;
  margin: 0 0 18px;
  padding: 10px 12px;
}

.deal-countdown span {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.deal-countdown time {
  color: #8b2900;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.package-card .button {
  align-self: end;
  width: 100%;
}

.why {
  background: linear-gradient(180deg, #ffffff, #eefaff);
}

.benefit-grid {
  margin-top: 36px;
}

.benefit-grid article {
  padding: 28px;
}

.benefit-grid span,
.steps span {
  align-items: center;
  background: #eaf8ff;
  border-radius: 50%;
  color: var(--blue);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.benefit-grid h3,
.steps strong {
  display: block;
  font-size: 22px;
  margin: 22px 0 10px;
}

.steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.steps li {
  padding: 28px;
}

.free-likes,
.redeem,
.refill {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 440px);
}

.free-likes {
  background: #f7fbff;
}

.redeem {
  background: #f3fff8;
}

.refill {
  background: #fff8f2;
}

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

.mini-note {
  align-items: start;
  background: #fff;
  border: 1px solid rgba(35, 200, 131, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(52, 107, 156, 0.08);
  display: grid;
  gap: 6px;
  margin-top: 24px;
  max-width: 520px;
  padding: 18px;
}

.mini-note strong {
  color: var(--green);
}

.action-form {
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.action-form label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
}

.action-form input[type="text"],
.action-form input[type="url"],
.action-form input[type="email"] {
  background: #fbfdff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 50px;
  padding: 0 14px;
  width: 100%;
}

.check-row {
  align-items: center;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex !important;
  gap: 12px !important;
  padding: 14px;
}

.check-row input {
  accent-color: var(--green);
  height: 18px;
  width: 18px;
}

.check-row span {
  color: var(--ink);
}

.success-panel {
  animation: successIn 420ms ease both;
  background: linear-gradient(180deg, #ffffff, #eefdf5);
  border: 1px solid rgba(35, 200, 131, 0.34);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 24px;
  text-align: center;
}

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

.success-panel h3 {
  font-size: 24px;
  margin: 4px 0 0;
}

.success-panel p {
  margin-bottom: 0;
}

.success-burst {
  animation: pulse 1.6s ease infinite;
  background:
    radial-gradient(circle at center, #fff 0 28%, transparent 30%),
    conic-gradient(from 0deg, var(--green), var(--aqua), var(--lemon), var(--coral), var(--green));
  border-radius: 50%;
  display: block;
  height: 54px;
  width: 54px;
}

.compact-success {
  background: linear-gradient(180deg, #ffffff, #fff5e5);
  border-color: rgba(255, 211, 90, 0.58);
}

.form-message {
  background: #fff4f4;
  border: 1px solid rgba(255, 107, 122, 0.35);
  border-radius: var(--radius);
  color: #9a2e39;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  padding: 14px;
}

.form-message[hidden] {
  display: none;
}

.offer-modal {
  align-items: center;
  background: rgba(23, 32, 51, 0.42);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 20px;
  position: fixed;
  z-index: 30;
}

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

.offer-modal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(23, 32, 51, 0.22);
  max-width: 430px;
  padding: 34px 24px 24px;
  position: relative;
  width: min(100%, 430px);
}

.offer-close {
  align-items: center;
  background: #f2f7ff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 25px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  left: 14px;
  line-height: 1;
  position: absolute;
  top: 14px;
  width: 38px;
}

.offer-modal-card .badge {
  margin-left: 46px;
}

.offer-modal-card h3 {
  font-size: 28px;
  line-height: 1.1;
  margin: 22px 0 10px;
}

.offer-modal-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

@keyframes successIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(35, 200, 131, 0.28);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(35, 200, 131, 0);
    transform: scale(1.04);
  }
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 34px auto 0;
  max-width: 820px;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
}

.footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  justify-content: space-between;
  min-height: 92px;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .nav {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 18px 22px;
    position: absolute;
    right: 0;
    top: 71px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
  }

  .nav-cta {
    align-self: flex-start;
    margin-top: 8px;
    padding: 11px 16px !important;
  }

  .hero,
  .free-likes,
  .redeem,
  .refill {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-visual {
    max-width: 620px;
  }

  .service-strip,
  .sales-band,
  .package-grid,
  .benefit-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-band div,
  .sales-band div:first-child,
  .sales-band div:last-child {
    border-radius: var(--radius);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
  }

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

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    height: 34px;
    width: 34px;
  }

  .nav {
    top: 59px;
  }

  .nav a {
    font-size: 16px;
    min-height: 48px;
  }

  .hero {
    gap: 20px;
    min-height: auto;
    padding: 92px 16px 24px;
    position: relative;
    overflow: hidden;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 62px);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button,
  .package-card .button,
  .action-form .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .trust-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-inline: -16px;
    overflow-x: auto;
    padding-inline: 16px;
    scrollbar-width: none;
  }

  .trust-row::-webkit-scrollbar {
    display: none;
  }

  .trust-row span {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    font-size: 12px;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    text-align: center;
  }

  .service-strip {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 16px 22px;
  }

  .sales-band,
  .package-grid,
  .benefit-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .hero-path span + span {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .hero-path span {
    font-size: 12px;
    padding: 12px 6px;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual {
    opacity: 0.16;
    pointer-events: none;
    position: absolute;
    right: -54px;
    top: 82px;
    width: 190px;
  }

  .hero-visual img {
    border-radius: 18px;
    height: 190px;
    object-fit: cover;
    object-position: center;
  }

  .service-card {
    gap: 5px;
    min-height: 132px;
    padding: 16px 14px;
  }

  .service-card strong {
    font-size: 18px;
  }

  .service-card small {
    font-size: 12px;
    line-height: 1.35;
  }

  .service-icon {
    border-radius: 16px;
    height: 48px;
    width: 48px;
  }

  .service-icon svg {
    height: 31px;
    width: 31px;
  }

  .sales-band {
    gap: 10px;
    padding: 0 16px 22px;
  }

  .sales-band div {
    min-height: auto;
    padding: 18px;
  }

  .section {
    padding: 56px 16px;
  }

  .section h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .section-heading.compact {
    text-align: left;
  }

  .package-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 24px -16px 16px;
    overflow-x: auto;
    padding: 0 16px 8px;
    scrollbar-width: none;
  }

  .package-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex: 0 0 auto;
    min-height: 46px;
  }

  .package-grid,
  .benefit-grid,
  .steps {
    gap: 12px;
  }

  .package-card,
  .benefit-grid article,
  .steps li,
  .action-form,
  .faq details {
    padding: 20px;
  }

  .package-card {
    min-height: auto;
  }

  .package-card h3 {
    font-size: 25px;
    margin-top: 18px;
  }

  .package-card strong {
    font-size: 32px;
  }

  .redeem,
  .refill {
    gap: 22px;
  }

  .free-likes {
    gap: 22px;
  }

  .mini-note {
    margin-top: 18px;
  }

  .check-row {
    align-items: flex-start;
  }

  .success-panel {
    padding: 20px;
  }

  .success-panel h3 {
    font-size: 22px;
  }

  .offer-modal {
    align-items: end;
    padding: 14px;
  }

  .offer-modal-card {
    padding: 34px 20px 20px;
  }

  .offer-modal-card h3 {
    font-size: 24px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .mobile-action-bar {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid var(--line);
    bottom: 0;
    box-shadow: 0 -12px 34px rgba(52, 107, 156, 0.12);
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 12;
  }

  .mobile-action-bar .button {
    min-height: 48px;
    padding: 10px 12px;
  }
}

.support {
  align-items: center;
  background: linear-gradient(135deg, #eef3ff 0%, #f8f4ff 100%);
  border: 1px solid rgba(88, 101, 242, 0.18);
  border-radius: 34px;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.support-copy h2 {
  margin: 8px 0 14px;
}

.support-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.discord-button {
  background: #5865f2;
  box-shadow: 0 14px 28px rgba(88, 101, 242, 0.24);
  color: #fff;
}

.discord-button:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

.support-table-wrap {
  overflow-x: auto;
}

.support-table {
  background: rgba(255, 255, 255, 0.82);
  border-collapse: collapse;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(69, 81, 140, 0.1);
  min-width: 500px;
  overflow: hidden;
  width: 100%;
}

.support-table th,
.support-table td {
  border-bottom: 1px solid rgba(88, 101, 242, 0.12);
  padding: 17px 18px;
  text-align: left;
}

.support-table th {
  background: rgba(88, 101, 242, 0.09);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-table td {
  color: var(--muted);
}

.support-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.support-table tr:last-child td {
  border-bottom: 0;
}

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

@media (max-width: 340px) {
  .hero h1 {
    font-size: 47px;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .hero-path span {
    font-size: 11px;
  }
}

/* UI/UX Pro Max modernization layer */
body {
  background:
    radial-gradient(circle at 10% 8%, rgba(25, 196, 214, 0.2), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(169, 140, 255, 0.2), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 48%, #ffffff 100%);
  overflow-x: hidden;
}

.site-header {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  left: clamp(10px, 2vw, 28px);
  right: clamp(10px, 2vw, 28px);
  top: 12px;
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease, background 240ms ease;
}

.site-header.scrolled {
  box-shadow: 0 14px 42px rgba(30, 58, 95, 0.16);
  transform: translateY(-4px);
}

.brand-mark {
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(58, 139, 255, 0.28);
  transform: rotate(-5deg);
}

.nav a {
  position: relative;
  transition: color 200ms ease, transform 200ms var(--ease-out);
}

.nav a:not(.nav-cta)::after {
  background: linear-gradient(90deg, var(--aqua), var(--blue));
  border-radius: 999px;
  bottom: -7px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 220ms var(--ease-out);
  width: 100%;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

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

.hero {
  min-height: 96vh;
  padding-top: 150px;
  position: relative;
}

.hero::before,
.hero::after {
  border-radius: 999px;
  content: "";
  filter: blur(2px);
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero::before {
  animation: none;
  background: linear-gradient(135deg, rgba(25, 196, 214, 0.26), rgba(58, 139, 255, 0.1));
  height: 260px;
  left: -110px;
  top: 20%;
  width: 260px;
}

.hero::after {
  animation: none;
  background: linear-gradient(135deg, rgba(169, 140, 255, 0.2), rgba(255, 107, 122, 0.1));
  height: 340px;
  right: -160px;
  top: 10%;
  width: 340px;
}

.hero-copy > * {
  animation: hero-enter 700ms var(--ease-out) both;
}

.hero-copy > :nth-child(2) { animation-delay: 80ms; }
.hero-copy > :nth-child(3) { animation-delay: 150ms; }
.hero-copy > :nth-child(4) { animation-delay: 220ms; }
.hero-copy > :nth-child(5) { animation-delay: 290ms; }
.hero-copy > :nth-child(6) { animation-delay: 350ms; }

.hero h1 {
  background: linear-gradient(115deg, #172033 12%, #2563eb 52%, #19c4d6 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero-visual {
  animation: hero-visual-enter 650ms 120ms var(--ease-out) both;
  filter: drop-shadow(0 24px 36px rgba(36, 88, 160, 0.14));
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  content: "";
  height: 130%;
  left: -40%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -15%;
  transform: rotate(18deg);
  transition: left 700ms var(--ease-out), opacity 250ms ease;
  width: 20%;
}

.hero-visual:hover::after {
  left: 120%;
  opacity: 0.55;
}

.button,
.nav-cta {
  box-shadow: 0 12px 30px rgba(58, 139, 255, 0.18);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, background 220ms ease;
}

.button:hover,
.nav-cta:hover {
  box-shadow: 0 18px 38px rgba(58, 139, 255, 0.25);
  transform: translateY(-3px);
}

.button:active,
.nav-cta:active {
  transform: translateY(-1px) scale(0.98);
}

.service-card,
.package-card,
.action-form,
.faq-list details,
.why-card {
  backdrop-filter: none;
  border-color: rgba(174, 196, 220, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(30, 58, 95, 0.09);
  transition: transform 250ms var(--ease-out), box-shadow 250ms ease, border-color 250ms ease;
}

.service-card:hover,
.package-card:hover,
.why-card:hover {
  border-color: rgba(58, 139, 255, 0.34);
  box-shadow: var(--modern-shadow);
  transform: translateY(-7px);
}

.package-card.highlighted {
  background: linear-gradient(160deg, #ffffff 10%, #eef7ff 100%);
  box-shadow: 0 28px 70px rgba(58, 139, 255, 0.2);
  position: relative;
}

.package-card.highlighted::before {
  background: linear-gradient(90deg, var(--aqua), var(--blue), var(--lavender));
  border-radius: var(--radius) var(--radius) 0 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.section {
  scroll-margin-top: 110px;
}

.field-help {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.delivery-option {
  border: 1px solid rgba(35, 52, 73, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.switch-row {
  min-height: 64px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.switch-row > span {
  display: grid;
  gap: 3px;
}

.switch-row small {
  color: var(--muted);
  line-height: 1.4;
}

.switch-row input[role="switch"] {
  appearance: none;
  width: 52px;
  height: 30px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  position: relative;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.switch-row input[role="switch"]::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 200ms ease;
}

.switch-row input[role="switch"]:checked {
  background: #2698f3;
}

.switch-row input[role="switch"]:checked::after {
  transform: translateX(22px);
}

.switch-row input[role="switch"]:focus-visible {
  outline: 3px solid rgba(38, 152, 243, 0.28);
  outline-offset: 3px;
}

.slow-likes-settings {
  padding: 0 16px 16px;
  animation: reveal-delivery-settings 200ms ease-out;
}

.slow-likes-settings[hidden] {
  display: none;
}

.slow-likes-settings input[type="number"] {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid rgba(35, 52, 73, 0.2);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

@keyframes reveal-delivery-settings {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .slow-likes-settings,
  .switch-row input[role="switch"],
  .switch-row input[role="switch"]::after {
    animation: none;
    transition: none;
  }
}

input,
select,
textarea {
  border-radius: 13px;
  min-height: 48px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(58, 139, 255, 0.12);
  outline: 0;
  transform: translateY(-1px);
}

.reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out);
}

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

@media (max-width: 760px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-visual {
    filter: none;
  }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-visual-enter {
  from { opacity: 0; transform: translateX(36px) scale(0.94); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes visual-float {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

@keyframes orb-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(30px, -24px, 0) scale(1.08); }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 15px;
    padding: 12px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(52px, 18vw, 78px);
  }

  .support-table {
    min-width: 0;
  }

  .support-table th,
  .support-table td {
    padding: 14px 12px;
  }
}

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