:root {
  --black: #171815;
  --yellow: #f4c430;
  --cream: #f7f5ed;
  --line: #e6e1d2;
  --muted: #74746c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--black);
  font-family: "DM Sans", sans-serif;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-header {
  height: 78px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
  background: #fff;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 800 19px Manrope;
}
.logo span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--yellow);
  overflow: hidden;
}
.logo span img,
.mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
nav {
  display: flex;
  gap: 30px;
  margin: auto;
  font-size: 12px;
  color: #5e5e58;
}
nav a:hover {
  color: #a47700;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 9px;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.button.small {
  padding: 11px 16px;
}
.button.yellow {
  background: var(--yellow);
  color: var(--black);
}
.hero {
  min-height: 700px;
  padding: 85px 6vw 80px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6vw;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.pill,
.kicker {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #947000;
}
.pill {
  padding: 7px 10px;
  border: 1px solid #ddca79;
  border-radius: 15px;
  background: #fff8d8;
}
.hero h1 {
  font: 800 clamp(48px, 5vw, 76px)/1.03 Manrope;
  letter-spacing: -4px;
  margin: 25px 0;
}
.hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: #a77b00;
}
.hero-copy > p {
  font-size: 17px;
  line-height: 1.7;
  color: #66665f;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 32px 0;
}
.text-link {
  font-size: 12px;
  font-weight: 700;
}
.trust {
  display: flex;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: #77766f;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 196, 48, 0.35),
    transparent 65%
  );
}
.app-preview {
  z-index: 1;
  width: min(680px, 100%);
  height: 430px;
  border: 7px solid #292a26;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 32px 70px rgba(23, 24, 21, 0.2);
  display: grid;
  grid-template-columns: 65px 1fr;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.preview-sidebar {
  background: #191a17;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 22px;
}
.mini-logo {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 800;
  overflow: hidden;
}
.preview-sidebar i {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #373833;
}
.preview-main {
  padding: 26px;
}
.preview-top {
  display: flex;
  justify-content: space-between;
}
.preview-top div {
  display: flex;
  flex-direction: column;
}
.preview-top small {
  font-size: 7px;
  color: #999;
}
.preview-top strong {
  font: 700 19px Manrope;
  margin-top: 4px;
}
.preview-top > span {
  background: var(--yellow);
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 700;
}
.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 25px 0;
}
.preview-cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  display: flex;
  flex-direction: column;
}
.preview-cards small {
  font-size: 7px;
  color: #888;
}
.preview-cards b {
  font-size: 16px;
  margin: 8px 0;
}
.preview-cards em {
  font-style: normal;
  color: #288063;
  font-size: 7px;
}
.preview-cards .warn {
  color: #be683b;
}
.preview-table {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 14px;
}
.preview-table > strong {
  font-size: 10px;
}
.preview-table > div {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid #eeeae0;
  padding: 10px 0;
}
.preview-table > div:first-of-type {
  margin-top: 10px;
}
.round {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: #f0eee6;
  font-size: 8px;
  font-weight: 700;
}
.preview-table p {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 8px;
}
.preview-table p small {
  color: #999;
  margin-top: 2px;
}
.preview-table b {
  font-size: 8px;
  margin-left: auto;
}
.preview-table i {
  font-style: normal;
  font-size: 6px;
  background: #fae8dc;
  color: #aa5b33;
  padding: 4px 6px;
  border-radius: 8px;
}
.preview-table i.ok {
  background: #e1f1e9;
  color: #28745f;
}
.float-card {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: 0 14px 35px rgba(23, 24, 21, 0.13);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.float-card > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 800;
}
.float-card p {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.float-card b {
  font-size: 9px;
}
.float-card small {
  font-size: 7px;
  color: #888;
  margin-top: 3px;
}
.float-card.one {
  left: -20px;
  bottom: 40px;
}
.float-card.two {
  right: -20px;
  top: 35px;
}
.logo-strip {
  text-align: center;
  padding: 35px 6vw;
  border-bottom: 1px solid var(--line);
}
.logo-strip p {
  font-size: 8px;
  letter-spacing: 2px;
  color: #9a9991;
}
.logo-strip div {
  display: flex;
  justify-content: center;
  gap: 7vw;
  margin-top: 22px;
  color: #8d8b83;
  font: 700 11px Manrope;
}
.section {
  padding: 105px 8vw;
}
.intro {
  text-align: center;
}
.intro h2,
.section-head h2,
.connector-section h2,
.security h2,
.cta h2 {
  font: 700 clamp(32px, 4vw, 52px)/1.15 Manrope;
  letter-spacing: -2px;
  margin: 15px 0;
}
.intro > p {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 55px;
}
.flow > div {
  width: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.flow div > span {
  font-size: 10px;
  color: #a47700;
  font-weight: 800;
}
.flow b {
  font: 700 14px Manrope;
  margin: 15px 0 7px;
}
.flow small {
  color: var(--muted);
}
.flow .featured {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-10px);
}
.flow .featured span {
  color: var(--black);
}
.flow > i {
  font-style: normal;
  color: #aaa;
}
.features {
  background: var(--cream);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-head p {
  max-width: 390px;
  color: var(--muted);
  line-height: 1.6;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 45px;
}
.feature-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 25px;
}
.feature-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #fff0ad;
  border-radius: 10px;
  font-size: 18px;
}
.feature-grid h3 {
  font: 700 14px Manrope;
  margin: 18px 0 8px;
}
.feature-grid p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.connector-section {
  background: var(--black);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: center;
}
.kicker.light {
  color: #e7c95c;
}
.connector-section > div > p {
  color: #aaa9a1;
  line-height: 1.7;
}
.connector-section ul {
  list-style: none;
  padding: 0;
  margin: 27px 0;
}
.connector-section li {
  font-size: 12px;
  margin: 12px 0;
  color: #dad8ce;
}
.connector-section li:before {
  content: "✓";
  color: var(--yellow);
  margin-right: 10px;
}
.connector-diagram {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.zino-core {
  z-index: 2;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.07);
}
.zino-core-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 3px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}
.zino-core-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.zino-core b {
  font: 800 18px Manrope;
}
.zino-core small {
  font-size: 8px;
}
.connector {
  position: absolute;
  background: #292a26;
  border: 1px solid #454640;
  border-radius: 9px;
  padding: 13px 16px;
  font-size: 10px;
  font-weight: 700;
}
.connector small {
  display: block;
  color: #8e9087;
  font-size: 7px;
  margin-top: 4px;
}
.c1 {
  right: 0;
  top: 50px;
}
.c2 {
  right: -10px;
  bottom: 55px;
}
.c3 {
  left: 0;
  bottom: 70px;
}
.security {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.security > span {
  font-size: 42px;
}
.security p {
  color: var(--muted);
  line-height: 1.6;
}
.security-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.security-points p {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.security-points b {
  color: var(--black);
  font: 700 17px Manrope;
}
.security-points small {
  font-size: 8px;
  margin-top: 5px;
}
.cta {
  text-align: center;
  background: linear-gradient(140deg, #24251f, #171815);
  color: #fff;
  padding: 100px 8vw 110px;
}
.cta p {
  color: #aaa9a1;
  margin: 0 0 32px;
}
.cta .button {
  margin-top: 4px;
}
footer {
  padding: 40px 6vw;
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}
footer > p {
  font-size: 10px;
  color: var(--muted);
}
footer > div {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 9px;
  color: var(--muted);
}
footer > small {
  font-size: 8px;
  color: #999;
}

/* Lisibilité harmonisée avec l’application */
.site-header nav,
.header-actions {
  font-size: 14px;
}
.button {
  font-size: 14px;
}
.kicker,
.flow div > span {
  font-size: 12px;
}
.logo-strip p {
  font-size: 11px;
}
.logo-strip div {
  font-size: 13px;
}
.intro > p,
.section-head p,
.connector-section > div > p,
.security p,
.cta p {
  font-size: 16px;
}
.flow b,
.feature-grid h3 {
  font-size: 16px;
}
.flow small,
.feature-grid p,
.connector-section li {
  font-size: 14px;
}
.security-points small {
  font-size: 12px;
}
footer > p,
footer > div,
footer > small {
  font-size: 12px;
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy > p {
    margin: auto;
  }
  .hero-actions,
  .trust {
    justify-content: center;
  }
  .hero-visual {
    min-height: 450px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .connector-section {
    grid-template-columns: 1fr;
  }
  .security {
    grid-template-columns: auto 1fr;
  }
  .security-points {
    grid-column: 1/-1;
  }
  .section-head {
    display: block;
  }
  .flow {
    flex-direction: column;
  }
  .flow > i {
    transform: rotate(90deg);
  }
}
@media (max-width: 600px) {
  .cta {
    padding: 72px 22px 80px;
  }
  .site-header {
    padding: 0 20px;
  }
  .login-link {
    display: none;
  }
  .hero {
    padding: 50px 20px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .trust {
    flex-wrap: wrap;
  }
  .hero-visual {
    min-height: 320px;
  }
  .app-preview {
    height: 300px;
    grid-template-columns: 45px 1fr;
  }
  .preview-main {
    padding: 14px;
  }
  .preview-cards article:nth-child(3) {
    display: none;
  }
  .preview-cards {
    grid-template-columns: 1fr 1fr;
  }
  .float-card {
    display: none;
  }
  .logo-strip div {
    flex-wrap: wrap;
  }
  .section {
    padding: 75px 22px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .flow > div {
    width: 100%;
  }
  .security {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .security-points {
    grid-template-columns: 1fr;
  }
  .connector-diagram {
    min-height: 360px;
  }
  .c3 {
    left: -10px;
  }
  .c1 {
    right: -10px;
  }
  footer {
    flex-wrap: wrap;
  }
  footer > div {
    order: 3;
    margin: 0;
    width: 100%;
  }
}
.pricing-section {
  background: #f7f5ed;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.pricing-card {
  padding: 34px;
  border: 1px solid #ddd9cc;
  border-radius: 20px;
  background: #fff;
}
.pricing-card.featured {
  border-color: #d9aa12;
  box-shadow: 0 18px 45px rgba(30, 34, 30, 0.08);
}
.pricing-card > span {
  color: #957100;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.pricing-card h3 {
  margin: 10px 0;
  font:
    800 25px Manrope,
    sans-serif;
}
.pricing-card p,
.pricing-card li {
  color: #64706c;
  line-height: 1.55;
}
.pricing-card ul {
  min-height: 145px;
  padding-left: 20px;
}
.pricing-card .button {
  display: inline-block;
  margin-top: 12px;
}
@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
