:root {
  --bg: #0f1115;
  --panel: #151922;
  --panel-2: #1b2130;
  --surface: #ffffff;
  --surface-2: #f5f7fa;
  --text: #11141a;
  --text-soft: #5e6575;
  --white: #ffffff;
  --line: rgba(16, 20, 28, 0.08);
  --green: #7cff4f;
  --green-deep: #53d72b;
  --green-soft: rgba(124, 255, 79, 0.12);
  --shadow: 0 18px 50px rgba(9, 12, 18, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #ffffff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 17, 21, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #d3ffc3);
  box-shadow: 0 0 24px rgba(124, 255, 79, 0.7);
}

.brand-text span { color: var(--green); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

.main-nav a.active,
.main-nav a:hover { color: var(--white); }

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}
.menu-toggle{
  display:none;
  background:none;
  border:0;
  padding:0;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  margin:4px 0;
  border-radius:2px;
  background:#ffffff;
}
.mobile-nav{
  display:none;
  border-top:1px solid rgba(255,255,255,0.08);
  background:rgba(15,17,21,0.94);
}
.mobile-nav-inner{
  display:grid;
  gap:14px;
  padding:18px 0 24px;
  color:rgba(255,255,255,0.82);
}
.mobile-nav .btn{
  width:100%;
}
.header-actions .lang-switch{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  color:rgba(255,255,255,0.7);
}
.header-actions .lang-switch button{
  background:transparent;
  border:0;
  padding:0 3px;
  color:inherit;
  font:inherit;
  cursor:pointer;
  border-radius:6px;
}
.header-actions .lang-switch button.lang-active{
  background:rgba(255,255,255,0.12);
  color:#ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 180ms ease;
  border: 1px solid transparent;
}

.btn.is-loading{
  position:relative;
  cursor:wait;
  pointer-events:none;
  opacity:.8;
}
.btn.is-loading::after{
  content:"";
  position:absolute;
  right:18px;
  width:16px;
  height:16px;
  border-radius:50%;
  border:2px solid rgba(17,20,26,0.28);
  border-top-color:var(--text);
  animation:btn-spin .75s linear infinite;
}

.btn-sm { padding: 12px 18px; font-size: 14px; }
.btn-full { width: 100%; }
.btn-primary {
  background: linear-gradient(180deg, var(--green), var(--green-deep));
  color: #0c1008;
  box-shadow: 0 12px 30px rgba(124, 255, 79, 0.24);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(17, 20, 26, 0.12);
}
.btn-secondary:hover { background: rgba(17, 20, 26, 0.04); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(124,255,79,0.18), transparent 30%),
    radial-gradient(circle at 70% 50%, rgba(124,255,79,0.12), transparent 35%),
    linear-gradient(180deg, #0d1015 0%, #141925 100%);
  color: var(--white);
  padding: 38px 0 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.eyebrow-green { color: #4db52e; }

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero h1 { font-size: clamp(34px, 4.8vw, 56px); }
.hero-subtitle {
  margin: 14px 0 10px;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.03em;
}
.hero-text {
  max-width: 640px;
  color: rgba(255,255,255,0.76);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hero-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.85);
}
.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}
.hero-note {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.88);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.14);
}
.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.06);
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}
.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
}
.glow-1 {
  width: 260px;
  height: 260px;
  background: rgba(124,255,79,0.2);
  right: 60px;
  top: 70px;
}
.glow-2 {
  width: 200px;
  height: 200px;
  background: rgba(124,255,79,0.16);
  left: 40px;
  bottom: 60px;
}
.product-card {
  position: relative;
  width: min(100%, 430px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 34px;
  padding: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.product-image {
  aspect-ratio: 1.45/1;
  display: grid;
  place-items: center;
}
.product-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.camera-body {
  width: 310px;
  height: 150px;
  border-radius: 30px;
  background: linear-gradient(155deg, #1f2330 0%, #2a303f 48%, #141925 100%);
  position: relative;
  transform: rotate(-10deg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 22px 60px rgba(0,0,0,0.35);
}
.camera-lens {
  position: absolute;
  top: 35px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: radial-gradient(circle at 38% 38%, #55627d 0%, #151b26 56%, #090c11 100%);
  box-shadow: inset 0 0 0 8px #202633;
}
.lens-1 { left: 48px; }
.lens-2 { left: 130px; }
.camera-accent {
  position: absolute;
  width: 82px;
  height: 18px;
  right: 34px;
  top: 58px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green));
  opacity: 0.8;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tag, .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
}
.pill {
  background: var(--green-soft);
  color: #1e5510;
}

.section {
  padding: 110px 0;
}
.section-light {
  background: var(--surface-2);
}
.section-head {
  margin-bottom: 36px;
}
.section-head.narrow {
  max-width: 760px;
}
.section h2 {
  font-size: clamp(38px, 5vw, 58px);
}
.section-head p,
.content-panel p,
.stage-footnote,
.pricing-note,
.faq-list p,
.info-card p,
.feature-card p,
.offer-card p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 17px;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.bundle-card {
  padding: 26px 24px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.bundle-card h3 {
  margin: 0 0 14px;
}
.bundle-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: var(--text-soft);
}
.bundle-card li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  margin-right: 8px;
  transform: translateY(-1px);
}
.bundle-card-elite {
  background: linear-gradient(180deg, #f7fbff, #eef5ff);
}
.bundle-caption {
  margin: 0 0 10px;
  color: var(--text-soft);
  font-size: 14px;
}
.bundle-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-soft);
}

.grid {
  display: grid;
  gap: 22px;
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.feature-card,
.pricing-card,
.offer-card,
.details-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px;
}
.feature-card {
  padding: 28px;
}
.icon-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--green-deep));
  box-shadow: 0 0 0 8px rgba(124,255,79,0.12);
  margin-bottom: 22px;
}
.info-card h3,
.feature-card h3,
.pricing-card h3,
.offer-card h3,
.stage-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.split-large {
  grid-template-columns: 1.05fr 0.95fr;
}
.visual-panel {
  position: relative;
  min-height: 470px;
  border-radius: 34px;
  overflow: hidden;
}
.visual-panel .visual-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:left center;
  display:block;
}
.dark-panel {
  background: linear-gradient(180deg, #11151d, #1b2330);
  box-shadow: 0 30px 80px rgba(8, 11, 18, 0.24);
}
.screen-card {
  position: absolute;
  inset: 48px;
  border-radius: 22px;
  background: linear-gradient(180deg, #202938, #131924);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  padding: 18px;
}
.screen-top {
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 18px;
}
.screen-field {
  height: calc(100% - 72px);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.08) 49%, rgba(255,255,255,0.08) 51%, transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0 0),
    repeating-linear-gradient(0deg, #2a7b32 0 28px, #2f8b39 28px 56px);
}
.screen-bar {
  margin-top: 14px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(255,255,255,0.12));
}
.floating-chip {
  position: absolute;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  font-weight: 700;
}
.chip-1 { right: 30px; top: 32px; }
.chip-2 { left: 30px; bottom: 36px; }

