@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=IBM+Plex+Sans:wght@400;600;700&display=swap");

    @font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter.ttf') format('truetype');
    font-weight: 100 900; /* Couvre toutes les graisses */
    font-style: normal;
}
@font-face {
    font-family: 'ShareTechMono';
    src: url('assets/fonts/ShareTechMono-Regular.ttf') format('truetype');
    font-weight: normal;
}
:root {
  --landing-bg: #fff8ef;
  --landing-card: #ffffff;
  --landing-ink: #1b2132;
  --landing-subtle: #5b647a;
  --landing-line: #d6dce8;
  --landing-blue: #3498db;
  --landing-orange: #e67e22;
  --landing-sand: #ffe0c9;

  
    --txt-font:             'Inter', sans-serif;
    --main-logo-font:       'Inter', sans-serif;
    --main-logo-fontsize:   1.2em;

    --primary:              #3498db;
    --secondary:            #e67e22;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--landing-bg);
  color: var(--landing-ink);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
}

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

.landing-page {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, #ffd7c2 0%, transparent 42%),
    radial-gradient(circle at 85% 15%, #cce2ff 0%, transparent 38%),
    linear-gradient(165deg, #fff8ef 0%, #f7f8fc 55%, #eef4ff 100%);
}

.landing-glow {
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(58px);
  opacity: 0.4;
}

.landing-glow--left {
  left: -8rem;
  top: 18rem;
  background: #ffd3b8;
}

.landing-glow--right {
  right: -10rem;
  top: -8rem;
  background: #9fc5ff;
}

.landing-shell {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem 0 3rem;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.landing-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
}



.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pill-button {
  height: 34px;
  padding: 0 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--landing-blue);
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.pill-button:hover {
  background: var(--landing-orange);
}

.pill-button:active {
  transform: translateY(1px);
}

.ghost-link,
.outline-link,
.feature-link {
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ghost-link {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
}

.ghost-link:hover {
  background: rgba(27, 33, 50, 0.08);
}

.hero {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 2em 4em;
  backdrop-filter: blur(12px);
  animation: rise-in 520ms ease both;
}

.hero-kicker,
.feature-title,
.gamification-kicker,
.quest-step {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero-kicker,
.quest-step {
  color: var(--landing-orange);
}

h1,
h2 {
  margin: 0;
  text-wrap: balance;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color:var(--primary)
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  max-width: 18ch;
}

.hero-copy,
.hero-meta-subtitle,
.feature-description,
.feature-reward,
.quest-text,
.closing p {
  margin: 0;
  color: var(--landing-subtle);
  font-size: 0.98rem;
  line-height: 1.5;
}

.feature-reward{
  color:var(--secondary);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.coming-soon {
  display: grid;
  gap: 0.6rem;
  width: fit-content;
  justify-self: center;
  text-align: center;
  margin: 2rem auto;
  border:0;
}

.coming-soon-title {
  margin: 0;
  font-size: 1.4rem;
  
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--landing-subtle);
}

.coming-soon-platforms {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.coming-soon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 28px;
  padding: 0.5rem 0.9rem;
  color: var(--landing-blue);
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.coming-soon-button:hover {
  background: #f3f8ff;
  transform: translateY(-2px);
}

.coming-soon-button:active {
  transform: translateY(0);
}

.coming-soon-button i {
  font-size: 0.95rem;
}

.coming-soon-button img{
  border-radius:12px;
}

.newsletter-card {
  width: min(100%, 660px);
  justify-self: center;
  display: grid;
  gap: 0.7rem;
  padding: 1.05rem;
  margin: 1em auto .8em;
}

.newsletter-title {
  margin: 0;
  font-family: var(--txt-font);
  text-transform: uppercase;
  font-weight: 700;
  color:var(--secondary);
  font-size: 2em;
  line-height: 1.2;
  text-align: center;
}

.newsletter-subtitle {
  margin: 0;
  text-align: center;
  color: var(--landing-subtle);
  font-size: 0.92rem;
}

.newsletter-form {
  display: grid;
  gap: 0.5rem;
}

.newsletter-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.newsletter-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.newsletter-input {
  flex: 1 1 auto;
  min-height: 40px;
  border-radius: 20px;
  border: 1px solid rgba(31, 101, 214, 0.28);
  padding: 0.55rem 0.75rem;
  background: #fff;
  color: var(--landing-ink);
  font-size: 0.95rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--landing-blue);
  box-shadow: 0 0 0 3px rgba(31, 101, 214, 0.12);
}

.newsletter-submit {
  min-height: 40px;
  border: 1px solid var(--landing-blue);
  border-radius: 20px;
  padding: 0 0.9rem;
  background: var(--landing-blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.newsletter-submit:hover {
  background: var(--landing-orange);
  border-color: var(--landing-orange);
  transform: translateY(-1px);
}

.newsletter-submit:active {
  transform: translateY(0);
}

.newsletter-submit i {
  font-size: 0.88rem;
}

.outline-link {
  color: var(--landing-blue);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 101, 214, 0.25);
  background: rgba(255, 255, 255, 0.75);
}

.outline-link:hover {
  transform: translateY(-1px);
  background: #fff;
}

.card {
  background: var(--landing-card);
  border: 1px solid var(--landing-line);
  border-radius: 18px;
  padding: 1rem;
}

.hero-meta {
  display: grid;
  gap: 0.6rem;
}

.hero-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero-meta-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.avatar {
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.avatar.bordered {
  border: 2px solid var(--landing-card);
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  margin-left: -8px;
}

.avatar-group img:first-child {
  margin-left: 0;
}

.features {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: var(--landing-card);
  border: 1px solid var(--landing-line);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 170px 1fr;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(20, 25, 40, 0.1);
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.feature-title {
  color: var(--landing-blue);
}

.feature-link {
  width: fit-content;
  padding: 0.46rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--landing-orange);
  font-weight: 600;
}

.feature-link:hover {
  background: var(--landing-sand);
  transform: translateY(-1px);
}

.gamification {
  display: grid;
  gap: 0.9rem;
}

.quests-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.quest-card {
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--landing-line);
  background: linear-gradient(150deg, #fff, #f8fbff);
}

.closing {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  animation: rise-in 720ms ease both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-footer {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--landing-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--landing-subtle);
  font-size: 0.85rem;
}

.footer-credit {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--landing-blue);
}

@media (max-width: 680px) {
  .landing-shell {
    width: min(1100px, calc(100% - 1rem));
    padding-bottom: 1.5rem;
  }

  .landing-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    border-radius: 20px;
    padding: 1.1rem;
  }

  .feature-card {
    grid-template-rows: 150px 1fr;
  }

  .closing {
    justify-items: stretch;
  }

  .newsletter-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-submit {
    width: 100%;
    justify-content: center;
  }

  .landing-footer {
    flex-direction: column;
    text-align: center;
  }
}

    .brand{
      font-family: var(--title-font);
      font-size: var(--main-logo-fontsize);
      margin: 0;
    }
    
.hero-logo-n{
    display:inline-block;
    width:1.5em;
    margin:-.6em -.4em -.4em -.4em;
}
.hero-logo-n:last-child{
    margin-left: -1.1em;
}
.hide{
    display:none;
}
