:root {
  --blue: #073bff;
  --blue-dark: #001a8d;
  --lime: #c8fa28;
  --ink: #151829;
  --muted: #626879;
  --soft: #f5f6fb;
  --line: #d9dbe6;
  --white: #ffffff;
  --black: #05060a;
  --max: 1180px;
  --shadow: 0 22px 70px rgba(5, 6, 10, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.narrow {
  max-width: 810px;
}

.section-pad {
  padding: clamp(72px, 9vw, 116px) 0;
}

.button {
  min-height: 36px;
  padding: 11px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: -0.04em;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.button-blue {
  min-width: 330px;
  color: var(--white);
  background: var(--blue);
}

.button-lime {
  width: 100%;
  color: var(--blue-dark);
  background: var(--lime);
}

.button-white {
  min-width: 330px;
  color: var(--blue);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.founders-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-media {
  background-image:
    linear-gradient(180deg, rgba(5, 6, 10, 0.35), rgba(5, 6, 10, 0.76)),
    linear-gradient(90deg, rgba(5, 6, 10, 0.7), rgba(5, 6, 10, 0.18)),
    url("/images/hero.jpg");
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 72px));
  min-height: 640px;
  margin: 0 auto;
  padding: 30px 0 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.brand img {
  width: clamp(156px, 17vw, 230px);
  height: auto;
}

.hero-copy {
  margin-top: clamp(54px, 9vw, 86px);
  max-width: 960px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: bold;
}

.hero h1 span {
  display: block;
  color: var(--lime);
}

.hero p {
  max-width: 930px;
  margin: 22px 0 20px;
  color: var(--lime);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
}

.story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(44px, 8vw, 92px);
  align-items: center;
}

.story h2 {
  max-width: 450px;
  margin: 0 0 38px;
  color: #666871;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: bold;
}

.story p {
  max-width: 460px;
  margin: 0;
  color: #4d5363;
  font-size: 14px;
  font-weight: 600;
}

.photo-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.photo-card > img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.round-badge {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 122px;
  height: 122px;
  padding: 20px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--lime);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1.02;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.photo-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  padding: 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
}

.photo-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 22px;
  font-weight: bold;
}

.photo-note span {
  font-size: 12px;
  font-weight: 700;
}

.benefits {
  color: var(--white);
  background: var(--blue);
}

.center-heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.center-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: bold;
}

.center-heading p {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.benefit-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 96px;
}

.benefit-grid article {
  max-width: 410px;
}

.benefit-grid h3 {
  margin: 0 0 9px;
  color: var(--lime);
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.03;
  font-weight: bold;
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.fit {
  background: var(--soft);
}

.fit .center-heading h2 {
  color: #666871;
}

.fit .center-heading p {
  color: #666871;
}

.compact {
  max-width: 760px;
}

.sector-grid {
  max-width: 950px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 28px;
}

.sector-grid span {
  min-height: 42px;
  padding: 10px 16px;
  display: grid;
  place-items: center;
  color: #2d2f38;
  background: #d9d7e0;
  border: 1px solid #8e8b9a;
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}

.impact {
  background: var(--soft);
}

.impact h2 {
  max-width: 780px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(39px, 6vw, 62px);
  line-height: 0.96;
  font-weight: bold;
}

.impact p {
  max-width: 650px;
  margin: 28px 0 52px;
  color: #4b5262;
  font-size: 16px;
  font-weight: 600;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.metric-grid article {
  min-height: 86px;
  padding: 18px 13px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fbfcff;
  border: 1px solid #dce4ff;
  border-radius: 12px;
  text-align: center;
}

.metric-grid strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
  font-weight: bold;
}

.metric-grid span {
  color: #52607d;
  font-size: 11px;
  font-weight: 800;
}

.founders {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.founders-media {
  background-image:
    linear-gradient(90deg, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.72) 45%, rgba(5, 6, 10, 0.22)),
    url("/images/pistadepadelfoia.jpg");
  filter: grayscale(1);
}

.founders-content {
  position: relative;
  z-index: 1;
  min-height: 360px;
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 46px;
  align-items: center;
}

.founders h2 {
  max-width: 650px;
  margin: 0;
  color: var(--lime);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.95;
  font-weight: bold;
}

.founders p {
  max-width: 700px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
}

.slots {
  min-width: 170px;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
}

.slots span {
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.04em;
}

.slots strong {
  display: block;
  font-size: 112px;
  line-height: 0.85;
  font-weight: bold;
}

.form-section {
  background: var(--white);
}

.form-grid {
  max-width: 830px;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 38px;
  align-items: start;
}

.dossier-card {
  min-height: 480px;
  padding: 34px 30px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 6, 10, 0.9), rgba(20, 28, 40, 0.76)),
    url("/images/court.jpg") center/cover;
  border-radius: 16px;
}

.dossier-card h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: bold;
}

.dossier-card p,
.dossier-card li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.dossier-card ul {
  margin: 26px 0 0;
  padding-left: 18px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: #676b78;
  font-size: 12px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #aeb1ba;
  border-radius: 8px;
}

.lead-form textarea {
  min-height: 100px;
  resize: vertical;
}

.privacy-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: -2px;
  color: #7c808a;
  font-size: 11px;
}

.privacy-check input {
  width: 13px;
  min-height: 13px;
  padding: 0;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.faq {
  background: var(--white);
}

.faq h2 {
  margin: 0 0 30px;
  color: var(--blue);
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1;
  font-weight: bold;
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 17px 0;
  color: var(--blue);
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
}

details p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.closing {
  padding: 58px 0;
  color: var(--white);
  background: var(--blue);
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.closing h2 {
  max-width: 550px;
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: bold;
}

.closing p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .story-grid,
  .founders-content,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .slots {
    width: 170px;
  }

  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container,
  .hero-inner {
    width: calc(100% - 28px);
  }

  .button,
  .button-blue,
  .button-white {
    width: 100%;
    min-width: 0;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .brand img {
    width: 160px;
  }

  .hero-copy {
    margin-top: 88px;
  }

  .hero h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .story h2 {
    letter-spacing: -0.04em;
  }

  .photo-card,
  .photo-card > img {
    min-height: 360px;
    height: 360px;
  }

  .round-badge {
    width: 100px;
    height: 100px;
    font-size: 12px;
  }

  .benefit-grid,
  .sector-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .center-heading {
    text-align: left;
  }

  .center-heading h2,
  .closing h2,
  .dossier-card h2 {
    letter-spacing: -0.04em;
  }

  .slots strong {
    font-size: 88px;
  }
}
