:root {
  color-scheme: dark;
  --bg-main: #070a12;
  --bg-secondary: #0e1424;
  --surface: rgba(17, 24, 39, 0.72);
  --surface-border: rgba(148, 163, 184, 0.18);
  --text-primary: #e6ecff;
  --text-secondary: #a7b3d1;
  --text-muted: #76809d;
  --ok: #22c55e;
  --ok-strong: #16a34a;
  --error: #ef4444;
  --discord: #5865f2;
  --whatsapp: #25d366;
  --shadow-soft: 0 18px 55px rgba(4, 9, 21, 0.45);
  --radius-lg: 22px;
  --radius-md: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 12% 15%, rgba(88, 101, 242, 0.18), transparent 33%),
    radial-gradient(circle at 84% 2%, rgba(34, 197, 94, 0.12), transparent 28%),
    linear-gradient(160deg, var(--bg-main), var(--bg-secondary));
  line-height: 1.45;
  overflow-x: hidden;
  overflow-y: auto;
}

.page-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(28px, 5vh, 56px) 20px 18px;
}

.hero {
  text-align: center;
  margin-bottom: 18px;
}

.brand-mark {
  margin: 0;
  letter-spacing: 0.34em;
  font-size: 0.76rem;
  font-weight: 700;
  color: #9eb0ff;
}

.hero-title {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 3.8vw, 2.45rem);
  font-weight: 800;
}

.hero-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.97rem;
}

.subscription-card {
  padding: 24px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(22, 31, 52, 0.82), rgba(12, 17, 31, 0.65));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.price-block {
  margin-bottom: 14px;
}

.price-kicker {
  margin: 0 0 6px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.price-value {
  margin: 0;
  font-size: clamp(1.08rem, 2.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: #d9e4ff;
}

.price-value span {
  color: #93a4c9;
  font-size: 0.95rem;
  font-weight: 500;
}

.benefits-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.benefits-list li {
  position: relative;
  padding-left: 26px;
  color: #d6e0ff;
  font-size: 0.95rem;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #60f69b, #24bb63);
  box-shadow: 0 0 0 6px rgba(36, 187, 99, 0.18);
}

.field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.text-input {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: var(--radius-md);
  background: rgba(8, 12, 22, 0.68);
  color: var(--text-primary);
  font-size: 1rem;
  padding: 14px 14px;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.text-input::placeholder {
  color: #6f7d9f;
}

.text-input:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.75);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
}

.text-input.is-invalid {
  border-color: rgba(239, 68, 68, 0.86);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.field-hint {
  margin: 8px 0 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.edition-group {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

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

.edition-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  background: rgba(8, 12, 22, 0.45);
  color: #c8d5f6;
  font-size: 0.92rem;
}

.edition-option input {
  margin: 0;
  accent-color: var(--ok);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkbox-row input {
  width: 17px;
  height: 17px;
  accent-color: var(--ok);
}

.subscribe-button {
  width: 100%;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #2acf6e, #1da455);
  color: #06130b;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.subscribe-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(22, 163, 74, 0.28);
}

.subscribe-button:active:not(:disabled) {
  transform: translateY(0);
}

.subscribe-button:disabled {
  opacity: 0.78;
  cursor: not-allowed;
  filter: grayscale(0.1);
}

.button-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(6, 19, 11, 0.25);
  border-top-color: rgba(6, 19, 11, 0.95);
  animation: spin 0.78s linear infinite;
  display: none;
}

.subscribe-button.is-loading .button-spinner {
  display: inline-block;
}

.form-message {
  min-height: 20px;
  margin: 13px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.form-message[data-state="error"],
.form-message[data-state="progress"],
.form-message[data-state="success"] {
  opacity: 1;
  transform: translateY(0);
}

.form-message-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex: 0 0 16px;
  display: none;
  position: relative;
}

.form-message[data-state="error"] .form-message-icon,
.form-message[data-state="progress"] .form-message-icon,
.form-message[data-state="success"] .form-message-icon {
  display: inline-block;
}

.form-message[data-state="progress"] .form-message-icon {
  border: 2px solid rgba(167, 179, 209, 0.35);
  border-top-color: rgba(167, 179, 209, 0.95);
  animation: spin 0.72s linear infinite;
}

.form-message[data-state="success"] .form-message-icon {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.6);
}

.form-message[data-state="success"] .form-message-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #88efb2;
  border-bottom: 2px solid #88efb2;
  transform: rotate(45deg);
}

.form-message[data-state="error"] .form-message-icon {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.62);
}

