:root {
  --bg: #020814;
  --bg-2: #050d1b;
  --panel: rgba(10, 20, 38, .82);
  --panel-2: rgba(12, 27, 49, .72);
  --line: rgba(160, 190, 235, .18);
  --line-strong: rgba(160, 190, 235, .3);
  --text: #f5f7fb;
  --muted: #aab7cc;
  --blue: #1265ff;
  --blue-2: #00a8ff;
  --cyan: #4fe8ff;
  --green: #35e59b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 60% 0%, #071d3f 0%, var(--bg) 38%, #01050c 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(18, 101, 255, .45); color: #fff; }

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1500px, calc(100% - 64px));
  height: 112px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 270px;
  align-items: center;
  gap: 18px;
  transition: height .25s ease, background .25s ease, border-color .25s ease, width .25s ease, padding .25s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -24px;
  border: 1px solid transparent;
  border-radius: 0 0 24px 24px;
  transition: .25s ease;
}
.site-header.is-scrolled { height: 82px; }
.site-header.is-scrolled::before {
  background: rgba(2, 8, 20, .82);
  border-color: rgba(160,190,235,.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  user-select: none;
}
.brand-main { font-size: 31px; font-weight: 500; letter-spacing: .16em; }
.brand-rune { display: inline-block; margin: 0 .02em; font-size: .9em; }
.brand-sub { margin-top: 10px; font-size: 14px; font-weight: 600; letter-spacing: .56em; padding-left: .56em; }

.nav { display: flex; justify-content: center; gap: clamp(14px, 1.75vw, 34px); min-width: 0; }
.nav a { color: #edf2fb; font-size: 16px; transition: .2s ease; white-space: nowrap; }
.nav a:hover { color: #75a8ff; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.language-picker { position: relative; display: inline-flex; align-items: center; }
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(3, 10, 22, .72);
  color: white;
  border-radius: 14px;
  min-width: 68px;
  height: 48px;
  padding: 0 27px 0 15px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-picker::after {
  content: '⌄';
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-56%);
  color: #a9c8ff;
  font-size: 15px;
  pointer-events: none;
}
.lang-select:hover, .lang-select:focus { border-color: rgba(93,153,255,.68); background: rgba(5,18,41,.88); box-shadow: 0 0 0 3px rgba(26,100,255,.09); }
.lang-select option { background: #071327; color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.header-cta, .btn-primary {
  background: linear-gradient(135deg, #0b5cff, #053dff);
  box-shadow: 0 10px 30px rgba(0, 80, 255, .28);
}
.header-cta { padding: 17px 22px; border-radius: 20px; font-weight: 600; white-space: nowrap; }
.menu-btn { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(3,10,22,.55); padding: 0 13px; cursor: pointer; }
.menu-btn span { display: block; height: 2px; width: 100%; margin: 5px 0; background: #fff; border-radius: 10px; transition: .2s ease; }
.menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Finnish copy is longer: keep the first screen and Ecosystem block fully visible. */
html[lang="fi"] .site-header { grid-template-columns: 235px minmax(0, 1fr) 250px; gap: 14px; }
html[lang="fi"] .nav { gap: clamp(10px, 1.25vw, 24px); }
html[lang="fi"] .nav a { font-size: 14px; }
html[lang="fi"] .header-cta { padding-inline: 18px; font-size: 14px; }
html[lang="fi"] .hero-copy { width: 575px; }
html[lang="fi"] .hero h1 { font-size: clamp(50px, 4.5vw, 69px); }
html[lang="fi"] .hero-copy > p { width: 525px; font-size: 20px; line-height: 1.55; }
html[lang="fi"] .partners { margin-top: 34px; }

.hero {
  position: relative;
  min-height: 900px;
  height: min(930px, 100vh);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hero-bg { position: absolute; z-index: -5; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1,5,13,.93) 0%, rgba(1,7,17,.76) 28%, rgba(1,7,17,.16) 56%, rgba(1,7,17,.05) 100%),
    linear-gradient(0deg, rgba(1,6,14,.84) 0%, transparent 26%);
}
.hero-copy { position: absolute; z-index: 5; left: max(64px, calc((100vw - 1500px) / 2)); top: 235px; width: 535px; }
.eyebrow, .section-kicker { color: #8eb4ff; font-weight: 600; letter-spacing: .2em; font-size: 18px; }
.hero h1 { margin: 28px 0 28px; font-size: clamp(56px, 5vw, 78px); line-height: 1.04; letter-spacing: -.045em; }
.hero h1 em { color: #0a61ff; font-style: normal; }
.hero-copy > p { width: 470px; max-width: 100%; color: #d2d9e5; font-size: 22px; line-height: 1.65; margin: 0; }
.hero-buttons { display: flex; gap: 18px; margin-top: 38px; }
.btn { display: inline-flex; min-height: 62px; align-items: center; justify-content: center; border: 0; border-radius: 18px; padding: 0 34px; color: white; font-weight: 600; font-size: 18px; cursor: pointer; transition: transform .2s ease, filter .2s ease; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-ghost { border: 1px solid rgba(214,225,245,.38); background: rgba(2,8,18,.42); backdrop-filter: blur(10px); }
.partners { margin-top: 56px; }
.partners-label { display: block; color: #cad2df; margin-bottom: 22px; font-size: 14px; }
.partners-row { display: flex; flex-wrap: wrap; gap: 14px 18px; color: #eef2f8; font-size: 14px; align-items: center; }
.partner { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; opacity: 1; font-weight: 600; letter-spacing: -.01em; }
.partner-icon { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 999px; box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 8px 16px rgba(0,0,0,.16); }
.partner-icon svg { width: 14px; height: 14px; display: block; }
.partner-binance .partner-icon { color: #f3ba2f; background: rgba(243,186,47,.15); border: 1px solid rgba(243,186,47,.35); }
.partner-coinbase .partner-icon { color: #0052ff; background: rgba(0,82,255,.16); border: 1px solid rgba(98,150,255,.3); }
.partner-revolut .partner-icon { color: #dfe7ff; background: linear-gradient(135deg, rgba(110,120,255,.28), rgba(32,46,87,.28)); border: 1px solid rgba(152,171,255,.28); }
.partner-community .partner-icon { color: #4ce38a; background: rgba(76,227,138,.14); border: 1px solid rgba(76,227,138,.28); }
.partner-telegram .partner-icon { color: #2aabee; background: rgba(42,171,238,.15); border: 1px solid rgba(42,171,238,.32); }
.hero-ship { position: absolute; z-index: 1; width: min(800px, 53vw); right: -2vw; bottom: 62px; filter: drop-shadow(0 24px 34px rgba(0,0,0,.5)); }
.hero-phone { position: absolute; z-index: 4; width: min(520px, 33vw); left: 50%; transform: translateX(-31%); bottom: 35px; filter: drop-shadow(0 38px 48px rgba(0,0,0,.55)); }

.features-section, .why-section, .about-section, .token-section, .roadmap-section, .team-section, .reviews-section, .faq-section, .launch-section { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.section-heading { max-width: 780px; margin: 0 auto 28px; text-align: center; }
.section-heading h2, .token-copy h2 { margin: 14px 0 16px; font-size: clamp(36px, 4.2vw, 58px); letter-spacing: -.04em; }
.section-heading p, .token-copy p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 18px; }
.section-heading.compact { margin-bottom: 26px; }
.section-heading.compact h2 { font-size: 44px; }

.features-section { padding: 58px 0 30px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .why-card, .token-card { border: 1px solid var(--line); background: linear-gradient(180deg, rgba(12,26,48,.72), rgba(6,14,27,.72)); }
.feature-card { min-height: 220px; border-radius: 24px; padding: 28px; }
.feature-card > span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: #1059ed; font-weight: 700; }
.feature-card h3 { margin: 30px 0 10px; font-size: 22px; }
.feature-card p, .why-card p, .token-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.why-section { padding: 30px 0 48px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { min-height: 250px; padding: 30px; border-radius: 26px; }
.why-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(145deg, rgba(18,101,255,.25), rgba(79,232,255,.08)); border: 1px solid rgba(94,163,255,.25); color: #87b6ff; font-size: 25px; }
.why-card h3 { font-size: 24px; margin: 34px 0 12px; }

/* About / search-friendly content */
.about-section { padding: 34px 0 44px; }
.about-shell { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; padding: 42px; border: 1px solid rgba(112,166,255,.2); border-radius: 32px; background: linear-gradient(135deg, rgba(10,29,60,.9), rgba(4,13,29,.94)); box-shadow: 0 28px 80px rgba(0,0,0,.18); }
.about-shell::after { content: "ᛟ"; position: absolute; right: -46px; bottom: -118px; color: rgba(66,137,255,.055); font-size: 310px; line-height: 1; pointer-events: none; }
.about-copy { position: relative; z-index: 1; }
.about-copy h2 { margin: 14px 0 22px; max-width: 620px; font-size: clamp(38px, 4.3vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.about-copy p { margin: 0 0 16px; max-width: 650px; color: var(--muted); font-size: 17px; line-height: 1.78; }
.about-points { position: relative; z-index: 1; display: grid; gap: 14px; }
.about-point { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; padding: 22px; border: 1px solid rgba(124,168,239,.15); border-radius: 22px; background: rgba(2,10,23,.52); }
.about-rune { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; border: 1px solid rgba(88,151,255,.3); background: linear-gradient(145deg, rgba(18,101,255,.22), rgba(79,232,255,.06)); color: #91bcff; font-size: 25px; }
.about-point h3 { margin: 3px 0 8px; font-size: 20px; }
.about-point p { margin: 0; color: var(--muted); line-height: 1.62; font-size: 14px; }


/* Team */
.team-section { padding: 38px 0 48px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card { min-height: 440px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(180deg, rgba(12,28,52,.84), rgba(5,14,28,.82)); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.team-card:hover { transform: translateY(-5px); border-color: rgba(104,156,255,.42); box-shadow: 0 22px 52px rgba(0,0,0,.22); }
.team-photo { position: relative; aspect-ratio: 1 / .92; overflow: hidden; background: #08152a; }
.team-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(180deg, rgba(3,10,22,0), rgba(3,10,22,.58)); pointer-events: none; }
.team-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 28%; transform: scale(1.01); transition: transform .35s ease; }
.team-card:hover .team-photo img { transform: scale(1.045); }
.team-card-body { padding: 22px 24px 26px; }
.team-label { color: #6f98d8; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.team-card h3 { margin: 9px 0 5px; font-size: 23px; line-height: 1.18; letter-spacing: -.02em; }
.team-role { display: block; color: #9fc2ff; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.team-card p { margin: 13px 0 0; color: var(--muted); line-height: 1.65; font-size: 14px; }
.token-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; padding: 42px 0 48px; border-top: 1px solid rgba(160,190,235,.1); }
.token-copy { max-width: 490px; }
.token-copy h2 { font-size: 50px; }
.token-note { margin-top: 22px !important; padding-left: 18px; border-left: 2px solid #1265ff; font-size: 14px !important; }
.token-grid { display: grid; gap: 16px; }
.token-card { display: grid; grid-template-columns: 52px 1fr; column-gap: 20px; padding: 24px; border-radius: 22px; }
.token-card > span { grid-row: span 2; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: rgba(18,101,255,.14); color: #8db7ff; font-weight: 700; }
.token-card h3 { margin: 1px 0 8px; font-size: 21px; }

.roadmap-section { padding: 38px 0 48px; }
.timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 29px; top: 28px; bottom: 28px; width: 1px; background: linear-gradient(#1265ff, rgba(79,232,255,.14)); }
.timeline-item { position: relative; display: grid; grid-template-columns: 60px 1fr; gap: 28px; padding: 18px 0; }
.phase { position: relative; z-index: 1; width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid rgba(108,159,255,.34); border-radius: 50%; background: #07142a; color: #8fb9ff; font-weight: 700; box-shadow: 0 0 0 8px #020814; }
.timeline-item span { color: #7096d2; font-size: 13px; letter-spacing: .18em; font-weight: 700; }
.timeline-item h3 { margin: 8px 0 8px; font-size: 25px; }
.timeline-item p { max-width: 720px; margin: 0; color: var(--muted); line-height: 1.65; }

.reviews-section { padding: 38px 0 48px; }
.reviews-head { display: block; text-align: center; margin-bottom: 32px; }
.reviews-heading { margin: 0 auto; text-align: center; max-width: 860px; }
.reviews-heading p { margin-left: auto; margin-right: auto; max-width: 720px; }
.reviews-title em { color: #1265ff; font-style: normal; }
.reviews-carousel { position: relative; }
.reviews-viewport { overflow: hidden; border-radius: 30px; }
.reviews-track { display: flex; transition: transform .48s cubic-bezier(.2,.75,.25,1); will-change: transform; }
.review-slide { flex: 0 0 100%; min-height: 350px; padding: 46px 52px; border: 1px solid rgba(112,166,255,.22); border-radius: 30px; background: linear-gradient(145deg, rgba(10,28,58,.96), rgba(4,13,29,.94)); box-shadow: 0 26px 75px rgba(0,0,0,.2); display: grid; grid-template-columns: minmax(0,1fr) 230px; gap: 54px; align-items: center; }
.review-copy { max-width: 760px; }
.review-copy h3 { margin: 0 0 20px; color: #f5f8ff; font-size: clamp(30px, 4vw, 46px); line-height: 1.06; letter-spacing: -.04em; }
.review-copy p { margin: 0; color: #b8c5d9; font-size: 18px; line-height: 1.78; }
.review-person { justify-self: end; width: 220px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.review-avatar { width: 160px; height: 160px; display: block; border-radius: 50%; overflow: hidden; border: 3px solid #2f8cff; box-shadow: 0 0 14px rgba(47,140,255,.16), 0 20px 45px rgba(0,0,0,.28); background: transparent; }
.review-avatar img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; border-radius: 50%; }
.review-person strong { margin-top: 22px; color: #f2f6fc; font-size: 20px; }
.review-person span { margin-top: 7px; color: #8ea1bd; font-size: 14px; }
.reviews-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 26px; }
.review-arrow { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(122,171,255,.38); background: rgba(7,20,43,.86); color: #e9f1ff; font: inherit; font-size: 30px; line-height: 1; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.review-arrow:hover { transform: translateY(-2px); border-color: rgba(122,171,255,.7); background: rgba(16,52,108,.74); }
.review-dots { display: flex; align-items: center; gap: 8px; }
.review-dots span { width: 8px; height: 8px; border-radius: 999px; background: #294263; transition: width .2s ease, background .2s ease; }
.review-dots span.is-active { width: 24px; background: #1265ff; }

.faq-section { padding: 34px 0 48px; }
.faq-list { max-width: 920px; margin: 0 auto; }
details { margin: 14px auto; border: 1px solid var(--line); border-radius: 18px; background: rgba(7,16,31,.75); padding: 0 24px; transition: border-color .2s ease, background .2s ease; }
details[open] { border-color: rgba(104,156,255,.36); background: rgba(10,23,43,.9); }
summary { list-style: none; position: relative; cursor: pointer; padding: 24px 46px 24px 0; font-size: 18px; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: #86b2ff; font-size: 27px; font-weight: 400; transition: transform .2s ease; }
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details p { color: var(--muted); line-height: 1.7; padding: 0 46px 24px 0; margin: -3px 0 0; }

.launch-section { position: relative; overflow: hidden; min-height: 320px; margin-bottom: 42px; border: 1px solid rgba(112,166,255,.22); border-radius: 34px; background: linear-gradient(120deg, rgba(7,24,55,.94), rgba(3,10,24,.94)); display: grid; place-items: center; text-align: center; }
.launch-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(0,125,255,.28), rgba(0,125,255,0) 68%); top: -300px; left: 50%; transform: translateX(-50%); }
.launch-copy { position: relative; z-index: 1; max-width: 680px; padding: 46px 24px; }
.launch-copy h2 { margin: 14px 0 16px; font-size: clamp(38px, 5vw, 58px); letter-spacing: -.04em; }
.launch-copy p { margin: 0 auto 30px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.launch-btn { min-width: 220px; }

.footer { border-top: 1px solid var(--line); width: min(1200px, calc(100% - 48px)); margin: 0 auto; color: #8290a6; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 56px; padding: 48px 0 40px; }
.footer-about p { max-width: 350px; margin: 26px 0 0; color: #8998ae; line-height: 1.7; }
.footer-brand { transform: scale(.72); transform-origin: left top; color: #eaf0fa; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-column h3 { margin: 0 0 8px; color: #f0f4fb; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.footer-column a, .footer-column span { color: #8998ae; font-size: 14px; transition: color .2s ease; }
.footer-column a:hover { color: #dbe8ff; }
.footer-bottom { min-height: 72px; display: flex; justify-content: space-between; gap: 30px; align-items: center; border-top: 1px solid rgba(160,190,235,.1); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Legal pages */
.legal-body { min-height: 100vh; background: radial-gradient(circle at 50% -10%, #0a234a 0, #020814 38%, #01050c 100%); }
.legal-header { position: relative; left: auto; transform: none; margin: 0 auto; }
.legal-header::before { display: none; }
.legal-header .nav { display: none; }
.legal-main { width: min(920px, calc(100% - 40px)); margin: 0 auto; padding: 48px 0 82px; }
.legal-back { display: inline-flex; margin-bottom: 24px; color: #8db7ff; font-size: 14px; }
.legal-title { margin: 0 0 10px; font-size: clamp(42px, 6vw, 70px); letter-spacing: -.05em; }
.legal-updated { margin: 0 0 32px; color: #71819a; }
.legal-content { display: grid; gap: 34px; }
.legal-section { padding-bottom: 34px; border-bottom: 1px solid rgba(160,190,235,.1); }
.legal-section h2 { margin: 0 0 14px; font-size: 24px; }
.legal-section p, .legal-section li { color: #aab7cc; line-height: 1.8; }
.legal-section p { margin: 0; }
.legal-section ul { margin: 14px 0 0; padding-left: 22px; }
.legal-footer { min-height: 110px; width: min(920px, calc(100% - 40px)); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 220px minmax(0, 1fr) auto; width: calc(100% - 36px); }
  .nav { gap: 14px; }
  .nav a { font-size: 14px; }
  .header-cta { display: none; }
  .hero-copy { left: 34px; width: 480px; }
  .hero-phone { left: 59%; width: 430px; }
  .hero-ship { width: 720px; right: -210px; }
  .footer-main { gap: 40px; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  html[lang="fi"] .site-header { grid-template-columns: 205px minmax(0, 1fr) auto; gap: 12px; }
  html[lang="fi"] .nav { gap: 10px; }
  html[lang="fi"] .nav a { font-size: 13px; }
  html[lang="fi"] .hero-copy { width: 555px; }
  html[lang="fi"] .hero h1 { font-size: clamp(48px, 5.2vw, 61px); }
  html[lang="fi"] .hero-copy > p { width: 500px; font-size: 18px; line-height: 1.5; }
  html[lang="fi"] .partners { margin-top: 28px; }
}

@media (max-width: 900px) {
  html[lang="fi"] .site-header { grid-template-columns: 1fr auto; gap: 18px; }
  html[lang="fi"] .hero-copy { width: auto; }
  html[lang="fi"] .hero h1 { font-size: clamp(48px, 10vw, 66px); }
  html[lang="fi"] .hero-copy > p { width: 100%; font-size: 18px; }
  .reviews-head { display: block; }
  .review-slide { min-height: 0; padding: 36px 26px; grid-template-columns: 1fr; gap: 34px; }
  .review-person { justify-self: start; width: auto; text-align: left; display: grid; grid-template-columns: 76px 1fr; column-gap: 16px; }
  .review-avatar { width: 76px; height: 76px; grid-row: span 2; }
  .review-person strong { margin-top: 10px; font-size: 17px; }
  .review-person span { margin-top: 2px; }
  .review-copy h3 { font-size: 30px; }
  .review-copy p { font-size: 16px; line-height: 1.68; }

  .site-header { height: 88px; grid-template-columns: 1fr auto; width: calc(100% - 36px); }
  .site-header.is-scrolled { height: 74px; }
  .nav { position: absolute; display: none; top: 76px; right: 0; width: min(330px, calc(100vw - 36px)); padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: rgba(3,10,22,.96); backdrop-filter: blur(20px); box-shadow: 0 20px 50px rgba(0,0,0,.35); flex-direction: column; gap: 0; }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 8px; border-bottom: 1px solid rgba(160,190,235,.08); }
  .nav a:last-child { border-bottom: 0; }
  .menu-btn { display: block; }
  .brand-main { font-size: 24px; }
  .brand-sub { font-size: 11px; }
  .header-cta { display: none; }
  .hero { height: auto; min-height: 980px; }
  .hero-copy { top: 145px; left: 24px; right: 24px; width: auto; }
  .hero h1 { font-size: clamp(50px, 12vw, 72px); }
  .hero-copy > p { font-size: 18px; }
  .partners { margin-top: 36px; }
  .hero-phone { width: 390px; max-width: 72vw; left: 56%; bottom: 0; transform: translateX(-50%); }
  .hero-ship { width: 640px; max-width: 95vw; right: -250px; bottom: 50px; opacity: .7; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-shell { grid-template-columns: 1fr; gap: 36px; padding: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .why-card { min-height: 0; }
  .token-section { grid-template-columns: 1fr; gap: 44px; }
  .token-copy { max-width: 720px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main .footer-column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 620px) {
  .site-header { width: calc(100% - 28px); }
  .hero { min-height: 900px; }
  .hero-shade { background: linear-gradient(180deg, rgba(1,6,15,.7), rgba(1,6,15,.22) 55%, rgba(1,6,15,.94)); }
  .hero-copy { top: 125px; }
  .eyebrow, .section-kicker { font-size: 14px; }
  .hero h1 { margin-top: 18px; font-size: 51px; }
  .hero-copy > p { width: 100%; font-size: 17px; line-height: 1.55; }
  .hero-buttons { margin-top: 26px; gap: 10px; }
  .btn { min-height: 54px; padding: 0 20px; font-size: 15px; border-radius: 14px; }
  .partners { display: none; }
  .hero-phone { width: 330px; max-width: 82vw; left: 44%; bottom: -5px; }
  .hero-ship { width: 470px; right: -245px; bottom: 22px; }
  .features-section, .why-section, .about-section, .token-section, .roadmap-section, .team-section, .reviews-section, .faq-section, .launch-section { width: min(100% - 30px, 1200px); }
  .features-section { padding: 42px 0 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .section-heading.compact h2 { font-size: 36px; }
  .why-section { padding: 22px 0 38px; }
  .about-section { padding: 18px 0 36px; }
  .about-shell { padding: 28px 22px; border-radius: 26px; }
  .about-copy h2 { font-size: 38px; }
  .about-point { grid-template-columns: 50px 1fr; padding: 18px; }
  .about-rune { width: 50px; height: 50px; border-radius: 15px; }
  
  
  .team-section { padding: 22px 0 38px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { min-height: 0; }
  .token-section { padding: 34px 0 40px; }
  .token-copy h2 { font-size: 38px; }
  .token-card { grid-template-columns: 44px 1fr; gap: 14px; }
  .token-card > span { width: 44px; height: 44px; border-radius: 14px; }
  .roadmap-section { padding: 28px 0 40px; }
  .reviews-section { padding: 28px 0 40px; }
  .faq-section { padding: 26px 0 40px; }
  .timeline-item { gap: 18px; }
  .timeline-item h3 { font-size: 21px; }
  .launch-section { min-height: 285px; margin-bottom: 32px; border-radius: 26px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px 24px; padding-top: 40px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-main .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 24px 0; }
  .legal-main { padding-top: 30px; padding-bottom: 64px; }
}

/* Short desktop/laptop screens: keep the original scale and move the hero content upward. */
@media (min-width: 901px) and (max-height: 880px) {
  .hero {
    height: 100svh;
    min-height: 760px;
  }

  /* Preserve the normal desktop sizing; only shift the composition upward. */
  .hero-copy {
    top: 158px;
    width: 535px;
  }

  .hero-phone {
    width: min(520px, 33vw);
    left: 50%;
    bottom: 58px;
    transform: translateX(-31%);
  }

  .hero-ship {
    width: min(800px, 53vw);
    right: -2vw;
    bottom: 62px;
  }

  .partners {
    margin-top: 42px;
  }

  html[lang="fi"] .hero-copy { top: 140px; }
  html[lang="fi"] .partners { margin-top: 24px; }
}

