:root {
  --yellow: #ffe782;
  --yellow-soft: #fff1a8;
  --blue: #173a9b;
  --blue-dark: #102d7d;
  --ink: #10162b;
  --white: #fffdf5;
  --muted: #68708a;
  --line: rgba(16, 22, 43, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255,253,245,.9);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}
.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}
.header-link {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
}
.header-link span { margin-left: 8px; }

.hero {
  min-height: 700px;
  padding: clamp(60px, 8vw, 105px) clamp(20px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  background: var(--yellow);
  overflow: hidden;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.hero h1, .manifesto h2, .goncalo h2, .signup h2, .final-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.065em;
  line-height: .86;
  margin: 22px 0;
}
.hero h1 {
  font-size: clamp(65px, 9vw, 140px);
  color: var(--blue);
  max-width: 720px;
}
em { font-style: normal; color: var(--blue); }
.hero-text {
  max-width: 470px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  margin: 28px 0;
}
.hero-actions { display: flex; align-items: center; gap: 25px; }
.btn {
  border: 0;
  border-radius: 999px;
  padding: 16px 23px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,22,43,.13); }
.btn-primary { background: var(--blue); color: white; }
.text-link { font-size: 14px; font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 3px; }

.hero-visual {
  min-height: 530px;
  position: relative;
  display: grid;
  place-items: center;
}
.sun {
  position: absolute;
  width: min(40vw, 440px);
  height: min(40vw, 440px);
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: .18;
}
.visual-card {
  width: min(430px, 75vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--blue);
  box-shadow: 18px 18px 0 var(--blue);
  transform: rotate(3deg);
  background: var(--yellow);
}
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-note {
  position: absolute;
  background: var(--blue);
  color: white;
  font-size: 12px;
  line-height: 1.05;
  letter-spacing: .08em;
  font-weight: 800;
  padding: 17px 20px;
  transform: rotate(-7deg);
}
.note-top { top: 11%; right: 2%; }
.note-bottom { bottom: 8%; left: 2%; transform: rotate(6deg); }
.note-bottom strong { font-size: 22px; }

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--blue);
  color: white;
}
.quick-info div {
  padding: 25px clamp(18px, 4vw, 55px);
  border-right: 1px solid rgba(255,255,255,.2);
}
.quick-info div:last-child { border: 0; }
.quick-info small {
  display: block;
  opacity: .65;
  font-size: 10px;
  letter-spacing: .15em;
  margin-bottom: 6px;
}
.quick-info strong { font-size: 16px; }

.section {
  padding: clamp(75px, 10vw, 140px) clamp(20px, 8vw, 120px);
}
.section-label {
  font-size: 10px;
  letter-spacing: .17em;
  font-weight: 800;
  color: var(--muted);
}
.manifesto-content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10%;
  margin-top: 50px;
}
.manifesto h2 { font-size: clamp(55px, 8vw, 115px); }
.manifesto h2 span { color: var(--blue); }
.manifesto-content > div:last-child { padding-top: 25px; max-width: 510px; }
.lead { font-size: clamp(20px, 2.4vw, 30px); line-height: 1.25; }
.manifesto-content p:not(.lead) { color: var(--muted); margin-top: 25px; }

.pace-section {
  background: var(--blue);
  color: white;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 8vw, 120px);
}
.pace-inner {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 10%;
  align-items: end;
}
.light { color: var(--yellow); }
.pace-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(52px, 7vw, 105px);
  line-height: .88;
  letter-spacing: -.065em;
  margin: 35px 0 0;
}
.pace-section h2 span { color: var(--yellow); }
.pace-copy { border-left: 1px solid rgba(255,255,255,.25); padding-left: 40px; }
.big-number {
  font-family: "Space Grotesk", sans-serif;
  color: var(--yellow);
  font-size: 110px;
  line-height: .7;
  margin-bottom: 55px;
}
.pace-copy p { font-size: 22px; max-width: 400px; }

