@import url('https://fonts.googleapis.com/css2?family=Sora:wght@200;300;400;600;700&family=DM+Serif+Display:ital@0;1&family=DM+Mono:wght@300;400&display=swap');

/* ── VARIABLES ── */
:root {
  --white: #ffffff;
  --off-white: #f5f5f7;
  --light: #fbfbfd;
  --gray-100: #f0f0f2;
  --gray-200: #e0e0e5;
  --gray-400: #a0a0aa;
  --gray-600: #6e6e80;
  --gray-800: #2d2d3a;
  --black: #0a0a0f;
  --blue: #1a73e8;
  --blue-light: #4a9eff;
  --accent: #1a5fd4;
  --gradient-blue: linear-gradient(135deg, #1a5fd4 0%, #4a9eff 100%);
  --serif: 'DM Serif Display', serif;
  --sans: 'Sora', sans-serif;
  --mono: 'DM Mono', monospace;
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1120px;
  --pad: clamp(1.5rem, 5vw, 4rem);
  --nav-h: 72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--white); color: var(--black); font-family: var(--sans); font-size: 17px; font-weight: 300; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  min-height: var(--nav-h);
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem var(--pad);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 28px; width: auto; }
.nav-logo-text { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; color: var(--black); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.78rem; font-weight: 400; color: var(--gray-600); letter-spacing: 0.01em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; background: none; border: none; cursor: pointer; color: var(--gray-400); padding: 3px 2px; transition: color 0.2s; }
.lang-btn:hover { color: var(--black); }
.lang-btn.active { color: var(--accent); font-weight: 400; }
.lang-sep { font-size: 0.55rem; color: var(--gray-200); }
.nav-cta { font-size: 0.75rem; font-weight: 600; background: var(--black); color: var(--white); padding: 0.45rem 1.1rem; border-radius: 100px; letter-spacing: 0.01em; transition: background 0.2s, transform 0.15s; }
.nav-cta:hover { background: var(--gray-800); transform: scale(1.02); }

/* ── LAYOUT ── */
main { padding-top: var(--nav-h); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ── HERO ── */
.hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 5rem var(--pad) 4rem;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(26,95,212,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.75rem; opacity: 0; animation: fadeUp 0.7s 0.1s forwards; }
.hero h1 { font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 400; line-height: 1.08; letter-spacing: -0.02em; max-width: 12ch; margin: 0 auto 1.5rem; opacity: 0; animation: fadeUp 0.7s 0.2s forwards; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--gray-600); max-width: 52ch; margin: 0 auto 2.5rem; line-height: 1.75; font-weight: 300; opacity: 0; animation: fadeUp 0.7s 0.35s forwards; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.7s 0.5s forwards; }
.btn-primary { background: var(--black); color: var(--white); padding: 0.85rem 2rem; border-radius: 100px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--gray-800); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--gray-200); color: var(--black); padding: 0.85rem 2rem; border-radius: 100px; font-size: 0.9rem; font-weight: 400; letter-spacing: 0.01em; transition: border-color 0.2s, transform 0.15s; }
.btn-ghost:hover { border-color: var(--gray-400); transform: translateY(-1px); }
.hero-scroll { margin-top: 4rem; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-400); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0; animation: fadeUp 0.7s 0.7s forwards; }
.hero-scroll::after { content: ''; width: 1px; height: 36px; background: var(--gray-200); }

/* ── SECTION LABELS ── */
.section-label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 1.25rem; }
.section-label.center { text-align: center; }
h2.display { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 400; line-height: 1.12; letter-spacing: -0.015em; margin-bottom: 1rem; }
h2.display em { font-style: italic; color: var(--accent); }
h2.display.center { text-align: center; }
.lead { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--gray-600); line-height: 1.75; font-weight: 300; max-width: 58ch; }
.lead.center { text-align: center; margin: 0 auto; }

/* ── BENTO GRID ── */
.bento { display: grid; gap: 12px; }
.bento-2 { grid-template-columns: repeat(2, 1fr); }
.bento-3 { grid-template-columns: repeat(3, 1fr); }
.bento-card {
  background: var(--off-white); border-radius: var(--radius); padding: 2.5rem;
  position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(0,0,0,0.07); }
.bento-card.dark { background: var(--black); color: var(--white); }
.bento-card.blue { background: var(--accent); color: var(--white); }
.bento-card.large { grid-column: span 2; }
.bento-card h3 { font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 400; margin-bottom: 0.75rem; line-height: 1.2; }
.bento-card.dark h3, .bento-card.blue h3 { color: var(--white); }
.bento-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; font-weight: 300; }
.bento-card.dark p { color: rgba(255,255,255,0.6); }
.bento-card.blue p { color: rgba(255,255,255,0.8); }
.bento-num { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--gray-400); margin-bottom: 1.5rem; text-transform: uppercase; }
.bento-card.dark .bento-num { color: rgba(255,255,255,0.35); }
.bento-card.blue .bento-num { color: rgba(255,255,255,0.5); }
.bento-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }

