.marketing-v2 {
  --v2-max: 1240px;
  --v2-line: rgb(244 247 245 / 0.14);
  --v2-soft-line: rgb(244 247 245 / 0.09);
  --v2-surface: #121718;
  --v2-surface-raised: #171d1e;
  --v2-faint: #74807b;
  overflow-x: hidden;
  background: #0d1112;
}

.v2-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: grid;
  height: 72px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgb(244 247 245 / 0.11);
  padding: 0 max(24px, calc((100vw - var(--v2-max)) / 2));
  background: rgb(10 14 15 / 0.92);
  backdrop-filter: blur(16px);
}

.v2-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  color: #f4f7f5;
  font-size: 0.98rem;
  font-weight: 760;
}

.v2-mark {
  display: grid;
  width: 19px;
  height: 19px;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 3px;
}

.v2-mark i {
  display: block;
  width: 8px;
  height: 8px;
}

.v2-mark i:nth-child(1) {
  background: var(--green);
}

.v2-mark i:nth-child(2) {
  background: var(--coral);
}

.v2-mark i:nth-child(3) {
  background: var(--blue);
}

.v2-mark i:nth-child(4) {
  background: var(--amber);
}

.v2-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.v2-nav a,
.v2-login {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 13px;
  color: #9faca7;
  font-size: 0.78rem;
  font-weight: 640;
}

.v2-nav a:hover,
.v2-login:hover {
  background: rgb(244 247 245 / 0.07);
  color: #f4f7f5;
}

.v2-header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
}

.v2-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0 17px;
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}

.v2-button-primary {
  border-color: var(--green);
  background: var(--green);
  color: #07130d;
}

.v2-button-primary:hover {
  background: #6be4a3;
}

.v2-button-ghost {
  border-color: var(--v2-line);
  background: rgb(13 17 18 / 0.68);
  color: #f4f7f5;
}

.v2-button-ghost:hover {
  border-color: rgb(244 247 245 / 0.3);
  background: rgb(32 40 40 / 0.82);
}

.v2-eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
}

/* Full-bleed product hero */
.v2-hero {
  position: relative;
  display: grid;
  height: min(760px, calc(100svh - 42px));
  min-height: 640px;
  align-items: end;
  overflow: hidden;
  margin-top: 72px;
  padding: 70px max(24px, calc((100vw - var(--v2-max)) / 2));
  isolation: isolate;
}

.hero-media-grid {
  position: absolute;
  z-index: -3;
  inset: -34px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 0.8fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  transform: rotate(-2.5deg) scale(1.04);
}

.hero-media,
.hero-color {
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: 6px;
  background: #192020;
}

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

.hero-media-a {
  grid-row: 1 / 3;
  grid-column: 1;
}

.hero-media-b {
  grid-row: 1;
  grid-column: 2 / 4;
}

.hero-media-c {
  position: relative;
  grid-row: 2 / 4;
  grid-column: 2 / 4;
}

.hero-media-d {
  grid-row: 1 / 3;
  grid-column: 4;
}

.hero-media-e {
  grid-row: 3;
  grid-column: 1;
}

.hero-color-green {
  grid-row: 3;
  grid-column: 4;
  background: #31825a;
}

.hero-color-coral {
  grid-row: 2;
  grid-column: 2;
  visibility: hidden;
  background: #bf5d4d;
}

.hero-color-blue {
  grid-row: 3;
  grid-column: 3;
  visibility: hidden;
  background: #3b729f;
}

.hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: 50%;
  background: rgb(8 12 13 / 0.78);
  color: white;
  font-size: 1rem;
  text-indent: 2px;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgb(4 7 8 / 0.62);
}

.v2-hero-copy {
  width: min(720px, 100%);
}

.v2-hero-copy h1 {
  margin: 16px 0 17px;
  color: #f7faf8;
  font-size: 5.5rem;
  line-height: 0.94;
}

.v2-hero-copy > p:not(.v2-eyebrow) {
  width: min(610px, 100%);
  margin: 0;
  color: #d8dfdc;
  font-size: 1.28rem;
  line-height: 1.5;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.hero-note {
  display: block;
  margin-top: 13px;
  color: #aab5b0;
  font-size: 0.68rem;
}

.network-band {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  padding: 0 max(24px, calc((100vw - var(--v2-max)) / 2));
  background: #101516;
}

.network-band > span {
  color: #87938e;
  font-size: 0.72rem;
}

.network-band > div {
  display: flex;
  align-items: center;
  gap: 32px;
}

.network-band strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c3ccc8;
  font-size: 0.78rem;
}

.network-band i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.network-youtube {
  background: #ff5b55;
}

.network-instagram {
  background: #ff8e63;
}

.network-tiktok {
  background: #66d9d0;
}

