@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0A1628;
  --deep-blue: #132744;
  --sky: #75AADB;
  --gold: #F4C430;
  --white: #FFFFFF;
  --light-gray: #E8EDF4;
  --muted: #8FA3BF;
  --card-bg: rgba(255,255,255,0.06);
  --card-border: rgba(117,170,219,0.15);
  --green: #81C784;
  --red: #E57373;
}

.lang-toggle {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-616px);
  z-index: 1000;
  display: flex;
  gap: 4px;
  padding: 6px;
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* On viewports too narrow to center the 1280px slide, pin to the edge. */
@media (max-width: 1320px) {
  .lang-toggle {
    left: 24px;
    transform: none;
  }
}

.lang-btn {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover { color: var(--white); }

.lang-btn.active {
  background: var(--sky);
  color: var(--navy);
}

@media print {
  .lang-toggle { display: none; }
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #000;
  color: var(--white);
}

.slide {
  width: 1280px;
  height: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  page-break-after: always;
  background: var(--navy);
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.slide-h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.2;
}

.page-num {
  position: absolute;
  bottom: 20px;
  right: 40px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-weight: 500;
}

.flag-bar {
  position: absolute;
  height: 6px;
  left: 0; right: 0;
  background: linear-gradient(90deg, var(--sky) 0%, var(--sky) 33%, var(--gold) 33%, var(--gold) 66%, var(--sky) 66%);
}

.insight-box {
  background: rgba(244,196,48,0.08);
  border-left: 3px solid var(--gold);
  padding: 14px 24px;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
}

/* ============ SLIDE 1: TITLE ============ */
.slide-title {
  background: linear-gradient(135deg, #0A1628 0%, #132744 40%, #1A3A5C 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 100px;
}

.slide-title .flag-bar { top: 0; }

.slide-title .tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.slide-title h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #75AADB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-title .subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  max-width: 750px;
}

.slide-title .bottom-line {
  position: absolute;
  bottom: 50px;
  left: 100px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
}

.corner-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(117,170,219,0.07);
}