/* ── KIT CARDS ── */
.kit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; }
.kit-card {
  border-radius: var(--radius); overflow: hidden; background: var(--off-white);
  transition: transform 0.3s, box-shadow 0.3s;
}
.kit-card:hover { transform: translateY(-4px); box-shadow: 0 24px 70px rgba(0,0,0,0.09); }
.kit-card-header { padding: 2.25rem 2.25rem 1.5rem; }
.kit-tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); padding: 0.3rem 0.75rem; border-radius: 100px; display: inline-block; margin-bottom: 1.25rem; }
.kit-h2o-e .kit-tag { background: #1a73e8; }
.kit-h2o-p .kit-tag { background: #00b4d8; }
.kit-energy .kit-tag { background: #d4a017; }
.kit-climate .kit-tag { background: #e85d04; }
.kit-habitat .kit-tag { background: #1a5c3a; }
.kit-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.5rem; line-height: 1.25; }
.kit-card .kit-desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1.25rem; }
.kit-components { list-style: none; border-top: 1px solid var(--gray-200); padding-top: 1.25rem; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.kit-components li { font-size: 0.82rem; color: var(--gray-600); display: flex; align-items: center; gap: 0.6rem; }
.kit-components li::before { content: '—'; color: var(--gray-400); font-family: var(--mono); font-size: 0.65rem; flex-shrink: 0; }
.kit-roi { background: var(--white); padding: 1.25rem 2.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.kit-roi-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.25rem; }
.kit-roi-val { font-size: 0.85rem; font-weight: 600; color: var(--black); }
.kit-arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--black); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.8rem; flex-shrink: 0; transition: transform 0.2s; }
.kit-card:hover .kit-arrow { transform: translateX(3px); }

/* ── STAT STRIP ── */
.stat-strip { background: var(--black); color: var(--white); padding: clamp(3rem, 6vw, 5rem) 0; }
.stat-strip .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.stat-num em { font-style: italic; color: #4a9eff; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }

/* ── FEATURE ROW ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-content h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1.18; margin-bottom: 1rem; }
.feature-content p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1.25rem; }
.feature-visual { background: var(--off-white); border-radius: var(--radius); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── PILL LIST ── */
.pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.pill { font-size: 0.78rem; font-weight: 400; border: 1px solid var(--gray-200); padding: 0.35rem 0.9rem; border-radius: 100px; color: var(--gray-600); letter-spacing: 0.01em; }

/* ── CTA BLOCK ── */
.cta-section { background: var(--off-white); border-radius: var(--radius); padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem); text-align: center; }
.cta-section h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; margin-bottom: 1rem; }
.cta-section p { font-size: 0.95rem; color: var(--gray-600); max-width: 48ch; margin: 0 auto 2rem; }

/* ── PRMS LINK BADGE ── */
.prms-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--gray-200); border-radius: 100px; padding: 0.4rem 1rem;
  color: var(--gray-600); transition: border-color 0.2s, color 0.2s;
}
.prms-badge:hover { border-color: var(--accent); color: var(--accent); }
.prms-badge::before { content: '↗'; font-size: 0.7rem; }