/* Shared section structure */
.live-demo-band,
.workflow-band,
.use-cases-band,
.pricing-band-v2,
.faq-band {
  padding-right: max(24px, calc((100vw - var(--v2-max)) / 2));
  padding-left: max(24px, calc((100vw - var(--v2-max)) / 2));
}

.live-demo-band,
.use-cases-band,
.faq-band {
  background: #0d1112;
}

.workflow-band,
.pricing-band-v2 {
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: #111617;
}

.v2-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.v2-section-heading h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: #f4f7f5;
  font-size: 3.2rem;
  line-height: 1.05;
}

.v2-section-heading > p {
  width: min(420px, 100%);
  margin: 0;
  color: #929f99;
  font-size: 0.85rem;
  line-height: 1.65;
}

/* Live examples */
.live-demo-band {
  padding-top: 118px;
  padding-bottom: 124px;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 50px 0 18px;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  padding: 13px 0;
}

.demo-segment {
  display: inline-flex;
  min-height: 36px;
  align-items: stretch;
  border: 1px solid var(--v2-line);
  border-radius: 5px;
  padding: 2px;
  background: #090d0e;
}

.demo-segment button {
  min-width: 66px;
  border: 0;
  border-radius: 3px;
  padding: 0 11px;
  background: transparent;
  color: #83908a;
  font-size: 0.68rem;
  font-weight: 690;
  cursor: pointer;
}

.demo-segment button:hover {
  color: #f4f7f5;
}

.demo-segment button.is-active {
  background: #202727;
  color: #f4f7f5;
}

.marketing-feed-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 215px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.marketing-feed-grid[data-layout="wall"] {
  grid-auto-rows: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.marketing-post {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 6px;
  background: #151b1c;
}

.marketing-post[hidden] {
  display: none;
}

.marketing-feed-grid[data-layout="mosaic"] .post-tall {
  grid-row: span 2;
}

.marketing-feed-grid[data-layout="mosaic"] .post-wide {
  grid-column: span 2;
}

.marketing-media {
  position: relative;
  display: block;
  min-height: 0;
  flex: 1;
  overflow: hidden;
  background: #0b0f10;
}

.marketing-media img,
.marketing-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.instagram-media {
  min-height: 390px;
}

.tiktok-media {
  min-height: 390px;
}

.marketing-feed-grid[data-layout="wall"] .marketing-media {
  aspect-ratio: 4 / 3;
  flex: none;
}

.marketing-feed-grid[data-layout="wall"] .instagram-media,
.marketing-feed-grid[data-layout="wall"] .tiktok-media {
  min-height: 0;
}

.marketing-source {
  position: absolute;
  right: 9px;
  bottom: 9px;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 3px;
  padding: 0 8px;
  background: rgb(7 10 11 / 0.86);
  color: white;
  font-size: 0.56rem;
  font-weight: 760;
  box-shadow: inset 2px 0 0 currentColor;
}

.source-instagram {
  color: #ff9a75;
}

.source-youtube {
  color: #ff7771;
}

.source-tiktok {
  color: #7ce3db;
}

.marketing-post-copy {
  flex: 0 0 auto;
  padding: 13px;
}

.marketing-post-copy strong {
  display: block;
  overflow: hidden;
  color: #f1f5f3;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketing-post-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 6px 0 0;
  color: #86938d;
  font-size: 0.64rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Workflow */
.workflow-band {
  padding-top: 116px;
  padding-bottom: 116px;
}

.workflow-list {
  margin-top: 56px;
  border-top: 1px solid var(--v2-line);
}

.workflow-list article {
  display: grid;
  min-height: 164px;
  grid-template-columns: 70px minmax(260px, 0.75fr) minmax(300px, 1.25fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--v2-line);
}

.workflow-number {
  align-self: start;
  padding-top: 28px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
}

.workflow-list h3 {
  margin: 0 0 8px;
  color: #f4f7f5;
  font-size: 1.3rem;
}

.workflow-list p {
  max-width: 390px;
  margin: 0;
  color: #8f9c96;
  font-size: 0.8rem;
  line-height: 1.55;
}

.workflow-visual {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.visual-connect i {
  width: 72px;
  height: 72px;
  border: 1px solid var(--v2-line);
  border-radius: 6px;
}

.visual-connect i:nth-child(1) {
  background: #a94c43;
}

.visual-connect i:nth-child(2) {
  background: #a6674b;
}

.visual-connect i:nth-child(3) {
  background: #3f7772;
}

.visual-curate {
  display: grid;
  grid-template-columns: repeat(3, 70px);
  grid-template-rows: repeat(2, 44px);
}

.visual-curate i {
  border: 1px solid var(--v2-line);
  border-radius: 4px;
}

.visual-curate i:nth-child(1) {
  grid-row: span 2;
  background: #2e7452;
}

.visual-curate i:nth-child(2) {
  grid-column: span 2;
  background: #366d99;
}

.visual-curate i:nth-child(3) {
  background: #af5b4c;
}

.visual-curate i:nth-child(4) {
  background: #b08a43;
}

.workflow-list code {
  justify-self: end;
  width: min(480px, 100%);
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-left: 3px solid var(--green);
  border-radius: 5px;
  padding: 24px;
  background: #090d0e;
  color: #b5c1bc;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Use cases */
.use-cases-band {
  padding-top: 118px;
  padding-bottom: 124px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 50px;
}

.use-case-grid article {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--v2-line);
  border-radius: 6px;
  background: #151b1c;
}

.use-case-grid img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}

.use-case-grid article > div {
  display: flex;
  height: 30%;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.use-case-grid span {
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 790;
  text-transform: uppercase;
}

.use-case-grid strong {
  color: #edf2ef;
  font-size: 1rem;
  line-height: 1.35;
}

/* Pricing */
.pricing-band-v2 {
  padding-top: 116px;
  padding-bottom: 120px;
}

.marketing-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 54px;
}

.marketing-pricing-grid article {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  border: 1px solid var(--v2-line);
  border-radius: 6px;
  padding: 30px;
  background: #0d1213;
}

.marketing-pricing-grid .marketing-plan-featured {
  border-top: 3px solid var(--green);
  padding-top: 28px;
}

.marketing-best {
  position: absolute;
  top: 0;
  right: 24px;
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 10px;
  background: var(--green);
  color: #07130d;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.marketing-plan-name {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--v2-line);
  padding-bottom: 26px;
}

.marketing-plan-name > span {
  align-self: flex-start;
  color: #cbd3d0;
  font-size: 0.84rem;
  font-weight: 760;
}

.marketing-plan-name strong {
  color: #f4f7f5;
  font-size: 3.4rem;
  line-height: 0.9;
}

.marketing-plan-name sup {
  margin-right: 3px;
  color: #a9b4af;
  font-size: 1rem;
  vertical-align: top;
}

.marketing-plan-name small {
  margin-left: 6px;
  color: #8a9690;
  font-size: 0.7rem;
}

.marketing-pricing-grid article > p {
  min-height: 50px;
  margin: 24px 0 0;
  color: #909d97;
  font-size: 0.8rem;
  line-height: 1.6;
}

.marketing-pricing-grid ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 30px;
  padding: 0;
  color: #c0cac5;
  font-size: 0.76rem;
  list-style: none;
}

.marketing-pricing-grid li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--green);
  font-weight: 800;
}

