/* Ment Markers — mentmarkers.com */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg: #e9eaee;
  --bg-top: #f7f7f8;
  --ink: #1c1d20;
  --gray: #8a8d93;
  --gray-light: #c4c6cc;
  --line: rgba(0, 0, 0, 0.07);
  --card-shadow: 0 18px 40px -18px rgba(40, 60, 110, 0.18), 0 2px 8px rgba(40, 60, 110, 0.05);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "DM Mono", "Courier New", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, #ffffff 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 22%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ---------- Nav ---------- */
header {
  position: sticky; top: 0; z-index: 10;
  background: linear-gradient(180deg, rgba(250, 250, 251, 0.92), rgba(245, 245, 247, 0.85));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1480px; margin: 0 auto; padding: 0 28px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.brand img { width: 30px; height: 32px; object-fit: contain; background: #eef0f3; border-radius: 4px; padding: 3px; }
.brand span { font-weight: 700; font-size: 15px; letter-spacing: 0.14em; }
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em;
  text-decoration: none; color: var(--ink); text-transform: uppercase;
}
.nav-links a.dim { color: var(--gray); }
.nav-links a:hover { color: var(--ink); }

/* ---------- Type ---------- */
h1, h2 {
  font-weight: 300; letter-spacing: -0.03em; line-height: 1.08;
  font-family: var(--sans);
}
h1 { font-size: clamp(44px, 6.5vw, 76px); }
h2 { font-size: clamp(36px, 5vw, 58px); }
.muted { color: var(--gray-light); }
.sub {
  color: var(--gray); font-size: 19px; line-height: 1.65; font-weight: 300;
  max-width: 460px; margin: 28px auto 0;
}
.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gray);
}

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 96px 24px 40px; }

.signup {
  max-width: 430px; margin: 56px auto 0;
  background: linear-gradient(180deg, #fbfbfd, #f2f3f6);
  border: 1px solid rgba(120, 140, 200, 0.18);
  border-radius: 26px;
  box-shadow: var(--card-shadow), 0 0 60px rgba(120, 150, 230, 0.12);
  overflow: hidden;
}
.signup input {
  width: 100%; border: 0; outline: none; background: transparent;
  padding: 22px 26px; font-size: 16px; color: var(--ink); font-family: var(--sans);
}
.signup input::placeholder { color: #a3a6ad; }
.signup button {
  width: 100%; border: 0; border-top: 1px solid var(--line); cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px; font-size: 15px; font-weight: 600; color: var(--ink); font-family: var(--sans);
  transition: background 0.15s;
}
.signup button:hover { background: rgba(255, 255, 255, 0.9); }
.early {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gray); margin-top: 26px;
}
.form-note { font-size: 13px; color: var(--gray); margin-top: 14px; display: none; }
.form-note.show { display: block; }

/* ---------- Twin image ---------- */
.twin { text-align: center; padding: 40px 24px 90px; }
.twin img {
  width: min(420px, 72vw); height: auto; mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 48% 47% at 50% 50%, #000 55%, transparent 97%);
  mask-image: radial-gradient(ellipse 48% 47% at 50% 50%, #000 55%, transparent 97%);
}

/* ---------- Sections ---------- */
.section { text-align: center; padding: 90px 24px; }
.rule { border: 0; border-top: 1px solid var(--line); max-width: 1160px; margin: 0 auto; }

/* ---------- Cards ---------- */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1160px; margin: 0 auto; padding: 40px 32px 110px;
}
.card {
  text-align: left;
  background: linear-gradient(160deg, #fdfdfe 0%, #f2f3f7 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px; padding: 40px 36px 56px;
  box-shadow: var(--card-shadow);
}
.card h3 { font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.card p { color: var(--gray); font-size: 16px; line-height: 1.7; font-weight: 300; }

/* ---------- Om oss ---------- */
.about-hero { text-align: center; padding: 90px 24px 60px; }
.about-hero .eyebrow { display: block; margin-bottom: 34px; }
.about-hero p {
  color: var(--gray); font-size: 19px; line-height: 1.65; font-weight: 300;
  max-width: 620px; margin: 34px auto 0;
}
.founders-label { text-align: center; padding: 60px 24px 0; }
.founders {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px;
  max-width: 1080px; margin: 0 auto; padding: 48px 32px 110px;
}
.founder {
  background: linear-gradient(170deg, #fdfdff 0%, #f0f3f9 100%);
  border: 1px solid rgba(160, 180, 230, 0.25);
  border-radius: 28px; padding: 56px 44px; text-align: center;
  box-shadow: var(--card-shadow);
}
.founder img {
  width: 210px; height: 210px; border-radius: 50%; object-fit: cover;
  filter: grayscale(1);
  box-shadow: 0 16px 36px -14px rgba(40, 60, 110, 0.35);
}
.founder h3 { font-size: clamp(28px, 3vw, 38px); font-weight: 300; letter-spacing: -0.02em; margin-top: 34px; }
.founder .divider { width: 60px; border: 0; border-top: 1px solid var(--gray-light); margin: 26px auto; }
.founder p { color: var(--gray); font-size: 16px; line-height: 1.8; font-weight: 300; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 42px 0 60px; }
.foot {
  max-width: 1480px; margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
}
.foot-left p:first-child { font-family: var(--mono); font-size: 13px; color: #5a5c61; margin-bottom: 10px; }
.foot-left p:last-child { font-size: 13px; color: var(--gray); }
.foot-right { display: flex; align-items: center; gap: 10px; }
.foot-right img { width: 16px; height: 17px; opacity: 0.5; }
.foot-right span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.28em;
  color: var(--gray-light); text-transform: uppercase;
}

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr; }
  .nav-links { gap: 22px; }
  .foot { flex-direction: column; }
}