/* ── APP SECTION ── */
.app-screen { background: var(--off-white); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.app-bar { background: var(--white); border-radius: var(--radius-sm); padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.app-bar-left h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.15rem; }
.app-bar-left span { font-size: 0.72rem; color: var(--gray-400); }
.app-metric { font-family: var(--serif); font-size: 1.4rem; color: var(--accent); font-weight: 400; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-tile { background: var(--white); border-radius: var(--radius-sm); padding: 1rem 1.25rem; }
.app-tile-label { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.4rem; }
.app-tile-val { font-family: var(--serif); font-size: 1.5rem; color: var(--black); }
.app-tile-val.green { color: #1a5c3a; }
.app-tile-val.blue { color: var(--accent); }
.app-status { background: var(--black); border-radius: var(--radius-sm); padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.app-status span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; }

/* ── FOOTER ── */
footer { background: var(--black); color: var(--white); padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand img { height: 32px; margin-bottom: 1rem; filter: brightness(10); }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 28ch; }
.footer-col h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1rem; color: rgba(255,255,255,0.9); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.75rem; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── DIVIDER ── */
.divider { width: 100%; height: 1px; background: var(--gray-100); margin: 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .bento-2, .bento-3 { grid-template-columns: 1fr; }
  .bento-card.large { grid-column: span 1; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse { direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
}

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.05em; color: var(--gray-600); display: block; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--off-white); border: 1px solid transparent;
  border-radius: var(--radius-sm); padding: 0.85rem 1.1rem;
  font-family: var(--sans); font-size: 0.9rem; color: var(--black);
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── TECH PAGE ── */
.how-step { display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem; align-items: start; padding: 2.5rem 0; border-bottom: 1px solid var(--gray-100); }
.step-num { font-family: var(--serif); font-size: 2.5rem; color: var(--gray-200); font-weight: 400; line-height: 1; }
.step-content h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* === STAT STRIP FIX === */
.stat-num {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.stat-item {
  text-align: center;
  padding: 0 1.5rem;
}
.stat-meta {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.25rem;
}
.stat-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

/* SYSTEM CYCLE SECTION */

.system-cycle {
  margin-top: 140px;
  padding: 80px 0px;
  border-top: 1px solid #ddd;
  background: transparent;
}
.cycle-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}
.ecosystem-logos {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ecosystem-logos img {
  height: 40px;
}

/* BOTÓN HAMBURGUESA */
.nav-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 2rem;
    border-top: 1px solid #eee;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-right {
    display: none; /* opcional: ocultar idioma y CTA en mobile */
  }
}

.hero-highlight {
  display: block;          /* fuerza salto de línea limpio */
  margin-top: 12px;        /* separación */
  font-weight: 600;        /* negrita elegante (no 700) */
  color: #111827;          /* un poco más oscuro para jerarquía */
}

.kits-intro {
  display: flex;
  justify-content: center;   /* centra real */
  text-align: center;
  margin-bottom: 48px;
}

.kits-intro-text {
  max-width: 720px;         /* controla ancho real */
  font-size: 1.1rem;
  line-height: 1.65;
  color: #111827;           /* negro elegante */
  font-weight: 500;         /* más presencia */
}

.hero-app-image {
  display: flex;
  justify-content: center;
  margin: 40px 0 32px;
}
/* App */
.hero-app-image img {
  width: 100%;
  max-width: 420px; /* tamaño tipo iPhone premium */
  height: auto;
  border-radius: 32px;
  
  /* efecto premium */
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.hero-app-image img:hover {
  transform: scale(1.02);
}
 /* imagen desempeño */
.hero-image {
  display: flex;
  justify-content: center;
  margin: 3rem 0 2rem;
}

.hero-image img {
  width: 100%;
  max-width: 820px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
/* imagen desempeño2 */
.performance-image {
  margin-top: 2.5rem;
  text-align: center;
}

.performance-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

/* =========================================
   ECOSYSTEM FOOTER
========================================= */

.ecosystem-footer{
    width:100%;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:3rem;
    padding:2rem 0 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:2rem;
    flex-wrap:wrap;
}
.ecosystem-brand{
    color:rgba(255,255,255,.88);
    font-size:0.95rem;
    letter-spacing:0.04em;
    white-space:nowrap;
}
.ecosystem-links{
    display:flex !important;
    flex-direction:row !important;
    align-items:center;
    justify-content:center;
    gap:2.5rem;
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
}
.ecosystem-links li{
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
}
.ecosystem-links a{
    color:rgba(255,255,255,.38);
    text-decoration:none;
    font-size:0.72rem;
    letter-spacing:0.18em;
    text-transform:uppercase;
    transition:all .25s ease;
}
.ecosystem-links a:hover{
    color:rgba(255,255,255,.9);
}
.ecosystem-copy{
    color:rgba(255,255,255,.35);
    font-size:0.72rem;
    letter-spacing:0.08em;
    white-space:nowrap;
}
/* RESPONSIVE */
@media (max-width:900px){
    .ecosystem-footer{
        flex-direction:column;
        align-items:flex-start;
    }
    .ecosystem-links{
        gap:1.2rem;
    }
}

/* ========================= */
/* PEAR-ROI INTERFACE BLOCK  */
/* ========================= */

.interface-section {
  background: #050816;
  padding: 8rem 0 10rem;
}
.interface-section h2 {
  color: white;
}
.interface-copy {
  max-width: 760px;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.interface-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.dashboard-full-image {

  width: 100%;
  display: block;
  border-radius: 28px;
  opacity: 1;
  transform: none;
  box-shadow: 0 40px 120px rgba(0,0,0,0.45);

}

.dashboard-full-image.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ========================= */
/* PRODUCT HERO IMAGE        */
/* ========================= */

.product-hero-image {

  display: flex;
  justify-content: center;

  margin: 5rem 0 4rem;
}

.product-hero-image img {

  width: 100%;
  max-width: 1200px;

  border-radius: 36px;

  box-shadow:
    0 40px 120px rgba(0,0,0,0.12);

  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.product-hero-image img:hover {

  transform: scale(1.01);

  box-shadow:
    0 60px 160px rgba(0,0,0,0.16);
}
