/*
Theme Name: KibōFlow — Ouverture prochaine
Theme URI: https://kiboflow.com
Author: KibōFlow
Description: Landing page temporaire et minimaliste pour KibōFlow.
Version: 2.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: kiboflow
*/

:root {
  --navy: #14213d;
  --navy-light: #263b52;
  --white: #ffffff;
  --turquoise: #41c6d5;
  --sage: #7daa92;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }

.landing {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: linear-gradient(125deg, #101c35 0%, #14213d 67%, #263b52 100%);
}
.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: radial-gradient(rgba(255,255,255,.55) .7px, transparent .7px);
  background-size: 27px 27px;
  mask-image: linear-gradient(90deg, transparent, black 64%, transparent);
  pointer-events: none;
}
.flow { position: absolute; border-radius: 50%; border: 1px solid rgba(65,198,213,.2); }
.flow-one { width: 650px; height: 650px; right: -210px; top: -210px; }
.flow-two { width: 430px; height: 430px; right: 30px; top: 10px; box-shadow: 0 0 0 80px rgba(125,170,146,.025); }

.site-header {
  height: 112px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.wordmark { font-size: 30px; font-weight: 800; letter-spacing: -.045em; }
.contact-link { padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.52); font-size: 13px; font-weight: 700; }
.contact-link span { margin-left: 7px; color: var(--turquoise); }

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 68px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #dce8eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.status span { width: 7px; height: 7px; border-radius: 50%; background: var(--turquoise); box-shadow: 0 0 0 6px rgba(65,198,213,.11); }
.eyebrow { margin: 0 0 22px; color: #9fdbdf; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, p { margin-top: 0; }
h1 {
  max-width: 930px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -.058em;
  font-weight: 780;
}
.intro { max-width: 820px; margin-bottom: 30px; color: #d5dde8; font-size: 17px; line-height: 1.7; }
.offers-grid { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin: 0 0 34px; }
.offer-card {
  min-height: 300px;
  padding: 27px 25px 29px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 9px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 20px 48px rgba(0,0,0,.1);
  backdrop-filter: blur(3px);
}
.offer-number { display: block; margin-bottom: 30px; color: var(--turquoise); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.offer-card h2 { margin: 0 0 18px; color: var(--white); font-size: clamp(21px, 2vw, 27px); line-height: 1.13; letter-spacing: -.035em; }
.offer-card p { margin: 0; color: #cbd5e2; font-size: 14px; line-height: 1.65; }
.primary-button { display: inline-flex; align-items: center; gap: 24px; padding: 17px 21px; border-radius: 5px; background: var(--turquoise); color: var(--navy); font-size: 13px; font-weight: 800; box-shadow: 0 18px 36px rgba(0,0,0,.15); transition: transform .2s ease; }
.primary-button:hover { transform: translateY(-2px); }

footer {
  min-height: 90px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: #9caabd;
  font-size: 12px;
}
footer p { margin: 0; }
footer a { color: #9fdbdf; font-weight: 700; }

@media (max-width: 900px) {
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: auto; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 30px, 1120px); }
  .site-header { height: 90px; }
  .wordmark { font-size: 25px; }
  .contact-link { font-size: 12px; }
  .content { padding-block: 66px; }
  .status { margin-bottom: 40px; }
  h1 { font-size: 40px; }
  .intro { font-size: 16px; }
  .offer-card { padding: 23px 21px 25px; }
  footer { min-height: 130px; flex-direction: column; justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
