/* =========================================================
   MR. MILLIONAIRE WEBSITE
   Premium navy + gold responsive design
   ========================================================= */

:root {
  --bg: #07111c;
  --bg-soft: #0b1826;
  --panel: rgba(15, 29, 43, 0.78);
  --panel-solid: #0e1d2c;
  --gold: #d9b35f;
  --gold-light: #f1d692;
  --gold-dark: #9c762c;
  --text: #f7f2e8;
  --muted: #aab3bd;
  --line: rgba(217, 179, 95, 0.2);
  --white-line: rgba(255, 255, 255, 0.08);
  --danger: #ffcf66;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(217, 179, 95, 0.08), transparent 25%),
    radial-gradient(circle at 88% 22%, rgba(54, 101, 130, 0.14), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
}

.glow-one {
  top: 20%;
  left: -160px;
  background: var(--gold);
}

.glow-two {
  right: -170px;
  bottom: 12%;
  background: #3884a7;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(7, 17, 28, 0.82);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid rgba(217, 179, 95, 0.35);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  color: var(--gold-light);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a,
.main-nav button {
  border: 0;
  background: transparent;
  color: #d7dde3;
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav button:hover {
  color: var(--gold-light);
}

.main-nav .nav-login {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.main-nav .nav-register {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #15110a;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--white-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-light);
  transition: 0.25s ease;
}

/* Shared */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  line-height: 1.13;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1 span,
h2 span {
  color: var(--gold-light);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading h2,
.benefits-heading h2,
.split-heading h2,
.contact-copy h2,
.crowdfunding-copy h2 {
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #17120a;
  box-shadow: 0 14px 32px rgba(217, 179, 95, 0.16);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(217, 179, 95, 0.25);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(217, 179, 95, 0.55);
  color: var(--gold-light);
}

/* Hero */
.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
}

.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 6.4vw, 6.5rem);
  letter-spacing: -0.05em;
}

.hero-copy > p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.trust-row > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.trust-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
}

.trust-row p {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.trust-row strong {
  font-size: 0.88rem;
}

.trust-row small {
  margin-top: 4px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.chart-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(217, 179, 95, 0.06), transparent 34%),
    rgba(11, 24, 38, 0.84);
  box-shadow: var(--shadow);
}

.chart-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: radial-gradient(rgba(255,255,255,.12) 0.7px, transparent 0.7px);
  background-size: 20px 20px;
  pointer-events: none;
}

.chart-top,
.chart-stats {
  position: relative;
  z-index: 2;
}

.chart-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chart-top > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 15px var(--gold);
}

.chart-pill {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.trading-chart {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 18px;
}

.grid-lines line {
  stroke: rgba(255,255,255,0.06);
  stroke-width: 1;
}

.area-fill {
  fill: url(#areaGold);
}

.gold-line {
  fill: none;
  stroke: #e8c878;
  stroke-width: 4;
  filter: url(#softGlow);
}

.candles line {
  stroke: rgba(239, 216, 157, 0.65);
  stroke-width: 2;
}

.candles rect {
  rx: 3;
}

.candles .up {
  fill: #e6bf69;
}

.candles .down {
  fill: #4e7080;
}

.chart-point {
  fill: #f3d992;
  filter: url(#softGlow);
}

.chart-pulse {
  fill: none;
  stroke: #e6bf69;
  opacity: 0.5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(.7); opacity: .65; transform-origin: 725px 48px; }
  100% { transform: scale(1.8); opacity: 0; transform-origin: 725px 48px; }
}

.chart-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: -5px;
}

.chart-stats div {
  padding: 15px;
  border: 1px solid var(--white-line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.chart-stats small,
.chart-stats strong {
  display: block;
}

.chart-stats small {
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .1em;
}

.chart-stats strong {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: .92rem;
}

.floating-coin {
  position: absolute;
  z-index: 4;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 214, 146, .5);
  border-radius: 50%;
  background: linear-gradient(145deg, #f0d58f, #a87e2d);
  color: #0c1420;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0,0,0,.4);
}

.coin-one {
  top: 64px;
  right: -24px;
  animation: float 5s ease-in-out infinite;
}

.coin-two {
  bottom: 64px;
  left: -26px;
  width: 58px;
  height: 58px;
  font-size: 1.5rem;
  animation: float 5s 1.2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}

/* About */
.about-section {
  border-top: 1px solid var(--white-line);
  background: linear-gradient(180deg, rgba(255,255,255,.015), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 54px;
  align-items: center;
}

.about-logo-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.025);
  box-shadow: var(--shadow);
}

.about-logo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  object-fit: cover;
}

.about-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-copy p + p {
  margin-top: 20px;
}

.about-copy strong {
  color: var(--gold-light);
}

.vision-box {
  margin-top: 30px;
  padding: 24px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(217,179,95,.06);
}

.vision-box span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.vision-box p {
  margin-top: 7px !important;
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 66px;
}

.info-card,
.benefit-card,
.explain-card {
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.025);
  transition: .3s ease;
}

.info-card:hover,
.benefit-card:hover,
.explain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217,179,95,.38);
  background: rgba(217,179,95,.045);
}

