/* Identidad de marca (Propuesta E5): Verde portal = --forest, Musgo = --ink, Coral vivo = --coral, Crema = --cream */
:root {
  --verde-portal: #153d32;
  --musgo: #10251f;
  --coral-vivo: #f27658;
  --crema: #f4f0e5;
  --ink: #10251f;
  --forest: #153d32;
  --deep: #071c17;
  --mint: #bfe8d7;
  --cream: #f4f0e5;
  --sand: #e9dfcd;
  --coral: #f27658;
  --white: #fff;
  --muted: #5c6c67;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Fraunces', serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65
}

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

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

button {
  font: inherit
}

.nav {
  height: 92px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(244, 240, 229, .9);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 37, 31, .08)
}

.brand img {
  width: 230px;
  height: 60px;
  object-fit: contain
}

.nav nav {
  display: flex;
  gap: 34px;
  font-size: 15px;
  font-weight: 600
}

.nav nav a:hover {
  color: var(--coral)
}

.navGroup {
  display: flex;
  align-items: center;
  gap: 14px
}

.navToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex: none
}

.navToggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s
}

.navToggle.isOpen span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.navToggle.isOpen span:nth-child(2) {
  opacity: 0
}

.navToggle.isOpen span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.navWhats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700
}

.navCta {
  background: var(--ink);
  color: white;
  padding: 13px 21px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700
}

.navSocial {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 14px;
  margin-right: 2px;
  border-right: 1px solid rgba(16, 37, 31, .15)
}

.navSocial a {
  display: flex;
  color: var(--ink);
  opacity: .75;
  transition: .2s
}

.navSocial a:hover {
  color: var(--coral);
  opacity: 1
}

.navSocial svg {
  width: 17px;
  height: 17px;
  fill: currentColor
}

@media(max-width:860px) {
  .navSocial {
    display: none
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: #317161;
  margin: 0 0 22px
}

.coral {
  color: var(--coral)
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: .98;
  margin: 0
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: .25s;
  border: 0;
  cursor: pointer
}

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

.primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 12px 30px rgba(242, 118, 88, .23)
}

.secondary {
  border: 1px solid rgba(16, 37, 31, .25);
  background: transparent;
  color: var(--ink)
}

.section {
  padding: 120px 6vw
}

.sectionIntro h2 {
  font-size: clamp(40px, 4.6vw, 66px);
  letter-spacing: -.03em
}

.sectionIntro>p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  max-width: 640px
}

.centered {
  text-align: center;
  margin: auto;
  max-width: 900px
}

.centered>p:not(.eyebrow) {
  margin: 24px auto
}

/* Hero carousel */
.storyHero {
  min-height: calc(100vh - 92px);
  position: relative;
  overflow: hidden;
  background: #071712;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 5vw;
  padding: clamp(60px, 8vh, 110px) 6vw 70px;
  isolation: isolate
}

.storyBackground,
.storyShade {
  position: absolute;
  inset: 0
}

.storyBackground {
  z-index: -3
}

.storyBackground img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.055);
  transition: opacity 1.2s ease, transform 8s ease
}

.storyBackground img.active {
  opacity: 1;
  transform: scale(1)
}

.storyShade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(3, 15, 11, .8) 0%, rgba(3, 15, 11, .5) 38%, rgba(3, 15, 11, .2) 66%, rgba(3, 15, 11, .08) 100%), linear-gradient(0deg, rgba(3, 15, 11, .6), transparent 46%)
}

.storyMain {
  position: relative;
  max-width: 680px
}

.storyMeta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #b7e4d3;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 800
}

h1 {
  font-size: clamp(42px, 4.6vw, 68px);
  letter-spacing: -.03em;
  font-weight: 600;
  max-width: 640px
}

.heroAccent {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-style: italic;
  color: #ff896e;
  line-height: 1.05;
  margin: 12px 0 24px
}

.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  max-width: 560px;
  color: #dce8e3
}

.heroActions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap
}

.microLinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px
}

.microLinks a {
  font-size: 13px;
  font-weight: 700;
  color: #cfe3db;
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 9px 14px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  background: rgba(5, 22, 17, .3)
}

.storyControls {
  position: absolute;
  left: 6vw;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4
}

.storyControls>div {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px
}

.storyControls [role="tab"] {
  width: 22px;
  height: 4px;
  border: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, .42);
  padding: 0;
  cursor: pointer;
  transition: .25s
}

.storyControls [role="tab"][aria-selected="true"] {
  width: 44px;
  background: #ff896e
}

.aiTag {
  position: absolute;
  z-index: 4;
  right: 6vw;
  bottom: 24px;
  background: rgba(7, 23, 18, .6);
  backdrop-filter: blur(8px);
  color: #dce8e3;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18)
}

