:root {
  --ink: #111111;
  --muted: #616161;
  --line: #dddddd;
  --paper: #ffffff;
  --soft: #f5f3ef;
  --gold: #b88946;
  --gold-dark: #8b6532;
  --night: #101010;
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.fullscreen-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fullscreen-button:hover {
  background: var(--gold-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 132px;
  height: 68px;
  object-fit: cover;
  object-position: center;
  background: #000000;
}

.brand-line {
  width: 1px;
  height: 38px;
  background: var(--line);
}

.brand-copy {
  max-width: 210px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.08;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.nav-cta {
  color: var(--gold-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: stretch;
  min-height: 690px;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 43%, rgba(255, 255, 255, 0.5) 58%, #f2f0ec 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 690px;
  padding: clamp(52px, 8vw, 114px) clamp(22px, 5vw, 66px);
}

.hero h1 {
  max-width: 610px;
  margin: 16px 0 24px;
  font-size: clamp(43px, 6vw, 78px);
  font-weight: 560;
  line-height: 1.02;
  color: #050505;
}

.hero p {
  max-width: 570px;
  margin: 0;
  color: #202020;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 500;
  line-height: 1.75;
}

.hero-media {
  min-height: 600px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 38%, rgba(255, 255, 255, 0.32) 66%, rgba(255, 255, 255, 0) 100%);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.button.primary {
  color: #ffffff;
  background: var(--gold);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
}

.metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  background: var(--night);
  color: #ffffff;
  box-shadow: none;
}

.metrics + .split-section {
  padding-top: clamp(74px, 8vw, 118px);
}

.metrics article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  min-height: 112px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  align-content: center;
}

.metrics article:last-child {
  border-right: 0;
}

.metrics .icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--gold);
}

.metrics .icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metrics .icon .argentina-map {
  width: 42px;
  height: 62px;
}

.metrics strong,
.metrics small {
  text-transform: uppercase;
}

.metrics strong {
  font-size: 14px;
}

.metrics small {
  color: #d8d8d8;
  font-size: 12px;
  font-weight: 800;
}

.split-section,
.benefits,
.community-vision,
.coming,
.signup {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 36px);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.image-frame {
  position: relative;
  padding: 18px 0 0 18px;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 42%;
  height: 52%;
  border: 2px solid var(--gold);
}

.image-frame img {
  position: relative;
  object-fit: cover;
}

.section-copy h2,
.community-panel h2,
.vision-panel h2,
.signup h2 {
  margin: 14px 0 22px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.08;
}

.section-copy p,
.signup-copy p {
  color: #363636;
  font-size: 16px;
  line-height: 1.75;
}

.benefits {
  padding-top: 28px;
}

.section-kicker {
  margin-bottom: 30px;
  text-align: center;
  color: var(--ink);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-grid article {
  min-height: 220px;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  color: var(--gold-dark);
}

.line-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid h3 {
  margin: 0 0 13px;
  font-size: 15px;
  line-height: 1.25;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.community-vision {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.community-panel {
  padding: clamp(46px, 6vw, 78px) clamp(22px, 5vw, 58px) clamp(46px, 6vw, 78px) 0;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.community-grid span {
  display: grid;
  grid-template-rows: 34px auto;
  gap: 8px;
  min-height: 108px;
  place-items: center;
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.community-grid svg {
  width: 30px;
  height: 30px;
  color: var(--gold-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vision-panel {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 470px;
  overflow: hidden;
  color: #ffffff;
  background: var(--night);
}

.vision-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  object-fit: cover;
}

.vision-panel > div {
  position: relative;
  padding: clamp(38px, 6vw, 70px);
}

.vision-panel ul {
  display: grid;
  gap: 11px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.vision-panel li::before {
  content: "•";
  color: var(--gold);
  margin-right: 12px;
}

.vision-panel p {
  max-width: 430px;
  line-height: 1.6;
}

.coming {
  padding-top: 54px;
  padding-bottom: 54px;
}

.coming-strip {
  display: grid;
  grid-template-columns: repeat(10, minmax(90px, 1fr));
  border-left: 1px solid var(--line);
  overflow-x: auto;
}

.coming-strip span {
  display: grid;
  grid-template-rows: 34px auto;
  gap: 8px;
  min-height: 92px;
  min-width: 118px;
  place-items: center;
  padding: 12px;
  border-right: 1px solid var(--line);
  color: #2f2f2f;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.coming-strip svg {
  width: 28px;
  height: 28px;
  color: var(--gold-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signup {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(90deg, #f3f0ea 0%, #ffffff 47%, #ffffff 100%);
}

.signup-copy {
  position: relative;
  min-height: 430px;
  padding: clamp(34px, 5vw, 58px);
  border-left: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.68) 100%),
    url("assets/signup-reference-sharp.jpg") right bottom / 72% auto no-repeat;
  overflow: hidden;
}

.signup-copy .eyebrow {
  color: var(--gold-dark);
}

.signup-copy h2 {
  max-width: 620px;
  margin: 16px 0 18px;
  color: #111111;
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 500;
  line-height: 1.04;
}

.signup-rule {
  display: block;
  width: 82px;
  height: 4px;
  margin: 0 0 30px;
  background: var(--gold);
}

.signup-copy p {
  position: relative;
  max-width: 560px;
  margin: 0 0 26px;
  color: #252525;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.65;
}

.signup-copy .lead {
  font-size: clamp(18px, 1.9vw, 24px);
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid #d6d0c5;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid rgba(184, 137, 70, 0.38);
  border-color: var(--gold);
}

.checkbox,
.form-button,
.form-message {
  grid-column: 1 / -1;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin-top: 4px;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
  gap: 34px;
  padding: 64px max(20px, calc((100vw - var(--max)) / 2)) 58px;
  color: #ffffff;
  background: #090909;
}

.footer-logo {
  width: 190px;
  height: 142px;
  margin-bottom: 16px;
  object-fit: cover;
  object-position: center;
  background: #000000;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: #d8d8d8;
  font-size: 13px;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .split-section,
  .community-vision,
  .signup {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding-bottom: 34px;
  }

  .hero-media {
    min-height: 320px;
    order: -1;
  }

  .hero::after {
    background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.22) 64%, rgba(255, 255, 255, 0) 100%);
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    max-width: none;
  }

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

  .community-panel {
    padding-right: 0;
  }

  .signup-copy {
    min-height: 360px;
    background-size: 58% auto;
  }

  .signup-form {
    padding: 24px;
  }

  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand-copy,
  .brand-line {
    display: none;
  }

  .brand-logo {
    width: 108px;
    height: 56px;
  }

  .site-nav {
    top: 70px;
    right: 12px;
    left: 12px;
  }

  .fullscreen-button {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metrics,
  .benefit-grid,
  .signup-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metrics article,
  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  }

  .metrics article {
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .split-section,
  .benefits,
  .community-vision,
  .coming,
  .signup {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .vision-panel {
    min-height: 430px;
  }

  .coming-strip {
    grid-template-columns: repeat(10, 132px);
  }

  .signup-copy {
    min-height: 430px;
    padding: 28px 20px 190px;
    background:
      linear-gradient(0deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.98) 56%),
      url("assets/signup-reference-sharp.jpg") right bottom / 118% auto no-repeat;
  }

  .signup-form {
    padding: 20px;
  }
}