.info-card {
  padding: 26px;
}

.icon-box,
.benefit-icon,
.contact-icon,
.fund-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(217,179,95,.06);
  color: var(--gold-light);
}

.icon-box svg,
.benefit-icon svg,
.contact-icon svg,
.fund-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3,
.benefit-card h3,
.explain-card h3 {
  margin-top: 20px;
  font-size: 1.32rem;
}

.info-card p,
.benefit-card p,
.explain-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

/* Crypto */
.crypto-section {
  background:
    radial-gradient(circle at 15% 42%, rgba(217,179,95,.065), transparent 25%),
    var(--bg-soft);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}

.split-heading > p {
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 1.03rem;
}

.explain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.explain-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.step-number {
  position: absolute;
  right: 18px;
  top: 10px;
  color: rgba(217,179,95,.14);
  font-family: Georgia, serif;
  font-size: 4rem;
  font-weight: 900;
}

.benefits-heading {
  max-width: 900px;
  margin-top: 100px;
  margin-bottom: 42px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  min-height: 255px;
  padding: 25px;
}

.risk-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 36px;
  padding: 22px 24px;
  border: 1px solid rgba(217,179,95,.3);
  border-radius: var(--radius-md);
  background: rgba(217,179,95,.07);
  color: #d5d9dc;
}

.warning-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #15110a;
  font-weight: 900;
}

/* Crowdfunding */
.crowdfunding-section {
  overflow: hidden;
}

.crowdfunding-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 75px;
}

.crowdfunding-copy > p {
  margin-top: 20px;
  color: var(--muted);
}

.crowd-points {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.crowd-points > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--white-line);
  border-radius: 15px;
  background: rgba(255,255,255,.02);
}

.crowd-points > div > span {
  color: var(--gold);
  font-weight: 900;
}

.crowd-points p {
  display: flex;
  flex-direction: column;
}

.crowd-points small {
  margin-top: 2px;
  color: var(--muted);
}

.crowdfunding-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.main-fund-card {
  width: min(100%, 480px);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(217,179,95,.09), transparent 44%),
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.fund-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fund-card-top > span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.main-fund-card h3 {
  max-width: 390px;
  margin-top: 32px;
  font-size: 2.35rem;
}

.progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  color: var(--muted);
}

.progress-label strong {
  color: var(--gold-light);
}

.progress-track {
  height: 11px;
  overflow: hidden;
  margin-top: 10px;
  border-radius: 99px;
  background: rgba(255,255,255,.08);
}

.progress-track span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.fund-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid var(--white-line);
}

.fund-stats div {
  display: flex;
  flex-direction: column;
}

.fund-stats strong {
  color: var(--gold-light);
}

.fund-stats small {
  color: var(--muted);
}

.mini-fund-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(8, 18, 28, .94);
  box-shadow: 0 18px 45px rgba(0,0,0,.32);
}

