@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --card: #171717;
  --card-2: #1f1f1f;
  --gold: #d6b451;
  --gold-2: #9c7a28;
  --gold-3: #f1d472;
  --white: #ffffff;
  --text: #cfcfcf;
  --muted: #9b9b9b;
  --green: #8aa36b;
  --danger: #e86f6f;
  --success: #8fca7a;
  --shadow-gold: 0 0 22px rgba(214, 180, 81, 0.34);
  --border-gold: rgba(214, 180, 81, 0.52);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;

  --font-main: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --title-size: clamp(2.5rem, 5.2vw, 4rem);
  --subtitle-size: 0.98rem;
  --body-size: 0.93rem;
  --card-title-size: 1.2rem;
  --card-text-size: 0.9rem;
  --button-size: 0.92rem;
  --eyebrow-size: 0.72rem;

  --title-weight: 600;
  --body-weight: 400;
  --title-letter-spacing: -0.02em;
  --title-line-height: 0.98;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(214, 180, 81, 0.12), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(138, 163, 107, 0.09), transparent 28%),
    var(--black);
  color: var(--white);
  font-family: var(--font-main);
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
}

.section {
  padding: 88px 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 40px), 900px);
}

.hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px min(40px, 5vw);
  background: rgba(5, 5, 5, 0.76);
  border-bottom: 1px solid rgba(214, 180, 81, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-text {
  letter-spacing: 0.025em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
}

.header-nav a {
  transition: color 180ms ease;
}

.header-nav a:hover {
  color: var(--gold-3);
}

.hero {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: var(--eyebrow-size);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: var(--title-weight);
  line-height: var(--title-line-height);
  letter-spacing: var(--title-letter-spacing);
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

h1 span,
h2 span {
  color: var(--gold);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.hero-subtitle {
  max-width: 680px;
  color: var(--text);
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  line-height: 1.72;
}

.microcopy {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 570px;
  margin: 30px 0;
  padding: 18px;
  background: linear-gradient(135deg, rgba(23, 23, 23, 0.96), rgba(15, 15, 15, 0.92));
  border: 1px solid rgba(214, 180, 81, 0.26);
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), var(--shadow-gold);
}

.status-dot {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(214, 180, 81, 0.14);
}

.status-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.95rem;
  font-weight: 700;
}

.status-card small {
  display: block;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.5;
}

.status-card.is-open .status-dot {
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(143, 202, 122, 0.14);
}

.status-card.is-closed .status-dot {
  background: var(--gold);
}

.status-card.is-error .status-dot {
  background: var(--danger);
  box-shadow: 0 0 0 8px rgba(232, 111, 111, 0.13);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-size: var(--button-size);
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  box-shadow: 0 14px 32px rgba(214, 180, 81, 0.25);
}

.btn-primary:hover:not(:disabled) {
  box-shadow: 0 18px 42px rgba(214, 180, 81, 0.38);
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(214, 180, 81, 0.42);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-3);
}

.btn-full {
  width: 100%;
}

.video-frame {
  position: relative;
  overflow: hidden;
  padding: 12px;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, var(--gold), rgba(214, 180, 81, 0.1), var(--gold-2)) border-box;
  border: 1px solid transparent;
  border-radius: 30px;
  box-shadow: var(--shadow-gold);
}

.sound-button {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(214, 180, 81, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-placeholder {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 50% 18%, rgba(214, 180, 81, 0.22), transparent 28%),
    linear-gradient(135deg, #202020, #080808);
  border-radius: 22px;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 10px,
      transparent 10px,
      transparent 24px
    );
  opacity: 0.75;
}

.video-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(214, 180, 81, 0.3), transparent 68%);
  filter: blur(6px);
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: min(78%, 360px);
  padding: 18px;
  background: #0d0d0d;
  border: 1px solid rgba(214, 180, 81, 0.45);
  border-radius: 36px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.6);
}

.phone-top {
  width: 86px;
  height: 8px;
  margin: 0 auto 18px;
  background: #222;
  border-radius: 999px;
}