.aiNote {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px
}

.proofBar {
  background: var(--deep);
  color: #e9f7f1;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
  flex-wrap: wrap;
  padding: 18px 6vw
}

.proofBar i {
  width: 4px;
  height: 4px;
  background: var(--coral);
  border-radius: 50%
}

/* Gallery */
.gallery {
  background: #fff
}

.galleryViewer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 60px
}

.galMain {
  position: relative;
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0c2a22;
  min-width: 0
}

.galMain img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease
}

.galMain img.active {
  opacity: 1
}

.galCaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px 36px;
  background: linear-gradient(transparent, rgba(3, 15, 11, .88))
}

.galTitle {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff
}

.galDesc {
  font-size: 14px;
  color: #dce8e3;
  max-width: 560px;
  display: block
}

.galArrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(16, 37, 31, .18);
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
  transition: .25s;
  color: var(--ink)
}

.galArrow:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral)
}

.galThumbs {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap
}

.galThumbs button {
  width: 100px;
  height: 66px;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .5;
  transition: .25s;
  background: none
}

.galThumbs button[aria-selected="true"] {
  opacity: 1;
  border-color: var(--coral)
}

.galThumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.challenge {
  background: #fff
}

.challengeGrid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start
}

.challengeGrid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0
}

.challengeGrid li {
  padding: 20px 0;
  border-top: 1px solid rgba(16, 37, 31, .12);
  font-size: 16px;
  color: #3c4a45;
  display: flex;
  gap: 14px
}

.challengeGrid li:before {
  content: "—";
  color: var(--coral);
  font-weight: 800
}

.pullquoteBox {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: 44px
}

.pullquoteBox p.big {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-style: italic;
  line-height: 1.05;
  margin: 0 0 20px;
  color: #ffe1d6
}

.pullquoteBox p.small {
  color: #c4d1cc;
  font-size: 15px;
  line-height: 1.7;
  margin: 0
}

.audiences {
  background: var(--sand)
}

.audienceGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 60px
}

.audienceGrid article {
  background: #fff;
  padding: 32px 26px;
  border: 1px solid rgba(16, 37, 31, .08);
  border-radius: 22px;
  transition: .3s
}

.audienceGrid article:hover {
  border-color: var(--coral);
  transform: translateY(-4px)
}

.audienceGrid .ico {
  font-size: 30px;
  margin-bottom: 18px
}

.audienceGrid h3 {
  font-size: 23px;
  margin: 0 0 12px;
  font-weight: 600
}

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

.platform {
  background: #fff
}

.platformGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 60px
}

.platformCard {
  position: relative;
  border: 1px solid rgba(16, 37, 31, .1);
  border-radius: 22px;
  padding: 30px;
  background: var(--cream)
}

.platformCard h3 {
  font-size: 21px;
  margin: 16px 0 10px;
  font-weight: 600
}

.platformCard p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0
}

.premiumTag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 10px;
  border-radius: 999px
}

.activationNote {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(16, 37, 31, .18);
  font-size: 12.5px;
  color: #317161;
  font-weight: 700
}

.rigorNote {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(16, 37, 31, .18);
  font-size: 12.5px;
  color: #317161;
  font-weight: 700
}

.tryBox {
  margin-top: 26px;
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.tryBox h3 {
  font-size: 24px;
  margin: 0 0 6px;
  font-weight: 600
}

.tryBox p {
  margin: 0;
  color: #c4d1cc;
  font-size: 14px
}

.demo {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  min-height: 820px;
  background: var(--deep);
  color: white;
  overflow: hidden;
  gap: 4vw
}

.demoIntro {
  max-width: 640px
}

.demoIntro>p:not(.eyebrow) {
  color: #c4d1cc
}

.audioNote {
  margin-top: 30px;
  border-left: 3px solid var(--coral);
  padding: 10px 0 10px 18px;
  color: #d5dfdb;
  font-size: 14px
}

.phoneStage {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.phoneHalo {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 118, 88, .28), transparent 68%)
}

.phone {
  width: 320px;
  aspect-ratio: 9/18.5;
  background: #050a09;
  border: 9px solid #08100e;
  border-radius: 46px;
  padding: 9px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45), inset 0 0 0 1px #52635e;
  position: relative;
  z-index: 2
}

.phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  background: #000
}

.soundButton {
  position: absolute;
  z-index: 4;
  bottom: 32px;
  background: var(--coral);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  cursor: pointer
}

.videoCaption {
  grid-column: 2;
  text-align: center;
  color: #9db3ac;
  font-size: 13px;
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.5
}

.caseHero {
  background: #0c2a22;
  color: #fff
}

.caseHeroGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  margin-top: 50px
}