.mini-fund-card p {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.mini-fund-card small {
  margin-top: 3px;
  color: var(--muted);
}

.mini-one {
  top: 50px;
  left: -12px;
}

.mini-two {
  right: -20px;
  bottom: 75px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack i {
  width: 28px;
  height: 28px;
  margin-left: -7px;
  border: 2px solid #0b1724;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #385d70);
}

.avatar-stack i:first-child {
  margin-left: 0;
}

.mini-shield {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(217,179,95,.14);
  color: var(--gold-light);
}

.crowd-risk {
  margin-top: 0;
}

/* CTA */
.cta-section {
  padding-top: 35px;
  padding-bottom: 35px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(217,179,95,.11), transparent 50%),
    rgba(255,255,255,.025);
}

.cta-box h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

/* Contact */
.contact-section {
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-copy > p {
  max-width: 540px;
  margin-top: 20px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-details > a,
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px;
  border: 1px solid var(--white-line);
  border-radius: 15px;
  background: rgba(255,255,255,.02);
}

.contact-details span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-details small {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.025);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label,
.modal-card label {
  display: grid;
  gap: 8px;
  color: #d8dde1;
  font-size: .87rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.modal-card input {
  width: 100%;
  border: 1px solid var(--white-line);
  border-radius: 12px;
  outline: 0;
  background: rgba(5,12,19,.65);
  color: var(--text);
  transition: .25s ease;
}

.contact-form input,
.modal-card input {
  height: 49px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.modal-card input:focus {
  border-color: rgba(217,179,95,.55);
  box-shadow: 0 0 0 3px rgba(217,179,95,.08);
}

.form-message,
.modal-message {
  min-height: 22px;
  color: var(--gold-light);
  font-size: .9rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--white-line);
  background: #050c13;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-top {
  padding-top: 45px;
  padding-bottom: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 22px;
  padding-bottom: 30px;
  border-top: 1px solid var(--white-line);
  color: #7f8a95;
  font-size: .78rem;
}

.footer-bottom p:last-child {
  max-width: 610px;
  text-align: right;
}

/* Modal */
.modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.active {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin-bottom: 25px;
  font-size: 2.4rem;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-size: 1.5rem;
}

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

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1080px) {
  .main-nav {
    gap: 15px;
  }

  .main-nav a,
  .main-nav button {
    font-size: .82rem;
  }

  .hero-grid,
  .about-grid,
  .crowdfunding-grid,
  .contact-grid {
    gap: 42px;
  }

  .focus-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 84px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
    padding: 18px;
    border: 1px solid var(--white-line);
    border-radius: 18px;
    background: rgba(8,18,28,.98);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .main-nav button {
    width: 100%;
    padding: 13px 14px;
    text-align: left;
    border-radius: 10px;
  }

  .main-nav a:hover {
    background: rgba(217,179,95,.06);
  }

  .main-nav .nav-login,
  .main-nav .nav-register {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .split-heading,
  .crowdfunding-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 700px;
    margin: 0 auto;
  }

  .about-logo-card {
    max-width: 460px;
  }

  .split-heading {
    gap: 18px;
  }

  .crowdfunding-visual {
    min-height: 500px;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.7rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .chart-card {
    min-height: 400px;
    padding: 16px;
    border-radius: 22px;
  }

  .chart-stats {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trading-chart {
    margin-top: 8px;
  }

  .floating-coin {
    display: none;
  }

  .section-heading h2,
  .benefits-heading h2,
  .split-heading h2,
  .contact-copy h2,
  .crowdfunding-copy h2 {
    font-size: 2.45rem;
  }

  .focus-grid,
  .benefit-grid,
  .explain-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }

  .about-grid {
    gap: 28px;
  }

  .crowdfunding-visual {
    min-height: 470px;
  }

  .main-fund-card {
    padding: 24px;
  }

  .main-fund-card h3 {
    font-size: 1.85rem;
  }

  .mini-fund-card {
    transform: scale(.86);
  }

  .mini-one {
    top: 18px;
    left: -8px;
  }

  .mini-two {
    right: -14px;
    bottom: 30px;
  }

  .fund-stats {
    gap: 8px;
  }

  .cta-box {
    padding: 28px;
  }

  .contact-form {
    padding: 21px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