.phone-content {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background:
    linear-gradient(rgba(6, 6, 6, 0.15), rgba(6, 6, 6, 0.9)),
    radial-gradient(circle at top, rgba(138, 163, 107, 0.35), transparent 45%),
    linear-gradient(145deg, #272727, #111);
  border-radius: 24px;
}

.mockup-label {
  margin-bottom: auto;
  color: var(--gold-3);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.mockup-title {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.06;
}

.mockup-text {
  color: var(--text);
  font-size: 0.9rem;
}

.video-progress {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.video-progress span {
  display: block;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
  border-radius: inherit;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.intro-section {
  padding-top: 40px;
}

.centered {
  text-align: center;
}

.gold-card,
.mini-card,
.benefit-card,
.testimonial-card,
.timeline-card,
.pricing-card,
.waitlist-card {
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, rgba(214, 180, 81, 0.7), rgba(214, 180, 81, 0.04), rgba(214, 180, 81, 0.45)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-gold);
}

.gold-card {
  padding: clamp(26px, 5vw, 48px);
  border-radius: var(--radius-lg);
}

.gold-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.72;
}

.gold-card p:last-child {
  margin-bottom: 0;
}

.card-icon {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 2.4rem;
}

.cards-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mini-card,
.benefit-card {
  min-height: 220px;
  padding: 26px;
  border-radius: var(--radius-md);
}

.mini-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.mini-card p,
.benefit-card p,
.timeline-card p,
.waitlist-card p,
.about-copy p,
.testimonial-card p {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.68;
}

.journey-section {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold-2), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 44px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item.left .timeline-card {
  grid-column: 1;
  margin-right: 54px;
}

.timeline-item.right .timeline-card {
  grid-column: 2;
  margin-left: 54px;
}

.timeline-point {
  position: absolute;
  top: 42px;
  left: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  background: var(--white);
  border: 4px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(214, 180, 81, 0.08);
  transform: translateX(-50%);
}

.timeline-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.phase {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.benefit-card {
  min-height: 200px;
  text-align: center;
}

.benefit-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
}

.testimonial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.testimonial-card strong {
  color: var(--gold);
  font-weight: 700;
}

.disclaimer {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.photo-placeholder {
  display: grid;
  width: min(100%, 440px);
  min-height: 540px;
  place-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 50% 20%, rgba(214, 180, 81, 0.2), transparent 35%),
    linear-gradient(145deg, #2a2a2a, #101010);
  border: 1px solid rgba(214, 180, 81, 0.48);
  border-radius: 34px;
  box-shadow: var(--shadow-gold);
}

.photo-placeholder span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 0.9;
  text-align: center;
}

.check-list,
.pricing-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li,
.pricing-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.58;
}

.check-list li::before,
.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 28px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  padding: clamp(28px, 5vw, 44px);
  border-radius: var(--radius-lg);
}

.pricing-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 15px;
  color: var(--gold);
  border: 1px solid rgba(214, 180, 81, 0.5);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-box {
  margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(214, 180, 81, 0.18);
  border-bottom: 1px solid rgba(214, 180, 81, 0.18);
}

.price-box span,
.offer-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.price-box strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.offer-meta {
  margin-bottom: 26px;
}

.offer-meta p {
  margin-bottom: 12px;
  font-size: 0.93rem;
}

.offer-meta strong {
  color: var(--gold-3);
  font-weight: 700;
}

.waitlist-card {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(214, 180, 81, 0.88), rgba(156, 122, 40, 0.95)) padding-box,
    linear-gradient(135deg, var(--gold-3), var(--gold-2)) border-box;
  border-radius: var(--radius-lg);
}

.waitlist-card .eyebrow,
.waitlist-card h3,
.waitlist-card p {
  color: var(--black);
}

.waitlist-card .btn-secondary {
  width: 100%;
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.payment-result {
  max-width: 980px;
  margin: 34px auto 0;
  padding: 28px;
  background: rgba(23, 23, 23, 0.95);
  border: 1px solid rgba(214, 180, 81, 0.35);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
}

.payment-result h3 {
  color: var(--gold);
}

.payment-box {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.copy-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.copy-row input {
  width: 100%;
  min-width: 0;
  color: var(--white);
  background: #101010;
  border: 1px solid rgba(214, 180, 81, 0.22);
  border-radius: 12px;
  padding: 14px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(214, 180, 81, 0.16);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--gold);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 16px;
  overflow-y: auto;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  padding: clamp(24px, 5vw, 42px);
  background: linear-gradient(145deg, #1b1b1b, #0a0a0a);
  border: 1px solid rgba(214, 180, 81, 0.42);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8), var(--shadow-gold);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 1.55rem;
  line-height: 1;
}

.modal-header {
  max-width: 720px;
  margin-bottom: 28px;
}

.modal-header p {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.7;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 650;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  color: var(--white);
  background: #101010;
  border: 1px solid rgba(214, 180, 81, 0.24);
  border-radius: 14px;
  outline: none;
  padding: 13px 14px;
  font-size: 0.92rem;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 180, 81, 0.12);
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--text) !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}

.checkbox-label input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-alert {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 650;
}

.form-alert.error {
  color: #ffdede;
  background: rgba(232, 111, 111, 0.13);
  border: 1px solid rgba(232, 111, 111, 0.28);
}

