/* ============================================
   Sean Perry Wins — Brand Stylesheet
   Colors: Black + Teal (#00d9cc) + White
   ============================================ */

:root {
  --teal:        #00d9cc;
  --teal-dim:    #00b5aa;
  --teal-glow:   rgba(0, 217, 204, 0.18);
  --teal-soft:   rgba(0, 217, 204, 0.08);
  --black:       #000000;
  --black-mid:   #080808;
  --card:        #0d0d0d;
  --card-border: #1a1a1a;
  --white:       #ffffff;
  --off-white:   #e8e8e8;
  --gray:        #888888;
  --gray-light:  #bbbbbb;
  --font-head:   'Bebas Neue', 'Oswald', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: #5aeae4; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }

/* ---- Disclaimer Bar ---- */
.disclaimer-bar {
  background: #000;
  border-bottom: 1px solid #111;
  padding: 9px 0;
  text-align: center;
}
.disclaimer-bar p { font-size: 11px; color: #555; line-height: 1.4; letter-spacing: .3px; }
.disclaimer-bar strong { color: var(--teal); }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #111;
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 12px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  background: #5aeae4 !important;
  box-shadow: 0 0 20px rgba(0,217,204,.35) !important;
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }

/* ---- Hero ---- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

/* Teal radial glow from center-right */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,217,204,.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Diagonal teal accent line */
.hero-line {
  position: absolute;
  top: 0;
  right: 200px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,217,204,.25), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  width: 100%;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,217,204,.3);
  border-radius: 2px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.hero-tag span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(64px, 9vw, 120px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-title .teal { color: var(--teal); }
.hero-title .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-desc {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 500px;
  line-height: 1.75;
  margin: 24px 0 36px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-teal {
  background: var(--teal);
  color: var(--black);
}
.btn-teal:hover {
  background: #5aeae4;
  color: var(--black);
  box-shadow: 0 0 30px rgba(0,217,204,.4);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* Hero logo (right side) */
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-logo-wrap img {
  width: clamp(200px, 22vw, 320px);
  height: clamp(200px, 22vw, 320px);
  border-radius: 50%;
  filter: drop-shadow(0 0 40px rgba(0,217,204,.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero divider stats */
.hero-divider {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid #111;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hstat-num {
  font-family: var(--font-head);
  font-size: 42px;
  letter-spacing: 1px;
  color: var(--teal);
  line-height: 1;
}
.hstat-label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ---- Section Labels ---- */
.label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--teal);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
}
.section-title .teal { color: var(--teal); }
.section-title .outline {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}

.section-sub {
  margin-top: 16px;
  color: var(--gray);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.75;
}

/* ---- About ---- */
.about { background: var(--black-mid); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-logo-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-ring {
  position: relative;
  width: 360px;
  height: 360px;
}
.about-logo-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(0,217,204,.15);
}
.about-logo-ring::after {
  content: '';
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  border: 1px dashed rgba(0,217,204,.07);
}
.about-logo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 50px rgba(0,217,204,.25));
}

.about-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.5;
}
.about-list li::before {
  content: '▸';
  color: var(--teal);
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ---- Plans ---- */
.plans { background: var(--black); }

.plans-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.plans-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-top: none;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  max-width: 66.8%;
  margin: 0 auto;
}

.plan-card {
  background: var(--card);
  padding: 40px 32px;
  position: relative;
  transition: background .2s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { background: #111; }
.plan-card.featured {
  background: #050f0e;
}

.plan-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: var(--teal);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 3px;
  padding: 6px;
}
.plan-card.featured { padding-top: 54px; }

.plan-name {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.plan-card.featured .plan-name { color: var(--teal); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan-price-amount {
  font-family: var(--font-head);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--teal);
  line-height: 1;
}
.plan-price-period {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.plan-badge-limited {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.plan-tagline {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.5;
}

.plan-divider {
  height: 1px;
  background: var(--card-border);
  margin-bottom: 24px;
}
.plan-card.featured .plan-divider { background: rgba(0,217,204,.2); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.plan-features li {
  font-size: 14px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 13px;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .2s;
  border: 1px solid rgba(0,217,204,.3);
  color: var(--teal);
}
.plan-btn:hover {
  background: var(--teal);
  color: var(--black);
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(0,217,204,.3);
}
.plan-card.featured .plan-btn {
  background: var(--teal);
  color: var(--black);
  border-color: var(--teal);
}
.plan-card.featured .plan-btn:hover {
  background: #5aeae4;
  box-shadow: 0 0 30px rgba(0,217,204,.4);
}

/* ---- How It Works ---- */
.how { background: var(--black-mid); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
  opacity: .3;
}

.step {
  padding: 0 20px;
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(0,217,204,.4);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ---- Social ---- */
.social-section { background: var(--black); }

.social-row {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.social-card {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  transition: border-color .2s, box-shadow .2s;
  color: var(--white);
}
.social-card:hover {
  border-color: rgba(0,217,204,.4);
  box-shadow: 0 0 24px rgba(0,217,204,.08);
  color: var(--white);
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.social-icon.ig { background: rgba(193,53,132,.12); }
.social-icon.tw { background: rgba(255,255,255,.07); }
.social-icon.yt { background: rgba(255,0,0,.1); }
.social-icon.win { background: rgba(0,217,204,.1); }
.social-icon.tg { background: rgba(41,168,232,.12); }

.social-name {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.social-handle { font-size: 13px; color: var(--teal); margin-top: 4px; }

/* ---- SMS Opt-In ---- */
.optin-section { background: var(--black-mid); }

.optin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.optin-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.optin-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
}

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

/* ---- CTA Band ---- */
.cta-band {
  background: var(--black-mid);
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,217,204,.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .section-sub { margin: 0 auto 36px; text-align: center; }

/* ---- Disclaimer Section ---- */
.disclaimer-section {
  background: #050505;
  padding: 40px 0;
  border-top: 1px solid #111;
}
.disclaimer-section p {
  font-size: 12px;
  color: #444;
  line-height: 1.85;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.disclaimer-section p + p { margin-top: 10px; }
.disclaimer-section strong { color: #666; }

/* ---- Footer ---- */
.footer {
  background: var(--black);
  border-top: 1px solid #111;
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #111;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.footer-brand-logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand-logo-text span { color: var(--teal); }
.footer-brand p { font-size: 13px; color: var(--gray); line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--gray); transition: color .2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: #333; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: #333; }
.footer-bottom-links a:hover { color: var(--gray); }

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-row::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-logo-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-logo-side { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 72px 0 0 0; background: var(--black); padding: 36px 24px; gap: 28px; z-index: 99; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .steps-row { grid-template-columns: 1fr; }
  .hero-divider { gap: 28px; }
}
