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

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --green-50: #ecfdf5;
  --green-100: #dcfce7;
  --green-600: #059669;
  --green-700: #047857;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-600: #9333ea;
  --yellow-400: #fbbf24;
  --yellow-900: #713f12;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 35px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 25px 50px rgba(15, 23, 42, 0.18);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
}

.page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--white);
}

.container {
  width: min(100% - 32px, 1280px);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

section {
  width: 100%;
  max-width: 100%;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin: 24px 0 30px;
}

.hero-logo img {
  width: 240px;
  max-width: 80%;
  height: auto;
  object-fit: contain;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 0;
  margin: 0 auto;
}

.logo {
  width: 160px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  border-radius: 12px;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
  will-change: transform;
}

.btn:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-small {
  padding: 10px 18px;
  font-size: 15px;
}

.btn-large {
  padding: 16px 30px;
  font-size: 18px;
}

.btn-white {
  color: var(--blue-600);
  background: var(--white);
  padding: 16px 30px;
  font-size: 18px;
}

.btn-white:hover {
  color: var(--blue-700);
  background: var(--gray-100);
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-50), var(--white) 52%, var(--blue-50));
}

.hero-grid {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 28px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  color: var(--gray-500);
  font-size: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.badge-green {
  color: #166534;
  background: var(--green-100);
}

.badge-blue {
  color: #1e40af;
  background: var(--blue-100);
}

.badge-purple {
  color: #6b21a8;
  background: var(--purple-100);
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.text-blue {
  color: var(--blue-600);
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--gray-600);
}

.risk-note {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--gray-500);
  text-align: center;
}

.hero-checks span,
.cta-checks div::first-letter {
  color: var(--green-600);
}

.portfolio-card-wrap {
  position: relative;
}

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.portfolio-header,
.portfolio-item,
.testimonial-footer,
.person {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-header {
  gap: 16px;
  margin-bottom: 24px;
}

.portfolio-header h2 {
  margin: 0;
  font-size: 20px;
}

.positive,
.portfolio-price span,
.gain strong {
  color: var(--green-600);
}

.portfolio-list {
  display: grid;
  gap: 16px;
}

.portfolio-item {
  padding: 16px;
  border-radius: 14px;
}

.portfolio-item.green {
  background: var(--green-50);
}

.portfolio-item.blue {
  background: var(--blue-50);
}

.portfolio-item.purple {
  background: var(--purple-50);
}

.portfolio-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-dot,
.person span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-600);
  font-weight: 900;
  flex: 0 0 auto;
}

.portfolio-left strong,
.person strong {
  display: block;
}

.portfolio-left span:not(.ticker-dot),
.portfolio-price span,
.person small,
.gain small {
  display: block;
  color: var(--gray-500);
  font-size: 13px;
}

.portfolio-price {
  text-align: right;
}

.floating-icon {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow-400);
  color: var(--yellow-900);
  font-size: 34px;
  font-weight: 900;
  box-shadow: var(--shadow-lg);
}

.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--gray-50);
}

.section-white {
  background: var(--white);
}

.lazy-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--gray-600);
  font-size: 20px;
  line-height: 1.65;
}

.feature-grid,
.sponsor-grid,
.testimonial-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simple-card,
.icon-card,
.testimonial-card,
.company-card,
.community-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.simple-card,
.icon-card {
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.simple-card:hover,
.icon-card:hover,
.image-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.simple-card h3,
.icon-card h3,
.image-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.simple-card p,
.icon-card p,
.image-card p,
.company-card p,
.testimonial-card p,
.community-box p {
  margin: 0;
  color: var(--gray-600);
}

.company-card {
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.company-card h3 {
  margin: 0 0 16px;
  font-size: 28px;
}

.company-card p + p {
  margin-top: 14px;
}

.legal-note,
.final-legal {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--gray-500);
}

.stat-mini-grid,
.community-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-mini-grid div,
.community-stats div {
  background: var(--blue-50);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}

.stat-mini-grid strong,
.big-stats strong,
.community-stats strong,
.stats-grid strong {
  display: block;
  color: var(--blue-600);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-mini-grid span,
.big-stats span,
.community-stats span,
.stats-grid span {
  color: var(--gray-600);
  font-size: 14px;
}

.image-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.image-card img {
  width: 100%;
  height: 200px;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
  background: var(--gray-50);
  padding: 10px;
}

.image-card div {
  padding: 26px;
  text-align: center;
}

.center {
  text-align: center;
}

.mt-large {
  margin-top: 44px;
}

.big-stats {
  width: 100%;
  max-width: 100%;
  margin: 0 0 36px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue-50), var(--gray-50));
}

.big-stats strong {
  font-size: 40px;
}

.big-stats small {
  display: block;
  color: var(--gray-500);
  margin-top: 4px;
}

.icon-card {
  display: grid;
  gap: 12px;
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 21px;
}

.icon-box.blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.icon-box.green {
  background: var(--green-100);
  color: var(--green-600);
}

.icon-box.purple {
  background: var(--purple-100);
  color: var(--purple-600);
}