.form-alert.success {
  color: #e6ffdc;
  background: rgba(143, 202, 122, 0.13);
  border: 1px solid rgba(143, 202, 122, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   HOME / LINKTREE-STYLE PAGE
   ============================== */

.home-page {
  min-height: 100vh;
  padding: 56px 0 90px;
}

.home-shell {
  width: min(calc(100% - 32px), 860px);
  margin: 0 auto;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 38px 24px 32px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.97), rgba(5, 5, 5, 0.95)) padding-box,
    linear-gradient(135deg, rgba(214, 180, 81, 0.85), rgba(214, 180, 81, 0.08), rgba(214, 180, 81, 0.5)) border-box;
  border: 1px solid transparent;
  border-radius: 34px;
  box-shadow: var(--shadow-gold);
}

.home-hero::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(214, 180, 81, 0.24), transparent 65%);
  filter: blur(8px);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -150px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(214, 180, 81, 0.13), transparent 68%);
  filter: blur(10px);
}

.home-avatar {
  position: relative;
  z-index: 1;
  width: 128px;
  height: 128px;
  margin: 0 auto 20px;
  padding: 4px;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--gold-3), var(--gold-2)),
    rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  box-shadow:
    0 18px 42px rgba(214, 180, 81, 0.28),
    0 0 0 1px rgba(214, 180, 81, 0.16);
}

.home-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(5, 5, 5, 0.94);
  border-radius: inherit;
  background: #111;
}

.home-title {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: var(--title-size);
  font-weight: var(--title-weight);
  line-height: var(--title-line-height);
  letter-spacing: var(--title-letter-spacing);
}

.home-title span {
  color: var(--gold);
}

.home-subtitle {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto 12px;
  color: var(--text);
  font-size: var(--subtitle-size);
  line-height: 1.7;
}

.home-microcopy {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.home-socials {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.home-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 180, 81, 0.3);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.home-social:hover {
  transform: translateY(-2px);
  color: var(--gold-3);
  border-color: rgba(214, 180, 81, 0.55);
  background: rgba(255, 255, 255, 0.065);
}

.home-links {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.home-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 156px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, rgba(214, 180, 81, 0.7), rgba(214, 180, 81, 0.05), rgba(214, 180, 81, 0.45)) border-box;
  border: 1px solid transparent;
  border-radius: 28px;
  box-shadow: var(--shadow-gold);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.home-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(214, 180, 81, 0.16), transparent 34%),
    radial-gradient(circle at 88% 92%, rgba(214, 180, 81, 0.1), transparent 38%);
  transition: opacity 180ms ease;
}

.home-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(214, 180, 81, 0.2);
}

.home-card:hover::before {
  opacity: 1;
}

.home-card.is-gold {
  background:
    linear-gradient(135deg, rgba(214, 180, 81, 0.96), rgba(156, 122, 40, 0.98)) padding-box,
    linear-gradient(135deg, var(--gold-3), var(--gold-2)) border-box;
}

.home-card.is-gold .home-card-kicker,
.home-card.is-gold .home-card-title,
.home-card.is-gold .home-card-text,
.home-card.is-gold .home-card-arrow {
  color: var(--black);
}

.home-card.is-gold .home-card-arrow {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.08);
}

.home-card.is-dark {
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.98), rgba(25, 25, 25, 0.96)) padding-box,
    linear-gradient(135deg, rgba(214, 180, 81, 0.8), rgba(214, 180, 81, 0.08), rgba(214, 180, 81, 0.5)) border-box;
}

.home-card-media,
.home-card-visual {
  position: relative;
  z-index: 1;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 35% 25%, rgba(214, 180, 81, 0.24), transparent 42%),
    linear-gradient(145deg, #222, #0b0b0b);
  border: 1px solid rgba(214, 180, 81, 0.25);
  font-size: 2.5rem;
}

.home-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.home-card:hover .home-card-media img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.home-card.is-gold .home-card-media,
.home-card.is-gold .home-card-visual {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.08));
  border-color: rgba(0, 0, 0, 0.12);
}

.home-card-content,
.home-card-arrow {
  position: relative;
  z-index: 1;
}