.content-panel p { margin: 0 0 18px; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.feature-list li {
  position: relative;
  padding-left: 20px;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-deep);
}
.features-grid .feature-card {
  padding: 30px;
}

.academy-band {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f3 100%);
}
.academy-photo {
  position: relative;
  aspect-ratio: 1.15/1;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}
.academy-photo .academy-image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.player-1 { left: 22%; }
.player-2 { left: 46%; background: linear-gradient(180deg, #1d1f24 0 34%, #1a65f1 34% 70%, #15171c 70%); }
.player-3 { left: 66%; }

.stage-wrap {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 22px;
  align-items: center;
}
.stage-card {
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stage-card.featured {
  background: linear-gradient(180deg, #11151c 0%, #1b202a 100%);
  color: var(--white);
  border-color: rgba(124,255,79,0.16);
}
.stage-card p { margin: 0; line-height: 1.7; color: inherit; opacity: 0.78; }
.stage-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #245c14;
  font-size: 13px;
  font-weight: 800;
}
.stage-card.featured .stage-label {
  background: rgba(124,255,79,0.14);
  color: #bfffa6;
}
.stage-line {
  height: 2px;
  background: linear-gradient(90deg, var(--green-deep), rgba(124,255,79,0.1));
}
.stage-footnote { margin-top: 22px; max-width: 820px; }

.workflow-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}
.workflow-col { display: grid; gap: 16px; }
.workflow-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 28px;
}
.workflow-box {
  padding: 30px;
  border-radius: 24px;
  background: #12161f;
  color: var(--white);
  min-height: 120px;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
}
.workflow-box.accent {
  background: linear-gradient(180deg, #c9ffb9, #87ef68);
  color: #10210b;
}
.workflow-arrow {
  font-size: 32px;
  color: var(--green-deep);
  font-weight: 900;
}
.feature-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.offer-card {
  padding: 34px;
}
.offer-card:first-child {
  background: linear-gradient(180deg, #0f141a 0%, #182028 100%);
  color: var(--white);
  border-color: rgba(124,255,79,0.12);
}
.offer-card:first-child p,
.offer-card:first-child .small-note { color: rgba(255,255,255,0.78); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.offer-grid div {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
}
.offer-card.compact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #eff9eb 0%, #ffffff 100%);
}
.small-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}
.asterisk { color: var(--green); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.pricing-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured-card {
  border-color: rgba(124,255,79,0.28);
  box-shadow: 0 28px 60px rgba(109, 203, 61, 0.14);
}
.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.price {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.price-sub {
  margin-top: 10px;
  color: var(--text-soft);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
  color: var(--text-soft);
}
.pricing-features li {
  position: relative;
  padding-left: 20px;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-deep);
}
.pricing-note {
  margin-top: 20px;
}

.pricing-highlight {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--text);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0 24px;
  box-shadow: var(--shadow);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  padding: 22px 0;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 28px;
  font-weight: 400;
  color: #7f8797;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p {
  margin: 0 0 22px;
}

@keyframes btn-spin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}

.final-cta {
  background: linear-gradient(180deg, #11151c, #171d27);
  color: var(--white);
}
.final-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.final-cta .eyebrow { color: #9bff7a; }
.final-cta h2 {
  max-width: 760px;
}

.offer-form {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.offer-grid-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.offer-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
}
.offer-form input,
.offer-form textarea {
  border-radius: 18px;
  border: 1px solid rgba(16, 20, 28, 0.14);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.offer-form input:focus,
.offer-form textarea:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px var(--green-soft);
  background: #ffffff;
}
.offer-message textarea {
  resize: vertical;
  min-height: 120px;
}
.offer-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.offer-success {
  margin: 0;
  color: var(--green-deep);
  font-weight: 600;
}
.offer-error {
  margin: 0;
  color: #e64545;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .grid-4,
  .pricing-grid,
  .offer-wrap,
  .split,
  .split-large,
  .hero-grid,
  .stage-wrap {
    grid-template-columns: 1fr;
  }
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav:not([hidden]) { display: block; }
  .hero-visual { min-height: 280px; }
  .workflow-panel { grid-template-columns: 1fr; }
  .workflow-arrow { transform: rotate(90deg); justify-self: start; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 84px 0; }
  .hero { padding-bottom: 74px; }
  .hero-points,
  .feature-list.two-col,
  .offer-grid { grid-template-columns: 1fr; }
  .site-header .btn-sm { display: none; }
  .header-actions { gap: 10px; }
  .product-card { padding: 22px; }
  .camera-body {
    width: 240px;
    height: 118px;
  }
  .camera-lens { width: 48px; height: 48px; top: 28px; }
  .lens-1 { left: 34px; }
  .lens-2 { left: 98px; }
  .camera-accent { width: 62px; right: 24px; top: 48px; }
  .screen-card { inset: 26px; }
  .final-cta-wrap { flex-direction: column; align-items: flex-start; }
  .bundle-grid {
    grid-template-columns: 1fr;
  }
  .offer-grid-form {
    grid-template-columns: 1fr;
  }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
}
