/* MOSAIX Landing Styles */
@font-face {
  font-family: 'MosaixDisplay';
  src: url('/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MosaixSans';
  src: url('/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #0a0b0d;
  --surface: #111317;
  --text: #f0f3f8;
  --muted: #a9b0bb;
  --accent: #ff6645; /* violet */
  --accent-2: #f92ffb; /* cyan */
  --accent-grad: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --btn-bg: #0047ff;
  --btn-bg-2: #ffffff;
  --framer-font-family-bold-italic: "Satoshi", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: linear-gradient(180deg, rgb(26, 72, 244) 0%, rgb(12, 42, 147) 100%); color: var(--text); font-family: var(--framer-font-family-bold-italic); }

h1, h2, h3, h4, h5, h6 { font-family: var(--framer-font-family-bold-italic); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

header { position: sticky; top: 0px; height: 60px; z-index: 10; background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.06); }
header .bar { display: grid; grid-template-columns: 1fr auto auto; align-items: center; height: 60px; padding-top: 0; }
.logo { display: flex; align-items: flex-end; gap: 8px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-family: MosaixDisplay, MosaixSans, sans-serif; color: #0a0b0d; text-decoration: none; }
.logo img.brand { height: 28px; width: auto; display: block; }
.logo .tld { color: #ff5145; margin-left: 0px; font-weight: 800; font-size: 18px; line-height: 28px; display: inline-block; position: relative; top: 8px; text-decoration: none; }
nav a { color: #1b1f23; text-decoration: none; margin-left: 20px; font-size: 14px; font-weight: 600; }
nav a:hover { color: #000; }

.hero { padding: 0px 0 40px; background: transparent; }
.hero .container { text-align: center; }
.hero h1 { font-family: MosaixDisplay, MosaixSans, sans-serif; font-size: 56px; line-height: 1.05; margin: 0 0 16px; }
.hero p.lead { font-size: 30px; color: #ffffff; margin: 0 auto 28px; max-width: 800px; }
.btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 100px; border: none; background-image: var(--accent-grad), linear-gradient(#ffffff, #ffffff); background-color: transparent; -webkit-background-clip: text, padding-box; background-clip: text, padding-box; color: transparent; -webkit-text-fill-color: transparent; text-decoration: none; font-weight: 700; letter-spacing: .02em; box-shadow: rgba(0,0,0,0.1) 0 1px 1px 0, rgba(0,0,0,0.05) 0 2px 4px 0; transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease; }
.button:hover { transform: translateY(-1px); box-shadow: rgba(0,0,0,0.14) 0 4px 10px, rgba(0,0,0,0.06) 0 2px 6px; }
.button:active { transform: translateY(0); box-shadow: rgba(0,0,0,0.1) 0 1px 1px, rgba(0,0,0,0.04) 0 1px 3px; }
.button.primary { background-color: transparent; border: none; }
.button.ghost { background-color: transparent; border: none; }

.countdown { display: flex; gap: 12px; margin: 22px 0 8px; justify-content: center; }
.count { background: var(--surface); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 12px 16px; text-align: center; min-width: 86px; box-shadow: var(--shadow); }
.count .num { font-size: 28px; font-weight: 700; }
.count .label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.section { padding: 72px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.section h2 { font-family: MosaixDisplay, MosaixSans, sans-serif; font-size: 36px; margin: 0 0 16px; }
.section p.sub { color: var(--muted); margin: 0 0 28px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }

.pricing { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.price { background: var(--surface); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.price .tier { font-weight: 700; margin-bottom: 6px; }
.price .euro { font-size: 32px; font-weight: 800; margin: 6px 0 10px; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price ul { margin: 0; padding-left: 18px; color: var(--muted); flex: 1; }
.price .cta { margin-top: 14px; }

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.milestone { background: var(--surface); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 16px; }
.milestone .phase { font-weight: 700; margin-bottom: 6px; }
.milestone .date { color: var(--muted); font-size: 14px; margin-bottom: 8px; }

.signup { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; align-items: center; }
.signup form { display: flex; gap: 10px; }
input[type=email] { flex: 1; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); background: #0f1116; color: var(--text); }

footer { padding: 48px 0 60px; color: var(--muted); text-align: center; }

.hero-image { display: block; width: 70%; height: auto; max-width: 980px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2)); border-radius: 8px; margin: 0 auto; }

.lang-switch { display: flex; gap: 6px; margin-left: 16px; align-self: center; position: relative; top: -2px; }
.lang-btn { background: transparent; border: none; font-size: 20px; cursor: pointer; line-height: 1; display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; }
.lang-btn:focus { outline: 2px solid rgba(0,0,0,0.2); outline-offset: 2px; }
header nav { justify-self: end; }
.lang-switch { justify-self: end; }

/* Burger */
.burger { display: none; width: 36px; height: 28px; background: transparent; border: none; padding: 0; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; align-self: center; }
.burger span { display: block; width: 100%; height: 4px; background: #1b1f23; margin: 4px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

/* Responsive nav */
@media (max-width: 900px) {
  header .bar { grid-template-columns: 1fr auto auto; height: 60px; padding-top: 15px; align-items: start; grid-auto-flow: column; }
  nav#main-nav { position: absolute; top: 60px; right: 0; background: #ffffff; border-bottom-left-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); padding: 10px 14px; display: none; }
  nav#main-nav a { display: block; margin: 8px 0; }
  .burger { display: inline-flex; justify-self: end; grid-column: 3; grid-row: 1; align-self: start; }
  .lang-switch { position: relative; z-index: 2; justify-self: end; grid-column: 2; grid-row: 1; align-self: start; top: 0; right: 10px; }
  .logo { align-self: start; }
  header .bar.open nav#main-nav { display: block; }
  header .bar.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  header .bar.open .burger span:nth-child(2) { opacity: 0; }
  header .bar.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .signup { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .grid, .pricing, .timeline { grid-template-columns: 1fr; }
}

/* Features section overrides */
#features .sub { color: #ffffff; }

/* Highlight the 'Soft Launch' roadmap item */
.timeline .milestone:nth-child(3) { border: 2px solid var(--accent); }

/* Pricing CTA button alignment */
.price .cta { white-space: nowrap; text-align: center; font-size: clamp(12px, 1.8vw, 16px); line-height: 1.1; }

/* News cards: pointer cursor + subtle hover wobble */
#news .card { cursor: pointer; -webkit-user-select: none; user-select: none; transition: box-shadow .2s ease; }
@keyframes mosaixCardWobble { 0% { transform: translateY(0) rotate(0deg); } 30% { transform: translateY(-2px) rotate(-0.4deg); } 60% { transform: translateY(-2px) rotate(0.4deg); } 100% { transform: translateY(-1px) rotate(0deg); } }
#news .card:hover { animation: mosaixCardWobble .26s ease; box-shadow: rgba(0,0,0,0.18) 0 6px 16px; }