.caseHeroGrid img {
  border-radius: 26px;
  width: 100%;
  height: 520px;
  object-fit: cover
}

.charList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0
}

.charList span {
  font-size: 12.5px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 8px 13px;
  border-radius: 999px;
  color: #dce8e3
}

.caseStatRow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0
}

.caseStatRow div {
  background: rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 16px
}

.caseStatRow strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: #fff
}

.caseStatRow small {
  color: #9db3ac;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.caseQuote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  color: #ffb08f;
  margin: 22px 0 10px
}

.caseFoot {
  font-size: 13px;
  color: #9db3ac
}

.cases {
  background: #e7dfd0
}

.caseGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px
}

.caseCard {
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: #132c25;
  color: white
}

.caseCard>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  filter: saturate(.9)
}

.caseCard:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(7, 28, 23, .94) 100%)
}

.caseOverlay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px
}

.caseOverlay>span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #9edec6;
  font-weight: 800
}

.caseOverlay h3 {
  font-size: 29px;
  margin: 10px 0 12px;
  font-weight: 600
}

.caseOverlay p {
  font-size: 14px;
  color: #d8e1de;
  line-height: 1.65;
  margin: 0
}

.caseOverlay small {
  color: #ffab96;
  font-weight: 700;
  display: block;
  margin-top: 10px
}

.regen {
  background: var(--mint);
  padding: 110px 7vw;
  text-align: center
}

.regen h2 {
  font-size: clamp(38px, 4vw, 56px);
  max-width: 800px;
  margin: 0 auto 20px
}

.regen p.lead2 {
  max-width: 640px;
  margin: 0 auto 30px;
  color: #1c3a30;
  font-size: 18px
}

.regen .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--coral);
  margin: 20px 0
}

.plans {
  background: #f7f4eb
}

.planGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px
}

.planGrid article {
  background: white;
  border-radius: 24px;
  padding: 36px;
  position: relative;
  border: 1px solid rgba(16, 37, 31, .08)
}

.planGrid article>span {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  color: #65756f;
  font-weight: 800
}

.planGrid h3 {
  font-size: 38px;
  margin: 18px 0 6px;
  font-weight: 600
}

.planGrid .price {
  color: var(--coral);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px
}

.planGrid ul {
  list-style: none;
  padding: 0;
  margin: 20px 0
}

.planGrid li {
  padding: 6px 0;
  font-size: 14px
}

.planGrid li:before {
  content: "✓";
  color: var(--coral);
  font-weight: 900;
  margin-right: 10px
}

.planGrid a.button {
  margin-top: 16px;
  width: 100%
}

.featuredPlan {
  background: var(--ink) !important;
  color: white;
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(16, 37, 31, .18)
}

.featuredPlan>p,
.featuredPlan>span,
.featuredPlan .price {
  color: #bfcec9 !important
}

.featuredPlan>b {
  position: absolute;
  right: 22px;
  top: 20px;
  background: var(--coral);
  border-radius: 20px;
  padding: 6px 10px;
  font-family: var(--font-sans);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.fundNote {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

.finalCta {
  padding: 120px 6vw;
  background: var(--deep);
  color: white;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  align-items: start
}

.finalCta h2 {
  font-size: clamp(42px, 4.6vw, 64px);
  letter-spacing: -.03em
}

.contactCopy>p:not(.eyebrow) {
  color: #bfcdc8;
  max-width: 520px;
  margin: 24px 0;
  font-size: 17px
}

.directBox {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 22px 24px;
  margin-top: 20px
}

.directBox p {
  margin: 0 0 10px;
  color: #9db3ac;
  font-size: 13px
}

.directBox a.wa {
  color: #25D366;
  font-weight: 800;
  font-size: 16px
}

.directBox a.mail {
  display: block;
  margin-top: 10px;
  color: #cfe3db;
  font-size: 14px
}

.demoForm {
  background: #f8f5ec;
  color: var(--ink);
  border-radius: 26px;
  padding: 36px;
  display: grid;
  gap: 15px
}

.fieldRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.demoForm label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 800
}

.demoForm input,
.demoForm select,
.demoForm textarea {
  width: 100%;
  border: 1px solid #d7ddd8;
  background: white;
  border-radius: 12px;
  padding: 13px 14px;
  font: 500 14px var(--font-sans);
  color: var(--ink);
  outline: none
}

.demoForm input:focus,
.demoForm select:focus,
.demoForm textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(242, 118, 88, .12)
}

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

.demoForm>small {
  text-align: center;
  color: #77837f;
  font-size: 10px;
  line-height: 1.5
}

.consentRow {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 500;
  color: #5c6c67
}

.consentRow input {
  width: auto !important;
  margin-top: 3px;
  accent-color: var(--coral)
}

.consentRow a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline
}