.icon-box.yellow {
  background: #fef3c7;
  color: #b45309;
}

.icon-box.indigo {
  background: #e0e7ff;
  color: #4f46e5;
}

.icon-box.red {
  background: #fee2e2;
  color: #dc2626;
}

.widget-section {
  padding: 48px 0;
  background: var(--white);
}

.widget-card {
  width: min(100% - 32px, 960px);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.widget-card iframe {
  width: 100% !important;
  max-width: 770px !important;
  min-width: 0 !important;
  min-height: 900px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 0;
}

.iframe-section {
  padding: 48px 0;
  background: var(--white);
}

.iframe-card {
  width: min(100%, 960px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.iframe-card iframe {
  width: 100%;
  max-width: 770px;
  min-width: 0;
  min-height: 900px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 0;
}

.stats-strip {
  padding: 74px 0;
  background: var(--blue-600);
}

.stats-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.stats-grid strong {
  color: var(--white);
  font-size: 42px;
}

.stats-grid span {
  color: var(--blue-100);
  font-size: 16px;
}

.testimonial-card {
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.stars {
  color: var(--yellow-400);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 17px;
}

.testimonial-card p {
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.7;
  font-size: 14px;
}

.person {
  justify-content: flex-start;
  gap: 12px;
}

.person span {
  background: var(--blue-600);
}

.gain {
  text-align: right;
}

.review-tag {
  display: inline-block;
  margin-top: 18px;
  padding: 12px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.review-tag:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.community-box {
  max-width: 940px;
  margin: 48px auto 0;
  padding: 34px;
  text-align: center;
  border-color: var(--blue-200);
  background: var(--blue-50);
}

.community-box h3 {
  margin: 0 0 14px;
  color: #1e3a8a;
  font-size: 24px;
}

.community-stats {
  width: 100%;
  max-width: 100%;
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.community-stats div {
  background: var(--white);
}

.final-cta {
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
}

.final-cta-inner {
  width: min(100% - 32px, 900px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.03em;
}

.final-cta p {
  margin: 0 auto 26px;
  color: var(--blue-100);
  font-size: 20px;
}

.final-cta .final-cta-action,
.final-cta-action,
.final-cta .final-cta-button-wrap,
.final-cta-button-wrap {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  align-items: center !important;
  row-gap: 10px !important;
  margin-top: 24px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.final-cta .final-cta-button,
.final-cta-button {
  grid-column: 1 / -1 !important;
  display: inline-flex !important;
  width: auto !important;
  max-width: 100% !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  color: #111827 !important;
  text-decoration: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.final-cta .final-cta-button:hover,
.final-cta-button:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

.final-cta .final-risk-note-wrap,
.final-risk-note-wrap {
  grid-column: 1 / -1 !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
  margin: 0 auto !important;
}

.final-cta .final-risk-note,
.final-risk-note {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  text-align: center !important;
  margin: 0 auto !important;
  clear: both !important;
}

.cta-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 30px;
  margin-top: 28px;
  color: var(--blue-100);
  font-size: 14px;
}

.final-legal {
  margin-top: 28px !important;
  max-width: 760px;
  color: var(--blue-200) !important;
  font-size: 10px !important;
}

.final-legal a {
  color: #ffffff;
  text-decoration: underline;
  opacity: 0.9;
}

.final-legal a:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .company-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card-wrap {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-grid,
  .sponsor-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container,
  .final-cta-inner {
    width: calc(100% - 24px);
  }

  .header-inner {
    min-height: 60px;
  }

  .logo {
    width: 128px;
  }

  .btn-small {
    padding: 9px 13px;
    font-size: 14px;
  }

  .hero {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-subtitle,
  .section-heading p {
    font-size: 17px;
  }

  .hero-subtitle,
  .section-heading p,
  .testimonial-card p {
    overflow-wrap: anywhere;
  }

  .hero-checks,
  .cta-checks {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-card {
    padding: 22px;
  }

  .floating-icon {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .feature-grid,
  .sponsor-grid,
  .testimonial-grid,
  .big-stats,
  .stats-grid,
  .stat-mini-grid,
  .community-stats {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .company-card,
  .community-box,
  .big-stats,
  .testimonial-card,
  .simple-card,
  .icon-card,
  .image-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .company-card,
  .community-box,
  .big-stats {
    padding: 24px;
  }

  .image-card img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .btn,
  .btn-large,
  .btn-white {
    width: 100%;
    max-width: 420px;
  }

  .hero-cta {
    width: 100%;
  }

  .widget-card {
    width: calc(100% - 24px);
  }

  .widget-card iframe,
  .iframe-card iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 760px;
  }

  .iframe-card {
    width: 100%;
    max-width: 100%;
  }

  .final-cta {
    padding: 62px 0;
  }

  .final-cta p {
    font-size: 17px;
  }

  .final-cta .final-cta-button,
  .final-cta-button {
    width: 100% !important;
    max-width: 420px !important;
  }
}

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

.final-cta span.risk-note,
.final-cta .risk-note,
.final-cta .final-risk-note,
.final-cta .final-risk-note-wrap span {
  color: #ffffff !important;
}