.home-card-kicker {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: var(--eyebrow-size);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-card-title {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.home-card-text {
  margin: 0;
  color: var(--text);
  font-size: var(--card-text-size);
  line-height: 1.62;
}

.home-card-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(214, 180, 81, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.18rem;
  font-weight: 800;
}

.active-group-section {
  display: none;
  margin-top: 28px;
}

.active-group-section.is-visible {
  display: block;
}

.active-group-heading {
  margin-bottom: 16px;
  text-align: center;
}

.active-group-heading h2 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.active-group-heading h2 span {
  color: var(--gold);
}

.active-group-heading p {
  margin: 0;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.65;
}

.home-note {
  margin: 28px auto 0;
  padding: 22px;
  color: var(--text);
  text-align: center;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(135deg, rgba(214, 180, 81, 0.55), rgba(214, 180, 81, 0.04), rgba(214, 180, 81, 0.35)) border-box;
  border: 1px solid transparent;
  border-radius: 22px;
  box-shadow: var(--shadow-gold);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .video-placeholder {
    min-height: 460px;
  }

  .cards-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 54px;
  }

  .timeline-item.left .timeline-card,
  .timeline-item.right .timeline-card {
    grid-column: 1;
    margin: 0;
  }

  .timeline-point {
    left: 18px;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 116px;
    font-size: 0.9rem;
  }

  .section {
    padding: 68px 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    align-items: flex-start;
    flex-direction: column;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid rgba(214, 180, 81, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .modal {
    padding: 92px 12px 24px;
  }

  .modal-panel {
    border-radius: 22px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }

  .header-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
    line-height: 0.98;
  }

  h3 {
    font-size: 1.55rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .cards-grid,
  .benefits-grid,
  .testimonial-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    min-height: 390px;
  }

  .phone-mockup {
    width: 92%;
  }

  .phone-content {
    min-height: 330px;
    padding: 20px;
  }

  .mockup-label {
    font-size: 2.35rem;
  }

  .copy-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
  }

  .home-page {
    padding: 126px 0 70px;
  }

  .home-shell {
    width: min(calc(100% - 24px), 760px);
  }

  .home-hero {
    padding: 30px 18px 24px;
    border-radius: 28px;
  }

  .home-avatar {
    width: 112px;
    height: 112px;
  }

  .home-title {
    font-size: clamp(2.55rem, 13vw, 3.75rem);
    line-height: 0.96;
  }

  .home-subtitle {
    font-size: 0.94rem;
  }

  .home-links {
    gap: 16px;
  }

  .home-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    min-height: auto;
  }

  .home-card-media,
  .home-card-visual {
    width: 100%;
    height: 132px;
  }

  .home-card-title {
    font-size: 1.55rem;
  }

  .home-card-text {
    font-size: 0.88rem;
  }

  .home-card-arrow {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.88rem;
  }

  .home-title {
    font-size: clamp(2.35rem, 14vw, 3.25rem);
  }

  .home-card-title {
    font-size: 1.42rem;
  }

  .home-card-text {
    font-size: 0.86rem;
  }

  .btn,
  .home-social {
    font-size: 0.86rem;
  }
}

/* Important: keep outside media queries */
.conditional-field.is-hidden,
.protocol-field.is-hidden {
  display: none !important;
}

.pix-checkout {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.pix-qr-card {
  display: grid;
  place-items: center;
  width: min(100%, 320px);
  margin: 0 auto;
  padding: 18px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(214, 180, 81, 0.32),
    0 18px 42px rgba(0, 0, 0, 0.45);
}

.pix-qr-image {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 12px;
}

.pix-qr-card-empty {
  min-height: 210px;
  color: var(--black);
  text-align: center;
}

.pix-qr-card-empty strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
}

.pix-qr-card-empty small {
  color: #333333;
}

.pix-main-button {
  width: min(100%, 360px);
  margin: 0 auto;
}

.pix-helper {
  max-width: 460px;
  margin: -10px auto 0;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
}

.payment-open-box,
.payment-confirmation-note {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(214, 180, 81, 0.18);
  border-radius: var(--radius-md);
  text-align: center;
}

.payment-open-box p,
.payment-confirmation-note p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
}

.card-payment-box {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
  padding: 22px 20px;
  background:
    linear-gradient(135deg, rgba(214, 180, 81, 0.12), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(214, 180, 81, 0.26);
  border-radius: var(--radius-md);
  text-align: center;
}

.card-payment-box p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.card-payment-box small {
  max-width: 460px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.card-payment-button {
  min-width: 220px;
}

.visually-hidden-copy-field {
  position: fixed;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .payment-result {
    padding: 22px 16px;
  }

  .pix-qr-card {
    width: min(100%, 280px);
    padding: 14px;
    border-radius: 18px;
  }

  .pix-qr-image {
    max-width: 230px;
  }

  .payment-open-box,
  .payment-confirmation-note,
  .card-payment-box {
    padding: 18px 14px;
  }

  .pix-main-button,
.payment-open-box .btn,
.payment-confirmation-note .btn,
.card-payment-button {
  width: 100%;
}
}

.offer-grid.is-single-offer {
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
}