footer {
  padding: 52px 6vw 24px;
  background: #061510;
  color: #bdcbc6;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px
}

.footerBrand img {
  width: 180px
}

footer .fcol h5 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 12px
}

footer .fcol a,
footer .fcol p {
  display: block;
  color: #9db3ac;
  margin: 0 0 8px
}

footer small {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 22px;
  text-align: center;
  color: #71817b
}

.socialRow {
  display: flex;
  gap: 12px;
  margin-top: 18px
}

.socialRow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background .2s, border-color .2s, transform .2s
}

.socialRow a:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px)
}

.socialRow svg {
  width: 17px;
  height: 17px;
  fill: #e7efec
}

@media(max-width:1050px) {
  .navToggle {
    display: flex
  }

  .nav nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--crema);
    padding: 8px 5vw 22px;
    border-bottom: 1px solid rgba(16, 37, 31, .08);
    box-shadow: 0 18px 30px rgba(0, 0, 0, .12)
  }

  .nav nav.navOpen {
    display: flex
  }

  .nav nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(16, 37, 31, .07);
    font-size: 16px
  }

  .nav nav a:last-child {
    border-bottom: 0
  }

  .storyHero {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 70px
  }

  .challengeGrid,
  .caseHeroGrid {
    grid-template-columns: 1fr
  }

  .caseHeroGrid img {
    height: 340px
  }

  .audienceGrid,
  .platformGrid {
    grid-template-columns: repeat(2, 1fr)
  }

  .caseGrid {
    grid-template-columns: 1fr
  }

  .demo {
    grid-template-columns: 1fr
  }

  .videoCaption {
    grid-column: 1
  }

  .planGrid {
    grid-template-columns: 1fr
  }

  .featuredPlan {
    transform: none
  }

  .finalCta {
    grid-template-columns: 1fr
  }

  footer {
    grid-template-columns: 1fr
  }
}

@media(max-width:650px) {
  body {
    font-size: 16px
  }

  .section {
    padding: 80px 20px
  }

  .nav {
    padding: 0 18px;
    height: 72px
  }

  .brand img {
    width: 172px;
    height: 46px
  }

  .navCta {
    display: none
  }

  h1 {
    font-size: 38px
  }

  .heroAccent {
    font-size: 24px
  }

  .fieldRow {
    grid-template-columns: 1fr
  }

  .audienceGrid,
  .platformGrid {
    grid-template-columns: 1fr
  }

  .caseStatRow {
    grid-template-columns: 1fr
  }

  .storyHero {
    min-height: 640px
  }

  .storyBackground img:nth-child(1),
  .storyMedia img:nth-child(1) {
    object-position: 72% 55%
  }

  .storyBackground img:nth-child(2),
  .storyMedia img:nth-child(2) {
    object-position: 62% 55%
  }

  .storyBackground img:nth-child(3),
  .storyMedia img:nth-child(3) {
    object-position: 68% 55%
  }

  .storyBackground img:nth-child(4),
  .storyMedia img:nth-child(4) {
    object-position: 60% 42%
  }

  .storyBackground img:nth-child(5),
  .storyMedia img:nth-child(5) {
    object-position: 55% 55%
  }

  .storyBackground img:nth-child(6),
  .storyMedia img:nth-child(6) {
    object-position: 72% 55%
  }

  .storyBackground img:nth-child(7),
  .storyMedia img:nth-child(7) {
    object-position: 40% 45%
  }

  .storyBackground img:nth-child(8),
  .storyMedia img:nth-child(8) {
    object-position: 48% 50%
  }

  .storyBackground img:nth-child(9),
  .storyMedia img:nth-child(9) {
    object-position: 38% 55%
  }

  .galleryViewer {
    flex-direction: column;
    align-items: stretch
  }

  .galMain {
    aspect-ratio: 4/3
  }

  .galMain img:nth-child(1) {
    object-position: 72% 55%
  }

  .galMain img:nth-child(2) {
    object-position: 62% 55%
  }

  .galMain img:nth-child(3) {
    object-position: 68% 55%
  }

  .galMain img:nth-child(4) {
    object-position: 60% 42%
  }

  .galMain img:nth-child(5) {
    object-position: 55% 55%
  }

  .galMain img:nth-child(6) {
    object-position: 72% 55%
  }

  .galMain img:nth-child(7) {
    object-position: 40% 45%
  }

  .galMain img:nth-child(8) {
    object-position: 48% 50%
  }

  .galMain img:nth-child(9) {
    object-position: 38% 55%
  }

  .galArrow {
    display: none
  }

  .galCaption {
    padding: 20px
  }

  .galThumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px
  }

  .galThumbs button {
    flex: 0 0 auto
  }

  .caseHeroGrid img {
    height: 280px;
    object-position: 65% 50%
  }
}