/* ============ SLIDE 2: HEMISPHERE ============ */
.slide-hemisphere {
  background: linear-gradient(180deg, #0D1B2E 0%, #0A1628 100%);
  padding: 40px 80px;
}

.hemisphere-grid {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.country-card {
  flex: 1;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.country-card.hostile {
  background: rgba(229,115,115,0.08);
  border: 1px solid rgba(229,115,115,0.2);
}

.country-card.ally {
  background: rgba(117,170,219,0.1);
  border: 1px solid rgba(117,170,219,0.25);
}

.country-card .flag-emoji { font-size: 28px; margin-bottom: 8px; }

.country-card .c-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.country-card.hostile .c-name { color: var(--red); }
.country-card.ally .c-name { color: var(--sky); }

.country-card .c-status {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============ SLIDE 3: FOOD SECURITY ============ */
.slide-food {
  background: linear-gradient(135deg, #0A1628 0%, #0A2218 100%);
  padding: 40px 80px;
}

.food-row {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.food-card {
  flex: 1;
  border-radius: 10px;
  padding: 22px;
  text-align: center;
}

.food-card .f-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.food-card .f-status {
  font-size: 14px;
  line-height: 1.4;
}

.food-card.lost {
  background: rgba(229,115,115,0.08);
  border: 1px solid rgba(229,115,115,0.15);
}
.food-card.lost .f-name { color: var(--red); }
.food-card.lost .f-status { color: #D09090; }

.food-card.safe {
  background: rgba(129,199,132,0.08);
  border: 1px solid rgba(129,199,132,0.15);
}
.food-card.safe .f-name { color: var(--green); }
.food-card.safe .f-status { color: #A0C9A2; }

.food-card.opportunity {
  background: rgba(244,196,48,0.1);
  border: 1px solid rgba(244,196,48,0.25);
}
.food-card.opportunity .f-name { color: var(--gold); }
.food-card.opportunity .f-status { color: #D4C080; }

.food-assets {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

.food-asset {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.food-asset .fa-icon { font-size: 24px; flex-shrink: 0; }

.food-asset .fa-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.food-asset .fa-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 2px;
}

/* ============ SLIDE 4: OPPORTUNITY ============ */
.slide-opportunity {
  background: linear-gradient(180deg, #0D1B2E 0%, #0A1628 100%);
  padding: 40px 80px;
}

.stat-row {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.stat-card {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

.stat-card .number {
  font-size: 44px;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============ SLIDE 5: WHY NOW ============ */
.slide-why-now {
  background: linear-gradient(135deg, #0A1628 0%, #1A0A28 100%);
  padding: 40px 80px;
}

.two-col { display: flex; gap: 40px; }
.col { flex: 1; }

.comparison-header {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 8px;
}

.comparison-header.negative { color: var(--red); border-bottom: 2px solid var(--red); }
.comparison-header.positive { color: var(--green); border-bottom: 2px solid var(--green); }

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: #C5D0DE;
}

.comparison-item .icon { font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.divider-line { width: 1px; background: rgba(255,255,255,0.08); }

/* ============ SLIDE 6: THE DEAL ============ */
.slide-deal {
  background: linear-gradient(180deg, #0A1628 0%, #0D1E35 100%);
  padding: 40px 80px;
}

.deal-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.deal-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  width: 200px;
}

.deal-box .deal-icon { font-size: 32px; margin-bottom: 8px; }

.deal-box .deal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.deal-box .deal-desc { font-size: 13px; color: var(--muted); line-height: 1.4; }

.deal-arrow { font-size: 24px; color: var(--gold); }

.deal-bottom-row { display: flex; gap: 24px; }

.deal-bottom-card {
  flex: 1;
  background: rgba(117,170,219,0.08);
  border-radius: 10px;
  padding: 20px 22px;
}

.deal-bottom-card h4 { font-size: 15px; font-weight: 700; color: var(--sky); margin-bottom: 6px; }
.deal-bottom-card p { font-size: 14px; color: #B0C4DE; line-height: 1.5; }

/* ============ SLIDE 7: NUMBERS ============ */
.slide-numbers {
  background: linear-gradient(180deg, #0A1628 0%, #0D1B2E 100%);
  padding: 40px 80px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

thead th {
  background: rgba(117,170,219,0.15);
  color: var(--sky);
  font-weight: 700;
  text-align: left;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

tbody td {
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #C5D0DE;
  font-size: 15px;
}

tbody tr:last-child td {
  border-bottom: none;
  font-weight: 700;
  color: var(--gold);
  background: rgba(244,196,48,0.06);
}

.savings-callout {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(244,196,48,0.08);
  border-radius: 10px;
  padding: 22px 28px;
}

.savings-callout .big-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.savings-callout .savings-text { font-size: 16px; color: #C5D0DE; line-height: 1.6; }

/* ============ SLIDE 8: WHAT ARGENTINA GETS ============ */
.slide-gets {
  background: linear-gradient(180deg, #0A1628 0%, #0D1E35 100%);
  padding: 40px 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 22px;
}

.benefit-card .b-icon { font-size: 24px; margin-bottom: 10px; }
.benefit-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.benefit-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ============ SLIDE 9: WHAT US + TECH GET ============ */
.slide-us-tech {
  background: linear-gradient(180deg, #0D1E35 0%, #0A1628 100%);
  padding: 40px 80px;
}

.triple-col { display: flex; gap: 20px; }

.returns-card {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.returns-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.returns-card.us::before { background: #B71C1C; }
.returns-card.tech::before { background: var(--sky); }

.returns-card .rc-header {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.returns-card.us .rc-header { color: #EF9A9A; }
.returns-card.tech .rc-header { color: var(--sky); }

.returns-card .rc-point {
  font-size: 14px;
  color: #B0C4DE;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}

.returns-card .rc-point::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* ============ SLIDE 10: STABILITY ============ */
.slide-stability {
  background: linear-gradient(180deg, #0A1628 0%, #0D1B2E 100%);
  padding: 40px 80px;
}

.stability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.stab-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 22px;
}

.stab-card h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.stab-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ============ SLIDE 11: TOTAL ============ */
.slide-total {
  background: linear-gradient(180deg, #0A1628 0%, #0D1E35 100%);
  padding: 40px 80px;
}

.total-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.total-card {
  flex: 1;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.total-card.roads { background: rgba(117,170,219,0.1); border: 1px solid rgba(117,170,219,0.2); }
.total-card.data { background: rgba(244,196,48,0.08); border: 1px solid rgba(244,196,48,0.2); }
.total-card.combined { background: rgba(129,199,132,0.1); border: 1px solid rgba(129,199,132,0.2); }

.total-card .t-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.total-card.roads .t-label { color: var(--sky); }
.total-card.data .t-label { color: var(--gold); }
.total-card.combined .t-label { color: var(--green); }

.total-card .t-number { font-size: 40px; font-weight: 800; line-height: 1; margin-bottom: 6px; }

.total-card.roads .t-number { color: var(--sky); }
.total-card.data .t-number { color: var(--gold); }
.total-card.combined .t-number { color: var(--green); }

.total-card .t-desc { font-size: 14px; color: var(--muted); line-height: 1.4; }

.total-bottom {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 22px 28px;
  text-align: center;
}

.total-bottom .tb-line { font-size: 16px; color: #C5D0DE; margin-bottom: 6px; line-height: 1.5; }
.total-bottom .tb-highlight { font-size: 19px; font-weight: 700; color: var(--gold); margin-top: 10px; }

/* ============ SLIDE 12: CLOSE ============ */
.slide-close {
  background: linear-gradient(135deg, #0A1628 0%, #132744 40%, #1A3A5C 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 100px;
  position: relative;
}

.slide-close .flag-bar { bottom: 0; }

.slide-close .close-quote {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 30px;
}

.slide-close .close-quote em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.slide-close .close-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 650px;
}

@media print {
  .slide { page-break-after: always; page-break-inside: avoid; }
  body { background: #000; }
}