.plan-button {
  width: 100%;
  margin-top: auto;
}

/* FAQ */
.faq-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  padding-top: 118px;
  padding-bottom: 124px;
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  font-size: 2.8rem;
}

.faq-list {
  border-top: 1px solid var(--v2-line);
}

.faq-list details {
  border-bottom: 1px solid var(--v2-line);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  color: #dce3df;
  font-size: 0.9rem;
  font-weight: 690;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 650px;
  margin: -8px 0 24px;
  color: #8f9c96;
  font-size: 0.8rem;
  line-height: 1.65;
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  border-top: 1px solid var(--v2-line);
  padding: 80px max(24px, calc((100vw - var(--v2-max)) / 2));
  background: #101516;
}

.final-cta > div:not(.final-cta-mosaic) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  width: min(700px, 100%);
  margin: 13px 0;
  color: #f4f7f5;
  font-size: 3.2rem;
  line-height: 1.05;
}

.final-cta p:not(.v2-eyebrow) {
  margin: 0;
  color: #929f99;
  font-size: 0.86rem;
}

.final-cta > .v2-button {
  position: relative;
  z-index: 2;
}

.final-cta-mosaic {
  position: absolute;
  right: 4%;
  bottom: -90px;
  display: grid;
  width: 480px;
  height: 320px;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 9px;
  opacity: 0.27;
  transform: rotate(-6deg);
}

.final-cta-mosaic span {
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 6px;
}

.final-cta-mosaic span:nth-child(1) {
  grid-row: span 2;
  background: #277b53;
}

.final-cta-mosaic span:nth-child(2) {
  grid-column: span 2;
  background: #3d739d;
}

.final-cta-mosaic span:nth-child(3) {
  background: #ba5d4c;
}

.final-cta-mosaic span:nth-child(4) {
  background: #b78d43;
}

.final-cta-mosaic span:nth-child(5) {
  display: none;
}

.v2-footer {
  display: grid;
  min-height: 128px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--v2-line);
  padding: 0 max(24px, calc((100vw - var(--v2-max)) / 2));
  background: #090d0e;
}

