:root {
  --bg: #f4f4f1;
  --white: #ffffff;
  --text: #0f0f0d;
  --muted: #707070;
  --line: rgba(15,15,13,.1);
  --yellow: #efbb27;
  --yellow-deep: #d89b00;
  --shadow: 0 24px 60px rgba(20, 20, 20, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9f9f6 0%, #f2f1ed 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 249, 246, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 15, 13, 0.06);
}
.slim-header { position: relative; }
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { width: 168px; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.72;
  position: relative;
}
.desktop-nav a.active,
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  border-radius: 999px;
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 12px 16px 18px;
  background: rgba(255,255,255,.95);
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
}
.mobile-nav.open { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: .28s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffd45d 100%);
  color: #111;
  box-shadow: 0 18px 35px rgba(239, 187, 39, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(239, 187, 39, 0.4);
}
.btn-outline {
  background: transparent;
  border-color: rgba(15,15,13,.15);
}
.btn-outline:hover {
  background: #fff;
  border-color: rgba(15,15,13,.25);
}

.hero-section {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 70px 1.05fr .95fr;
  align-items: center;
  gap: 20px;
  padding: 48px 0 56px;
}
.hero-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.hero-socials a,
.hero-socials span {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text);
}
.hero-socials span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}
.eyebrow {
  color: #8f8f87;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 14px;
}
.hero-copy h1,
.inner-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: .95;
  margin: 0 0 18px;
  max-width: 700px;
}
.hero-copy h1 span { color: var(--yellow); display: block; }
.hero-text,
.inner-hero p {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.video-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}
.play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(239, 187, 39, 0.25);
}
.hero-stats {
  margin-top: 42px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-stats article {
  min-width: 150px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15,15,13,.06);
}
.hero-stats strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.hero-stats span { color: var(--muted); font-size: .93rem; }

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yellow-panel {
  position: absolute;
  right: 56px;
  width: 320px;
  height: 400px;
  background: linear-gradient(135deg, var(--yellow) 0%, #ffd356 100%);
}
.glass-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,15,13,.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: 28px;
}
.investor-card {
  position: relative;
  width: min(420px, 92%);
  padding: 28px;
}
.card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.mini-logo {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #111 0%, #444 100%);
  color: var(--yellow);
}
.card-head h3 { margin: 0 0 4px; font-size: 1.2rem; }
.card-head p { margin: 0; color: var(--muted); }
.ticket-stack {
  display: grid;
  gap: 14px;
}
.ticket {
  border: 1px solid rgba(15,15,13,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fbfbf8 100%);
}
.ticket span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  margin-bottom: 6px;
}
.ticket strong {
  display: block;
  font-size: 1.4rem;
}
.ticket-lg { padding: 18px 20px; }
.ticket-sm { padding: 16px 20px; }
.graph-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 24px;
  height: 84px;
}
.graph-bars span {
  width: 16px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--yellow) 0%, #f2ddb0 100%);
  animation: bars 2.3s ease-in-out infinite;
}
.graph-bars span:nth-child(1) { height: 42px; }
.graph-bars span:nth-child(2) { height: 78px; animation-delay: .2s; }
.graph-bars span:nth-child(3) { height: 58px; animation-delay: .35s; }
.graph-bars span:nth-child(4) { height: 68px; animation-delay: .55s; }
.badge-card {
  position: absolute;
  right: 0;
  bottom: 80px;
  padding: 18px 22px;
}
.badge-card p { margin: 0 0 8px; color: var(--muted); }
.badge-card strong { font-size: 1rem; }
.floating { animation: float 4.5s ease-in-out infinite; }