.form-message[data-state="error"] .form-message-icon::before {
  content: "!";
  position: absolute;
  left: 5px;
  top: -1px;
  color: #f8a3a3;
  font-size: 12px;
  font-weight: 700;
}

.form-message-text {
  line-height: 1.2;
}

.form-message[data-state="error"] {
  color: #f8a3a3;
}

.form-message[data-state="progress"] {
  color: #b9c4de;
}

.form-message[data-state="success"] {
  color: #94efbc;
}

.discord-button {
  margin: 14px auto 0;
  width: min(100%, 760px);
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(88, 101, 242, 0.45);
  background: linear-gradient(180deg, rgba(88, 101, 242, 0.98), rgba(79, 92, 222, 0.96));
  color: #f6f8ff;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.discord-button svg {
  width: 20px;
  height: 16px;
  fill: currentColor;
}

.discord-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(88, 101, 242, 0.34);
  filter: brightness(1.03);
}

.faq-panel {
  margin: 12px auto 0;
  width: min(100%, 760px);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(8, 14, 26, 0.56);
  padding: 16px;
}

.faq-panel h2 {
  margin: 0 0 12px;
  font-size: 1.06rem;
  font-weight: 600;
  color: #cfd8f7;
}

.faq-item {
  margin-bottom: 8px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 12px;
  background: rgba(10, 16, 29, 0.56);
  overflow: hidden;
  transition: border-color 0.24s ease, background 0.24s ease;
}

.faq-item:last-of-type {
  margin-bottom: 0;
}

.faq-item[open] {
  border-color: rgba(148, 163, 184, 0.34);
  background: rgba(11, 20, 35, 0.76);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: #d2dcfa;
  font-size: 1.01rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1.35;
  padding: 14px 44px 14px 14px;
  position: relative;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: calc(50% - 1px);
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background: #93a4c9;
  transition: transform 0.28s ease, opacity 0.22s ease;
}

.faq-item summary::before {
  transform: rotate(90deg);
}

.faq-item[open] summary {
  color: #e1e8ff;
}

.faq-item[open] summary::before {
  transform: rotate(90deg) scaleY(0);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s cubic-bezier(0.22, 0.7, 0.2, 1), opacity 0.28s ease;
  opacity: 0.8;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  overflow: hidden;
  padding: 0 14px 0;
  color: #aab8db;
  font-size: 0.95rem;
  line-height: 1.45;
  transform: translateY(-6px);
  transition: padding-bottom 0.34s cubic-bezier(0.22, 0.7, 0.2, 1), transform 0.34s cubic-bezier(0.22, 0.7, 0.2, 1);
}

.faq-item[open] .faq-answer p {
  padding-bottom: 14px;
  transform: translateY(0);
}

.trust-note {
  max-width: 760px;
  margin: 0 auto 86px;
  padding: 0 20px;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: #7d89a7;
  font-size: 0.82rem;
}

.trust-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-main svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.trust-main p {
  margin: 0;
}

.trust-support {
  margin: 0;
  color: #8a96b5;
  font-size: 0.78rem;
}

.trust-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-links a {
  color: #9aa8cb;
  text-decoration: none;
  font-size: 0.78rem;
}

.trust-links a:hover {
  color: #c5d3f9;
}

.trust-links span {
  color: #7382a3;
}

.trust-note p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(7, 58, 30, 0.35);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