.goncalo-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 9vw, 130px);
  align-items: center;
}
.portrait-placeholder {
  aspect-ratio: 1 / 1;
  background: var(--yellow);
  border-radius: 30px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.portrait-inner {
  width: 78%;
  height: 78%;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  transform: rotate(-7deg);
}
.portrait-inner span {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 700;
  letter-spacing: -.08em;
}
.portrait-inner small {
  position: absolute;
  bottom: 22%;
  font-size: 9px;
  letter-spacing: .17em;
  font-weight: 800;
}
.goncalo h2 { font-size: clamp(65px, 9vw, 125px); }
.goncalo-copy > p:not(.eyebrow) { max-width: 520px; font-size: 19px; color: var(--muted); }
.goncalo-copy > p:last-child { margin-top: 18px; }

.signup {
  background: var(--yellow-soft);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 9vw, 130px);
}
.signup h2 { font-size: clamp(60px, 8vw, 115px); }
.signup h2 span { color: var(--blue); }
.signup-heading > p { color: var(--muted); font-size: 18px; max-width: 390px; }

.signup-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(25px, 4vw, 48px);
  box-shadow: 10px 10px 0 rgba(23,58,155,.12);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 7px;
  letter-spacing: .05em;
}
.field input, .field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #b9bdc9;
  background: transparent;
  padding: 11px 0;
  outline: none;
  color: var(--ink);
  border-radius: 0;
}
.field input:focus, .field select:focus { border-color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 28px 0;
  font-size: 12px;
  color: var(--muted);
}
.check input { margin-top: 3px; accent-color: var(--blue); }
.btn-dark { width: 100%; background: var(--blue); color: white; font-size: 15px; }
.form-note { color: var(--muted); font-size: 11px; text-align: center; margin: 14px 0 0; }
.success-message {
  margin-top: 18px;
  background: #eaf4df;
  border: 1px solid #b9d49b;
  padding: 15px;
  border-radius: 14px;
  color: #315020;
}
.success-message strong, .success-message span { display: block; }
.success-message span { font-size: 13px; margin-top: 3px; }

.final-cta {
  min-height: 520px;
  padding: 70px clamp(20px, 8vw, 120px);
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(35px, 8vw, 120px);
  text-align: left;
}
.final-cta h2 {
  color: white;
  font-size: clamp(70px, 10vw, 145px);
}
.final-cta h2 em { color: var(--yellow); }
.cta-circle {
  flex: 0 0 auto;
  width: 190px;
  height: 190px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--yellow);
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: .9;
  transform: rotate(-10deg);
}
footer {
  background: var(--ink);
  color: white;
  padding: 25px clamp(20px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 700;
}
footer span { color: var(--yellow); }

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-visual { min-height: 430px; }
  .visual-card { width: min(380px, 75vw); }
  .sun { width: 350px; height: 350px; }
  .quick-info { grid-template-columns: 1fr 1fr; }
  .quick-info div:nth-child(2) { border-right: 0; }
  .quick-info div { border-bottom: 1px solid rgba(255,255,255,.2); }
  .manifesto-content, .pace-inner, .goncalo-grid, .signup { grid-template-columns: 1fr; }
  .manifesto-content > div:last-child { padding-top: 0; }
  .pace-copy { border-left: 0; border-top: 1px solid rgba(255,255,255,.25); padding: 35px 0 0; }
  .big-number { margin-bottom: 35px; }
  .signup { gap: 50px; }
  .final-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .site-header { height: 65px; }
  .brand { font-size: 10px; }
  .header-link { font-size: 11px; padding: 8px 12px; }
  .hero h1 { font-size: 64px; }
  .hero-visual { min-height: 350px; }
  .visual-card { width: 280px; box-shadow: 12px 12px 0 var(--blue); }
  .note-top { right: 0; }
  .note-bottom { left: 0; }
  .quick-info strong { font-size: 14px; }
  .quick-info div { padding: 20px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .section { padding-top: 75px; padding-bottom: 75px; }
  footer { flex-direction: column; }
}