.feature-strip { padding: 12px 0 80px; }
.feature-grid,
.content-grid {
  display: grid;
  gap: 20px;
}
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card,
.content-card,
.show-card,
.preview-box {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,15,13,.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.feature-card {
  padding: 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover,
.content-card:hover,
.show-card:hover,
.preview-box:hover { transform: translateY(-6px); }
.feature-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(239, 187, 39, .15);
  color: #8a6400;
  font-weight: 800;
  margin-bottom: 16px;
}
.feature-card h3,
.content-card h3,
.show-card h3 { margin: 0 0 10px; font-size: 1.24rem; }
.feature-card p,
.content-card p,
.show-card p,
.steps-grid p,
.clean-list li { color: var(--muted); line-height: 1.75; }

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0 80px;
}
.section-copy h2,
.showcase-copy h2,
.cta-box h2,
.content-card.large-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  margin: 0 0 16px;
}
.section-copy p { color: var(--muted); line-height: 1.8; }
.text-link { font-weight: 700; margin-top: 16px; display: inline-block; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.steps-grid article {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,15,13,.08);
}
.steps-grid strong {
  font-size: 1.35rem;
  color: var(--yellow-deep);
}
.steps-grid h4 { margin: 14px 0 10px; font-size: 1.12rem; }

.showcase { padding: 20px 0 90px; }
.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 20px;
  margin-top: 28px;
}
.show-card { padding: 28px; min-height: 230px; }
.show-card.tall { min-height: 360px; display: flex; align-items: center; justify-content: center; }
.show-card.accent { background: linear-gradient(135deg, #ffcf48 0%, #f0b50d 100%); }
.show-card ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.show-card li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15,15,13,.04);
  font-weight: 700;
}
.mock-window {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15,15,13,.08);
  padding: 18px;
}
.window-top { display: flex; gap: 8px; margin-bottom: 18px; }
.window-top span {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(15,15,13,.18);
}
.mock-balance {
  background: linear-gradient(135deg, #111 0%, #2d2d2a 100%);
  color: #fff;
  padding: 24px;
  border-radius: 22px;
}
.mock-balance small { display: block; opacity: .7; margin-bottom: 8px; }
.mock-balance strong { font-size: 2rem; }
.mock-withdraw {
  margin-top: 18px;
  padding: 18px;
  text-align: center;
  background: linear-gradient(135deg, var(--yellow) 0%, #ffd767 100%);
  border-radius: 18px;
  font-weight: 800;
}

.cta-section { padding: 10px 0 90px; }
.cta-box {
  padding: 34px 38px;
  border-radius: 32px;
  background: linear-gradient(135deg, #10100f 0%, #2b2b28 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-box .btn-outline { color: #fff; border-color: rgba(255,255,255,.22); }
.cta-box .eyebrow { color: rgba(255,255,255,.55); }

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid rgba(15,15,13,.08);
  background: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  gap: 24px;
}
.footer-logo { width: 180px; margin-bottom: 18px; }
.site-footer p,
.site-footer a { color: var(--muted); line-height: 1.8; display: block; }
.site-footer h4 { margin: 0 0 12px; }

.inner-page { padding: 56px 0 90px; }
.inner-hero { margin-bottom: 34px; }
.two-col { grid-template-columns: repeat(2, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }
.content-card { padding: 28px; }
.accent-card { background: linear-gradient(135deg, #ffcf48 0%, #f9bf1d 100%); }
.large-card { margin-top: 20px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.tag-row span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(15,15,13,.05);
  font-weight: 600;
}
.clean-list { padding-left: 18px; }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.preview-box {
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.preview-box::before,
.preview-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.preview-box::before {
  width: 180px;
  height: 180px;
  background: rgba(239,187,39,.2);
  top: -40px;
  right: -20px;
}
.preview-box::after {
  width: 120px;
  height: 120px;
  background: rgba(15,15,13,.07);
  bottom: -10px;
  left: -20px;
}
.preview-box.accent { background: linear-gradient(135deg, #ffcf48 0%, #f0b50d 100%); }
.preview-box.dark { background: linear-gradient(135deg, #10100f 0%, #353531 100%); }
.preview-box.wide { grid-column: span 3; min-height: 190px; }
.contact-form { display: grid; gap: 14px; }
.contact-form input,
.contact-form textarea,
.login-form input {
  width: 100%;
  border: 1px solid rgba(15,15,13,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  padding: 15px 16px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.login-form input:focus { border-color: rgba(239,187,39,.9); }

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 16px;
  background:
    radial-gradient(circle at top right, rgba(239, 187, 39, .25), transparent 30%),
    linear-gradient(180deg, #f7f7f3 0%, #f1f0ec 100%);
}
.login-shell {
  width: min(1040px, 100%);
}
.login-brand { display: inline-block; margin-bottom: 24px; }
.login-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  padding: 34px;
}
.login-form { display: grid; gap: 14px; align-content: center; }

.cursor-glow {
  position: fixed;
  inset: auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(239, 187, 39, .18), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: .75;
  z-index: 0;
  filter: blur(8px);
}
main, header, footer { position: relative; z-index: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { animation: float 5.4s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
@keyframes bars {
  0%, 100% { transform: scaleY(.88); opacity: .85; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 1080px) {
  .hero-section { grid-template-columns: 1fr; gap: 26px; min-height: auto; padding-top: 36px; }
  .hero-socials { display: none; }
  .hero-visual { min-height: 520px; }
  .split-section,
  .showcase-grid,
  .login-panel,
  .footer-grid,
  .three-col { grid-template-columns: 1fr; }
  .two-col,
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .desktop-nav,
  .nav-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .hero-copy h1,
  .inner-hero h1 { line-height: 1.02; }
  .hero-visual { min-height: 420px; }
  .yellow-panel { width: 230px; height: 280px; right: 10px; }
  .investor-card { padding: 20px; }
  .badge-card { right: 6px; bottom: 12px; }
  .feature-grid,
  .two-col,
  .preview-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .preview-box.wide { grid-column: auto; }
  .cta-box { padding: 28px 22px; }
  .cta-box,
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .hero-stats article { min-width: 100%; }
  .site-header { position: relative; }
}


.single-hero{min-height:calc(100vh - 84px);padding-bottom:72px;}
.compact-footer{padding-top:30px;}
.footer-grid-simple{grid-template-columns:1.4fr .8fr .7fr;}
.inner-simple{padding:120px 0 140px;min-height:calc(100vh - 84px - 160px);display:flex;flex-direction:column;justify-content:center;}
@media (max-width: 900px){.footer-grid-simple{grid-template-columns:1fr;}}


.hero-social-btn,
.mobile-register,
.footer-register {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.hero-social-btn {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.mobile-register {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-weight: 600;
}

.footer-register {
  font-weight: 600;
  margin-top: 4px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 13, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: .28s ease;
  z-index: 120;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(480px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,15,13,.08);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(20,20,20,.16);
  padding: 30px;
  position: relative;
  transform: translateY(14px) scale(.98);
  transition: .28s ease;
  backdrop-filter: blur(14px);
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(15,15,13,.08);
  background: #fff;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.modal-eyebrow {
  margin: 0 0 10px;
  color: #8f8f87;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}

.modal-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.modal-text {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.register-form {
  display: grid;
  gap: 16px;
}

.register-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: #2a2a26;
}

.register-form input {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(15,15,13,.1);
  background: #fff;
  padding: 0 16px;
  outline: none;
  transition: .25s ease;
}

.register-form input:focus {
  border-color: rgba(239, 187, 39, .95);
  box-shadow: 0 0 0 4px rgba(239, 187, 39, .12);
}

.modal-submit {
  width: 100%;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .modal-card {
    padding: 24px 18px;
    border-radius: 24px;
  }
}

.container{
  max-width: 1100px !important;
}

.single-hero{
  padding-top: 60px;
  padding-bottom: 60px;
}

/* simple footer */
.compact-footer{
  padding:40px 0;
}

.footer-grid-simple{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.footer-grid-simple h4{
  margin-bottom:8px;
}

.footer-grid-simple a,
.footer-grid-simple button{
  display:block;
  color:#555;
  margin-bottom:4px;
}

.container{
  max-width: 1400px !important;
}


/* final layout adjustments */
.container{
  max-width: 1560px !important;
}

.single-hero{
  min-height: calc(100vh - 90px);
  align-items: center;
  gap: 56px;
}

.hero-copy{
  max-width: 760px;
}

.hero-copy h1{
  max-width: 760px;
}

.hero-text{
  max-width: 700px;
}

.hero-visual{
  min-width: 520px;
}

.hero-stats{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  max-width: 100% !important;
  width: 100%;
}

.hero-stats article{
  min-width: 0 !important;
}

.mobile-login-link{
  display:block;
  width:100%;
  text-align:left;
  padding:12px 0;
  font-weight:600;
  color:inherit;
  text-decoration:none;
}

.simple-footer{
  padding: 28px 0 34px;
  border-top: 1px solid rgba(15,15,13,.08);
}

.simple-footer-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.simple-footer p{
  margin:0;
  color:#6f6f67;
  font-size:14px;
  letter-spacing:.02em;
}

@media (max-width: 1100px){
  .container{
    max-width: 100% !important;
  }

  .hero-stats{
    grid-template-columns: 1fr !important;
  }

  .hero-visual{
    min-width: 0;
  }
}


/* HERO FULL WIDTH IMPROVEMENT */
.hero-section.container{
  max-width: 1800px !important;
  padding-left: 120px !important;
  padding-right: 120px !important;
}

/* make hero layout wider */
.single-hero{
  display:flex;
  justify-content:space-between;
  gap:80px;
}

/* left text expand */
.hero-copy{
  max-width: 900px;
}

/* right card bigger */
.hero-visual{
  min-width: 600px;
}

/* cards wider and cleaner */
.hero-stats{
  grid-template-columns: repeat(3, 1fr) !important;
  gap:24px !important;
}

.hero-stats article{
  padding:22px !important;
  border-radius:20px !important;
  background:#f8f8f6;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* bigger numbers */
.hero-stats strong{
  font-size:20px;
}



/* EXACT HERO PADDING FIX */
.hero-section.container{
  padding-left: 10px !important;
  padding-right: 10px !important;
}



/* === FULL PAGE WIDE + POLISHED MINIMAL REFINEMENT === */
body{
  background: linear-gradient(180deg, #f7f6f2 0%, #f6f5f0 100%);
}

.site-header .container,
.simple-footer .container,
.compact-footer .container{
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.hero-section.container{
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.nav-wrap{
  min-height: 88px;
}

.desktop-nav{
  gap: 38px;
}

.desktop-nav a{
  letter-spacing: .08em;
}

.single-hero{
  min-height: calc(100vh - 88px);
  gap: 88px;
  align-items: center;
}

.hero-copy{
  max-width: 980px !important;
}

.hero-copy h1{
  max-width: 980px !important;
  font-size: clamp(4.6rem, 8vw, 7.4rem) !important;
  line-height: .92 !important;
  letter-spacing: -.045em;
}

.hero-text{
  max-width: 740px !important;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #6d6d67;
}

.hero-visual{
  min-width: 690px !important;
  display: flex;
  justify-content: center;
}

.investor-card{
  width: min(100%, 700px) !important;
  border-radius: 34px !important;
  box-shadow: 0 26px 70px rgba(23, 23, 21, 0.08) !important;
}

.ticket{
  border-radius: 24px !important;
  border: 1px solid rgba(15,15,13,.06) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.badge-card{
  border-radius: 26px !important;
  box-shadow: 0 20px 45px rgba(22,22,20,.08) !important;
}

.hero-actions{
  gap: 18px;
}

.btn{
  min-height: 56px;
  border-radius: 18px !important;
}

.btn-primary{
  padding-left: 30px !important;
  padding-right: 30px !important;
  box-shadow: 0 16px 32px rgba(239, 187, 39, .22) !important;
}

.video-link{
  gap: 14px;
  font-weight: 700;
}

.play-icon{
  width: 56px !important;
  height: 56px !important;
}

.hero-stats{
  grid-template-columns: repeat(3, minmax(220px, 1fr)) !important;
  gap: 22px !important;
  max-width: 900px !important;
}

.hero-stats article{
  padding: 24px 22px !important;
  min-height: 126px;
  border: 1px solid rgba(15,15,13,.05);
  background: rgba(255,255,255,.55) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(15,15,13,.05) !important;
}

.hero-stats article span{
  display: block;
  max-width: 140px;
  line-height: 1.45;
  color: #6f6f67;
}

.simple-footer{
  background: transparent;
  border-top: 1px solid rgba(15,15,13,.06);
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.simple-footer p{
  color: #86867f;
  font-size: 13px;
  letter-spacing: .04em;
}

@media (max-width: 1400px){
  .single-hero{
    gap: 56px;
  }
  .hero-visual{
    min-width: 580px !important;
  }
  .hero-copy h1{
    font-size: clamp(4rem, 7vw, 6.3rem) !important;
  }
}

@media (max-width: 1100px){
  .site-header .container,
  .simple-footer .container,
  .compact-footer .container,
  .hero-section.container{
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .single-hero{
    gap: 38px;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-text{
    max-width: 100% !important;
  }

  .hero-visual{
    min-width: 0 !important;
    width: 100%;
  }

  .investor-card{
    width: 100% !important;
  }

  .hero-stats{
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  .hero-stats article span{
    max-width: 100%;
  }
}


/* subtle reduce side spacing */
.site-header .container,
.hero-section.container,
.simple-footer .container{
  padding-left: 18px !important;
  padding-right: 18px !important;
}


/* ===== 80% WIDTH + MINIMAL CLEAN LOOK ===== */
body{
  background: #f7f6f2 !important;
}

.site-header{
  background: #f7f6f2 !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.site-header .container,
.hero-section.container,
.simple-footer .container,
.compact-footer .container{
  width: min(80%, 1480px) !important;
  max-width: min(80%, 1480px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nav-wrap{
  min-height: 82px !important;
}

.single-hero{
  gap: 64px !important;
  min-height: calc(100vh - 82px) !important;
  align-items: center !important;
}

.hero-copy{
  max-width: 760px !important;
}

.hero-copy h1{
  max-width: 760px !important;
  font-size: clamp(4rem, 6.2vw, 6rem) !important;
  line-height: .95 !important;
}

.hero-text{
  max-width: 620px !important;
  font-size: 1rem !important;
  color: #666661 !important;
}

.hero-visual{
  min-width: 560px !important;
}

.investor-card,
.badge-card,
.hero-stats article,
.ticket{
  backdrop-filter: none !important;
}

.investor-card{
  width: min(100%, 620px) !important;
  border-radius: 28px !important;
  background: #fcfbf7 !important;
  box-shadow: 0 16px 40px rgba(15,15,13,.06) !important;
  border: 1px solid rgba(15,15,13,.06) !important;
}

.ticket{
  background: #ffffff !important;
  border-radius: 20px !important;
  border: 1px solid rgba(15,15,13,.07) !important;
  box-shadow: none !important;
}

.badge-card{
  background: #ffffff !important;
  border: 1px solid rgba(15,15,13,.06) !important;
  border-radius: 22px !important;
  box-shadow: 0 12px 30px rgba(15,15,13,.05) !important;
}

.hero-stats{
  max-width: 820px !important;
  gap: 18px !important;
}

.hero-stats article{
  min-height: 118px !important;
  background: #fbfaf6 !important;
  border: 1px solid rgba(15,15,13,.06) !important;
  box-shadow: 0 10px 24px rgba(15,15,13,.04) !important;
  border-radius: 18px !important;
  padding: 22px 20px !important;
}

.btn-primary{
  box-shadow: 0 12px 24px rgba(239, 187, 39, .18) !important;
}

.play-icon{
  box-shadow: none !important;
}

.cursor-glow,
.yellow-panel{
  opacity: .55 !important;
  filter: blur(0px) !important;
}

.simple-footer{
  background: transparent !important;
  border-top: 1px solid rgba(15,15,13,.06) !important;
}

@media (max-width: 1500px){
  .site-header .container,
  .hero-section.container,
  .simple-footer .container,
  .compact-footer .container{
    width: min(86%, 1320px) !important;
    max-width: min(86%, 1320px) !important;
  }
}

@media (max-width: 1100px){
  .site-header .container,
  .hero-section.container,
  .simple-footer .container,
  .compact-footer .container{
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-text{
    max-width: 100% !important;
  }

  .hero-visual{
    min-width: 0 !important;
    width: 100% !important;
  }

  .investor-card{
    width: 100% !important;
  }
}


/* larger brand logo refinement */
.brand{
  display:flex;
  align-items:center;
}

.brand img{
  width: 220px !important;
  height: auto !important;
  display:block;
}

.footer-logo{
  width: 200px !important;
  height: auto !important;
  display:block;
}

@media (max-width: 768px){
  .brand img{
    width: 180px !important;
  }
}


/* ABOUT PAGE */
.about-page,
.about-page *{
  font-family: "Inter", "Noto Sans Sinhala", sans-serif;
}

.about-hero{
  width: min(80%, 1480px);
  max-width: min(80%, 1480px);
  margin: 0 auto;
  padding: 80px 0 34px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: end;
}

.about-hero-copy h1{
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: .95;
  margin: 0 0 12px;
  letter-spacing: -.04em;
}

.about-subtext{
  font-size: 1.15rem;
  line-height: 1.8;
  color: #666661;
  max-width: 680px;
  margin: 0;
}

.about-hero-card{
  background: #fcfbf7;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(15,15,13,.05);
  display: grid;
  gap: 16px;
}

.about-mini-card{
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 18px;
  padding: 18px;
}

.about-icon{
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #efbb27;
  font-weight: 800;
  font-size: 1.1rem;
  flex: 0 0 50px;
}

.about-mini-card h3{
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.about-mini-card p{
  margin: 0;
  color: #76766f;
}

.about-content{
  width: min(80%, 1480px);
  max-width: min(80%, 1480px);
  margin: 0 auto;
  padding: 18px 0 70px;
}

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

.about-block{
  background: #fcfbf7;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(15,15,13,.04);
}

.about-block h2{
  margin: 0 0 14px;
  font-size: 1.85rem;
  letter-spacing: -.03em;
}

.about-block p{
  margin: 0;
  color: #64645f;
  line-height: 1.85;
  font-size: 1rem;
}

.section-label{
  margin: 0 0 12px !important;
  color: #c19824 !important;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 13px !important;
  text-transform: uppercase;
}

.feature-list,
.steps-list{
  display: grid;
  gap: 18px;
}

.feature-list h3,
.step-item h3{
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.feature-list p,
.step-item p{
  margin: 0;
}

.step-item{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 18px;
  padding: 18px;
}

.step-item span{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #111;
  color: #efbb27;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 42px;
}

.support-block{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.support-block .btn{
  align-self: flex-start;
}

@media (max-width: 1100px){
  .about-hero,
  .about-content{
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
  }

  .about-hero{
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .about-grid{
    grid-template-columns: 1fr;
  }
}


/* ABOUT PAGE FIX */
.about-page,
.about-page *{
  font-family: "Noto Sans Sinhala","Inter",sans-serif;
}

.about-hero{
  width: min(80%, 1480px);
  max-width: min(80%, 1480px);
  margin: 0 auto;
  padding: 72px 0 28px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 28px;
  align-items: center;
}

.about-hero-copy{
  max-width: 640px;
}

.about-hero-copy h1{
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 1.02;
  margin: 0 0 12px;
  letter-spacing: -.03em;
}

.about-subtext{
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666661;
  max-width: 620px;
  margin: 0;
}

.about-hero-card{
  background: #fcfbf7;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(15,15,13,.05);
  display: grid;
  gap: 16px;
}

.about-mini-card{
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 18px;
  padding: 14px 16px;
  min-height: 94px;
}

.about-svg-icon{
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: block;
}

.about-mini-card h3{
  margin: 0 0 4px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.about-mini-card p{
  margin: 0;
  color: #76766f;
  font-size: 1rem;
}

.about-content{
  width: min(80%, 1480px);
  max-width: min(80%, 1480px);
  margin: 0 auto;
  padding: 14px 0 70px;
}

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

.about-block{
  background: #fcfbf7;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(15,15,13,.04);
}

.about-block h2{
  margin: 0 0 16px;
  font-size: 1.8rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.about-block p{
  margin: 0;
  color: #64645f;
  line-height: 1.85;
  font-size: 1rem;
}

.section-label{
  margin: 0 0 10px !important;
  color: #c19824 !important;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 13px !important;
  text-transform: uppercase;
}

.feature-list{
  display: grid;
  gap: 18px;
}

.feature-list h3,
.step-item h3{
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.feature-list p,
.step-item p{
  margin: 0;
  line-height: 1.8;
}

.full-span{
  grid-column: 1 / -1;
}

.steps-list-wide{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 18px;
  padding: 18px;
  min-height: 140px;
}

.step-item span{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #111;
  color: #efbb27;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 42px;
}

.support-block{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.support-block .btn{
  align-self: flex-start;
}

@media (max-width: 1200px){
  .steps-list-wide{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px){
  .about-hero,
  .about-content{
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
  }

  .about-hero{
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .about-grid{
    grid-template-columns: 1fr;
  }

  .full-span{
    grid-column: auto;
  }
}


/* CONTACT PAGE */
.contact-page,
.contact-page *{
  font-family: "Noto Sans Sinhala","Inter",sans-serif;
}

.contact-hero{
  width: min(80%, 1480px);
  max-width: min(80%, 1480px);
  margin: 0 auto;
  padding: 72px 0 28px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 28px;
  align-items: center;
}

.contact-hero-copy{
  max-width: 660px;
}

.contact-hero-copy h1{
  font-size: clamp(3rem, 5.8vw, 4.8rem);
  line-height: 1.03;
  margin: 0 0 12px;
  letter-spacing: -.03em;
}

.contact-subtext{
  font-size: 1.08rem;
  line-height: 1.8;
  color: #666661;
  max-width: 640px;
  margin: 0;
}

.contact-hero-card{
  background: #fcfbf7;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(15,15,13,.05);
  display: grid;
  gap: 16px;
}

.contact-mini-card{
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 18px;
  padding: 14px 16px;
  min-height: 94px;
}

.contact-svg-icon{
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: block;
}

.contact-svg-icon.small{
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

.contact-mini-card h3,
.contact-info-item h3,
.support-card h3{
  margin: 0 0 4px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.contact-mini-card p,
.contact-info-item p,
.support-card p{
  margin: 0;
  color: #76766f;
  line-height: 1.75;
}

.contact-content{
  width: min(80%, 1480px);
  max-width: min(80%, 1480px);
  margin: 0 auto;
  padding: 14px 0 70px;
}

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

.contact-panel{
  background: #fcfbf7;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(15,15,13,.04);
}

.contact-panel h2{
  margin: 0 0 16px;
  font-size: 1.8rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.contact-panel p{
  margin: 0;
  color: #64645f;
  line-height: 1.85;
  font-size: 1rem;
}

.contact-info-list,
.contact-support-grid{
  display: grid;
  gap: 18px;
}

.contact-info-item{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 18px;
  padding: 18px;
}

.full-span{
  grid-column: 1 / -1;
}

.contact-support-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-card{
  background: #fff;
  border: 1px solid rgba(15,15,13,.06);
  border-radius: 18px;
  padding: 22px;
}

.trust-panel{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-panel .btn{
  align-self: flex-start;
}

.return-panel{
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(239, 187, 39, .22), transparent 34%),
    linear-gradient(180deg, #fff8df 0%, #fff2c0 100%);
  border-color: rgba(239, 187, 39, .28);
  box-shadow:
    0 20px 48px rgba(239, 187, 39, .16),
    0 10px 24px rgba(15,15,13,.06);
}

.return-pill{
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(239, 187, 39, .34);
  color: #7b5a00;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(239, 187, 39, .12);
}

.return-panel h2{
  margin-bottom: 6px;
}

.return-btn{
  align-self: flex-start;
  box-shadow: 0 16px 32px rgba(239, 187, 39, .28);
}

@media (max-width: 1200px){
  .contact-support-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px){
  .contact-hero,
  .contact-content{
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
  }

  .contact-hero{
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .contact-grid{
    grid-template-columns: 1fr;
  }

  .full-span{
    grid-column: auto;
  }
}


.toast-stack{position:fixed;right:18px;bottom:18px;display:grid;gap:10px;z-index:120}
.toast{min-width:240px;max-width:340px;padding:14px 16px;border-radius:16px;border:1px solid rgba(255,255,255,.08);background:rgba(10,10,12,.88);backdrop-filter:blur(10px);box-shadow:0 18px 34px rgba(0,0,0,.18)}
.toast strong{display:block;margin-bottom:4px}
.toast p{margin:0;color:rgba(255,255,255,.72);font-size:.92rem;line-height:1.55}
.toast.success{border-color:rgba(125,220,171,.22)}


.server-flash-wrap{position:fixed;top:18px;right:18px;z-index:9999;display:grid;gap:10px;max-width:360px}.server-flash{padding:12px 14px;border-radius:14px;background:#111827;color:#fff;box-shadow:0 18px 40px rgba(0,0,0,.14);font-weight:600;font-size:14px;border:1px solid rgba(255,255,255,.08)}.server-flash-success{background:#0f766e}.server-flash-warning{background:#9a6700}.server-flash-danger{background:#b42318}