.v2-footer nav {
  display: flex;
  gap: 22px;
}

.v2-footer nav a,
.v2-footer > span {
  color: #78847f;
  font-size: 0.67rem;
}

.v2-footer nav a:hover {
  color: #c7cfcc;
}

.v2-footer > span {
  justify-self: end;
}

@media (max-width: 1020px) {
  .v2-header {
    grid-template-columns: 1fr auto;
  }

  .v2-nav {
    display: none;
  }

  .hero-media-grid {
    grid-template-columns: 1.1fr 0.9fr 1fr;
  }

  .hero-media-d,
  .hero-color-green {
    display: none;
  }

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

  .marketing-feed-grid[data-layout="wall"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-list article {
    grid-template-columns: 54px minmax(240px, 0.8fr) minmax(260px, 1.2fr);
  }

  .faq-band {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .v2-header {
    height: 64px;
    padding: 0 16px;
  }

  .v2-login {
    display: none;
  }

  .v2-button {
    min-height: 40px;
    padding: 0 14px;
  }

  .v2-hero {
    height: calc(100svh - 34px);
    min-height: 620px;
    margin-top: 64px;
    padding: 50px 18px 54px;
  }

  .hero-media-grid {
    inset: -20px;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .hero-media-a {
    grid-row: 1 / 3;
    grid-column: 1;
  }

  .hero-media-b {
    grid-row: 1;
    grid-column: 2;
  }

  .hero-media-c {
    grid-row: 2 / 4;
    grid-column: 2;
  }

  .hero-media-e {
    grid-row: 3 / 5;
    grid-column: 1;
  }

  .hero-shade {
    background: rgb(4 7 8 / 0.68);
  }

  .v2-hero-copy h1 {
    margin-top: 13px;
    font-size: 3.7rem;
  }

  .v2-hero-copy > p:not(.v2-eyebrow) {
    font-size: 1.02rem;
  }

  .v2-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .network-band {
    min-height: 102px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    padding: 0 18px;
  }

  .network-band > div {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .live-demo-band,
  .workflow-band,
  .use-cases-band,
  .pricing-band-v2,
  .faq-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .live-demo-band,
  .workflow-band,
  .use-cases-band,
  .pricing-band-v2,
  .faq-band {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .v2-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .v2-section-heading h2,
  .faq-heading h2 {
    font-size: 2.35rem;
  }

  .demo-toolbar {
    align-items: stretch;
    flex-direction: column;
    margin-top: 38px;
  }

  .demo-segment {
    width: 100%;
    overflow-x: auto;
  }

  .demo-segment button {
    min-width: max-content;
    flex: 1;
  }

  .marketing-feed-grid,
  .marketing-feed-grid[data-layout="wall"] {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .marketing-feed-grid[data-layout="mosaic"] .post-tall,
  .marketing-feed-grid[data-layout="mosaic"] .post-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .marketing-media,
  .marketing-feed-grid[data-layout="wall"] .marketing-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    flex: none;
  }

  .instagram-media,
  .tiktok-media {
    min-height: 420px;
    aspect-ratio: auto;
  }

  .workflow-list article {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .workflow-number {
    padding-top: 3px;
  }

  .workflow-visual,
  .workflow-list code {
    grid-column: 2;
    justify-self: stretch;
    margin-top: 14px;
  }

  .visual-connect {
    justify-content: flex-start;
  }

  .visual-connect i {
    width: 60px;
    height: 60px;
  }

  .visual-curate {
    justify-content: start;
  }

  .use-case-grid,
  .marketing-pricing-grid {
    grid-template-columns: 1fr;
  }

  .use-case-grid article {
    aspect-ratio: 4 / 4.5;
  }

  .marketing-pricing-grid article {
    min-height: 440px;
    padding: 24px;
  }

  .final-cta {
    min-height: 450px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 30px;
    padding: 70px 18px;
  }

  .final-cta h2 {
    font-size: 2.4rem;
  }

  .final-cta > .v2-button {
    width: 100%;
  }

  .final-cta-mosaic {
    right: -42%;
  }

  .v2-footer {
    min-height: 190px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 20px;
    padding: 30px 18px;
  }

  .v2-footer nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .v2-footer > span {
    justify-self: start;
  }
}

@media (max-width: 390px) {
  .v2-brand {
    font-size: 0.86rem;
  }

  .v2-header .v2-button {
    padding: 0 11px;
    font-size: 0.7rem;
  }

  .v2-hero-copy h1 {
    font-size: 3.2rem;
  }

  .network-band strong {
    font-size: 0.66rem;
  }

  .instagram-media,
  .tiktok-media {
    min-height: 380px;
  }

  .marketing-plan-name {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
