@font-face {
  font-family: "Aeonik Pro";
  src: url("/fonts/AeonikPro-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik Pro";
  src: url("/fonts/AeonikPro-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --cream: #f2ede3;
  --cream-light: #fbf7ed;
  --red: #bd2f2b;
  --red-dark: #a91d24;
  --green: #1f5d50;
  --blue: #012c76;
  --mustard: #d29a45;
  --black: #24211f;
  --muted: #746d65;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(210, 154, 69, .12), transparent 21%),
    radial-gradient(circle at 88% 42%, rgba(31, 93, 80, .09), transparent 25%),
    var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image: radial-gradient(rgba(36, 33, 31, .38) .55px, transparent .55px);
  background-size: 4px 4px;
}

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(36, 33, 31, .13);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-name {
  font-family: "Aeonik Pro", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.025em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header nav a {
  color: #6b655f;
  font-size: 12px;
  font-weight: 550;
  transition: color .2s ease;
}

.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--red); }

.header-purchase {
  min-height: 43px;
  padding: 0 10px 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 99px;
  color: var(--cream-light);
  background: var(--black);
  font-size: 11px;
  font-weight: 650;
  transition: transform .2s ease, background .2s ease;
}

.header-purchase span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--mustard);
}

.header-purchase:hover, .header-purchase:focus-visible {
  transform: translateY(-2px);
  background: var(--red);
}

.hero-content {
  min-height: calc(100vh - 92px);
  padding: 64px 0 78px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-wrap {
  position: relative;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Aeonik Pro", Arial, sans-serif;
  font-size: clamp(50px, 10vw, 132px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.065em;
}

.title-automacoes {
  color: var(--black);
}

.title-abis {
  margin-top: 24px;
  color: var(--red);
  font-family: "Aeonik Pro", Arial, sans-serif;
  font-size: 1.77em;
  font-weight: 700;
  letter-spacing: -.065em;
}

.hero-description {
  max-width: 540px;
  margin: 37px auto 0;
  color: #675f58;
  font-size: 16px;
  line-height: 1.65;
}

.hero-meta {
  margin-top: 43px;
  display: flex;
  justify-content: center;
}

.hero-meta > div {
  min-width: 118px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(36, 33, 31, .16);
}

.hero-meta > div:first-child { border-left: 1px solid rgba(36, 33, 31, .16); }
.hero-meta strong { color: var(--black); font-size: 13px; }
.hero-meta span { color: #8b837b; font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }

.instagram-preview {
  width: min(410px, 100%);
  overflow: hidden;
  border: 1px solid rgba(1, 44, 118, .28);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(1, 44, 118, .14);
}

.instagram-preview-head {
  height: 55px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  font-weight: 650;
}

.window-title,
.window-controls,
.timeline-controls,
.window-view-controls {
  display: inline-flex;
  align-items: center;
}

.window-title { gap: 12px; }
.window-controls, .timeline-controls { gap: 5px; }

.window-controls i,
.timeline-controls i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: var(--red);
}

.window-controls i:nth-child(2), .timeline-controls i:nth-child(2) { background: var(--mustard); }
.window-controls i:nth-child(3), .timeline-controls i:nth-child(3) { background: #4d9a79; }

.instagram-preview-head a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f1bd67;
}

.instagram-preview-head i { font-style: normal; }

.instagram-preview iframe {
  width: 100%;
  height: 650px;
  display: block;
  border: 0;
  background: #fff;
}

.editor-timeline {
  width: min(940px, 100%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(36, 33, 31, .2);
  border-radius: 17px;
  color: rgba(255, 255, 255, .78);
  background: #252728;
  box-shadow: 0 18px 45px rgba(36, 33, 31, .13);
  text-align: left;
}

.editor-timeline::before {
  content: "III";
  width: 62px;
  height: 49px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 0 15px 15px 0;
  color: rgba(255, 255, 255, .52);
  background: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-indent: 4px;
}

.editor-timeline::after {
  content: "";
  width: 76px;
  height: 62px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  border-radius: 76px 0 0 0;
  background-color: var(--red);
  background-image: radial-gradient(rgba(255, 224, 207, .72) 1.2px, transparent 1.5px);
  background-position: 19px 21px;
  background-size: 11px 11px;
}

.timeline-toolbar {
  min-height: 35px;
  padding: 0 13px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: .08em;
}

.timeline-toolbar strong { font-weight: 600; }
.timeline-toolbar small { justify-self: end; color: #c8c4bd; font-size: 7px; }
.timeline-controls i { width: 7px; height: 7px; }

.timeline-ruler {
  height: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: repeating-linear-gradient(90deg, transparent 0 31px, rgba(255, 255, 255, .18) 31px 32px);
}

.timeline-tracks {
  height: 62px;
  padding: 9px 80px 9px 68px;
  position: relative;
  display: grid;
  grid-template-columns: 1.7fr .9fr 1fr 1.2fr .75fr;
  gap: 5px;
  background: repeating-linear-gradient(0deg, transparent 0 21px, rgba(255, 255, 255, .055) 21px 22px);
}

.timeline-tracks::before {
  content: "";
  width: 1px;
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 42%;
  background: var(--mustard);
}

.timeline-tracks::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: -3px;
  left: calc(42% - 3px);
  z-index: 3;
  background: var(--mustard);
  transform: rotate(45deg);
}

.timeline-clip {
  height: 19px;
  display: block;
  border-radius: 3px;
  opacity: .94;
}

.clip-blue { background: var(--blue); }
.clip-green { margin-top: 23px; display: flex; align-items: center; overflow: hidden; background: var(--green); }
.clip-mustard { background: var(--mustard); }
.clip-red { margin-top: 23px; background: var(--red); }
.clip-blue.short { width: 78%; }

.premiere-waveform {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: #4d8068;
}

.premiere-waveform::before {
  content: "";
  position: absolute;
  inset: 9% 4px;
  background:
    linear-gradient(180deg, transparent 48%, rgba(18, 70, 54, .92) 48% 52%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(18, 70, 54, .88) 0 1px, transparent 1px 2px);
  clip-path: polygon(
    0 47%, 2% 42%, 4% 48%, 6% 28%, 8% 44%, 10% 34%, 12% 49%, 14% 22%,
    16% 41%, 18% 31%, 20% 46%, 22% 17%, 24% 38%, 26% 26%, 28% 48%, 30% 35%,
    32% 21%, 34% 43%, 36% 30%, 38% 14%, 40% 41%, 42% 25%, 44% 47%, 46% 34%,
    48% 19%, 50% 39%, 52% 29%, 54% 45%, 56% 24%, 58% 37%, 60% 16%, 62% 42%,
    64% 28%, 66% 48%, 68% 32%, 70% 20%, 72% 44%, 74% 26%, 76% 39%, 78% 13%,
    80% 36%, 82% 23%, 84% 46%, 86% 31%, 88% 18%, 90% 42%, 92% 27%, 94% 47%,
    96% 35%, 98% 43%, 100% 48%, 100% 52%, 98% 57%, 96% 65%, 94% 53%, 92% 73%,
    90% 58%, 88% 82%, 86% 69%, 84% 54%, 82% 77%, 80% 64%, 78% 87%, 76% 61%,
    74% 74%, 72% 56%, 70% 80%, 68% 68%, 66% 52%, 64% 72%, 62% 58%, 60% 84%,
    58% 63%, 56% 76%, 54% 55%, 52% 71%, 50% 61%, 48% 81%, 46% 66%, 44% 53%,
    42% 75%, 40% 59%, 38% 86%, 36% 70%, 34% 57%, 32% 79%, 30% 65%, 28% 52%,
    26% 74%, 24% 62%, 22% 83%, 20% 54%, 18% 69%, 16% 59%, 14% 78%, 12% 51%,
    10% 66%, 8% 56%, 6% 72%, 4% 52%, 2% 58%, 0 53%
  );
}

.premiere-waveform::after {
  content: "";
  width: 4px;
  position: absolute;
  inset: 0 0 0 auto;
  background: var(--mustard);
}

.timeline-clip-waveform {
  width: 100%;
  height: 15px;
  color: #91bda9;
}

.tools-section {
  padding: 125px 0 135px;
  background: var(--cream-light);
}

.tools-window {
  overflow: hidden;
  border: 1px solid #d6cdbf;
  border-radius: 26px;
  background: #f7f2e9;
  box-shadow: 0 28px 70px rgba(55, 43, 33, .08);
}

.tools-window-bar {
  min-height: 50px;
  padding: 0 19px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #dcd3c6;
  color: #837b72;
  background: #e9e2d7;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: .11em;
}

.window-view-controls {
  justify-self: end;
  gap: 4px;
}

.window-view-controls i {
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 1px;
  background: #9b9389;
}

.tools-window-body { padding: 70px 30px 30px; }

.tools-title {
  max-width: 900px;
  margin: 0 0 58px;
  color: var(--red);
  font-size: clamp(47px, 6.2vw, 78px);
  font-family: "Aeonik Pro", Arial, sans-serif;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.065em;
}

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

.waveform {
  min-width: 0;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.waveform i {
  width: 2px;
  min-width: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
  opacity: .88;
}

.package-audio-track {
  min-height: 72px;
  margin-top: 18px;
  padding: 11px 16px;
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(255, 255, 255, .055) 23px 24px),
    #252728;
}

.package-audio-track::after {
  content: "";
  width: 1px;
  position: absolute;
  inset: 0 auto 0 64%;
  background: var(--mustard);
  box-shadow: 0 -1px 0 3px var(--mustard);
}

.package-track-label {
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: rgba(255, 255, 255, .72);
  background: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 700;
}

.package-track-waveform {
  height: 39px;
  color: #174635;
  border-radius: 5px;
  background: #4d8068;
}

.package-track-time {
  color: rgba(255, 255, 255, .57);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: .08em;
}

.tool-card {
  min-height: 430px;
  padding: 26px 27px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd5c9;
  border-radius: 25px;
  background: var(--cream);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.tool-card::before {
  content: "";
  width: 105px;
  height: 105px;
  position: absolute;
  top: -63px;
  right: -47px;
  border-radius: 50%;
  background: var(--red);
}

.tool-card:nth-child(2)::before { background: var(--green); }
.tool-card:nth-child(3)::before { background: var(--blue); }

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 21px 55px rgba(49, 37, 29, .1);
}

.tool-card-top { display: flex; justify-content: space-between; align-items: center; }
.tool-number { color: #9d958c; font-family: var(--font-geist-mono), monospace; font-size: 10px; }
.tool-version { padding: 7px 10px; position: relative; z-index: 2; border-radius: 99px; color: #706961; background: #e7dfd3; font-family: var(--font-geist-mono), monospace; font-size: 8px; }

.tool-icon {
  width: 81px;
  height: 81px;
  margin: 51px 0 34px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ead8d4;
}

.tool-card:nth-child(2) .tool-icon { background: #d7e4db; }
.tool-card:nth-child(3) .tool-icon { background: #dce5f3; }

.frame-icon span { width: 22px; height: 22px; position: absolute; border-color: var(--red); border-style: solid; }
.frame-icon span:nth-child(1) { top: 22px; left: 22px; border-width: 2px 0 0 2px; }
.frame-icon span:nth-child(2) { top: 22px; right: 22px; border-width: 2px 2px 0 0; }
.frame-icon span:nth-child(3) { bottom: 22px; left: 22px; border-width: 0 0 2px 2px; }
.frame-icon span:nth-child(4) { bottom: 22px; right: 22px; border-width: 0 2px 2px 0; }

.zoom-icon span { position: absolute; border-radius: 50%; border: 2px solid var(--green); }
.zoom-icon span:nth-child(1) { width: 32px; height: 32px; }
.zoom-icon span:nth-child(2) { width: 18px; height: 18px; opacity: .55; }
.zoom-icon span:nth-child(3) { width: 5px; height: 5px; border: 0; background: var(--green); }
.zoom-icon span:nth-child(4) { width: 16px; height: 2px; right: 19px; bottom: 23px; border: 0; border-radius: 2px; background: var(--green); transform: rotate(45deg); }

.audio-icon { display: flex; align-items: center; justify-content: center; gap: 4px; }
.audio-icon span { width: 3px; position: relative; z-index: 2; border-radius: 3px; background: var(--blue); }
.audio-icon span:nth-child(1) { height: 17px; }
.audio-icon span:nth-child(2) { height: 31px; }
.audio-icon span:nth-child(3) { height: 24px; }
.audio-icon span:nth-child(4) { height: 12px; }

.tool-card h3 { margin: 0 0 13px; font-family: "Aeonik Pro", Arial, sans-serif; font-size: 21px; font-weight: 700; letter-spacing: -.035em; }
.tool-card > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }

.tool-detail {
  margin-top: auto;
  padding-top: 23px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid #ddd4c8;
  color: #6f675f;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tool-detail i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.tool-card:nth-child(2) .tool-detail i { background: var(--green); }
.tool-card:nth-child(3) .tool-detail i { background: var(--blue); }

.install-section {
  padding: 120px 0;
  color: #fff;
  background: var(--green);
}

.install-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 115px;
  align-items: center;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mustard);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section-label::before { content: ""; width: 23px; height: 1px; background: currentColor; }

.install-copy h2 {
  max-width: 570px;
  margin: 18px 0 0;
  font-size: clamp(43px, 5vw, 67px);
  font-family: "Aeonik Pro", Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.06em;
}

.install-copy > p { max-width: 500px; margin: 26px 0 34px; color: rgba(255,255,255,.67); font-size: 14px; line-height: 1.75; }
.compatibility-row { display: flex; flex-wrap: wrap; gap: 10px; }
.compatibility-row > span { min-height: 38px; padding: 0 13px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; color: rgba(255,255,255,.78); font-size: 9px; }
.mac-dot, .win-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.win-dot { border-radius: 1px; background: var(--mustard); }
.premiere-dot { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 4px; color: #fff; background: var(--red); font-size: 7px; font-style: normal; }

.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { min-height: 116px; padding: 27px 0; display: grid; grid-template-columns: 52px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.17); }
.steps-list li:first-child { border-top: 1px solid rgba(255,255,255,.17); }
.steps-list li > span { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: var(--black); background: var(--mustard); font-family: var(--font-geist-mono), monospace; font-size: 10px; font-weight: 700; }
.steps-list strong { display: block; margin: 2px 0 8px; font-size: 14px; }
.steps-list p { margin: 0; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.55; }

.about-section {
  padding: 112px 0 62px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  pointer-events: none;
  background-image: radial-gradient(rgba(36, 33, 31, .42) .55px, transparent .55px);
  background-size: 4px 4px;
}

.about-heading {
  width: max-content;
  margin: 0 auto 34px;
  position: relative;
  z-index: 2;
}

.about-heading h2 {
  margin: 0;
  position: relative;
  z-index: 2;
  color: var(--red-dark);
  font-size: clamp(49px, 6.3vw, 78px);
  font-family: "Aeonik Pro", Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.055em;
}

.about-card {
  min-height: 430px;
  padding: 58px 76px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: center;
  gap: 74px;
  border-radius: 68px 68px 18px 18px;
  color: #fff;
  background: var(--red-dark);
  overflow: hidden;
}

.about-card::after {
  content: "";
  width: 230px;
  height: 230px;
  position: absolute;
  right: -130px;
  bottom: -130px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.02);
}

.photo-slot {
  width: 310px;
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 50%;
  background: var(--cream-light);
  box-shadow: 0 20px 45px rgba(72, 8, 13, .22);
  justify-self: center;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: 43% 43%;
}

.about-copy { max-width: 585px; position: relative; z-index: 2; }
.about-eyebrow { display: block; margin-bottom: 18px; color: var(--mustard); font-family: var(--font-geist-mono), monospace; font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.about-copy p { margin: 0 0 13px; color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.55; }
.bottom-purchase {
  padding: 42px 24px 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 31px;
  text-align: center;
  background: var(--cream);
}

.cta-mini-timeline {
  width: min(520px, 100%);
  overflow: hidden;
  border: 1px solid rgba(36, 33, 31, .22);
  border-radius: 14px;
  background: #252728;
  box-shadow: 0 15px 35px rgba(36, 33, 31, .12);
}

.cta-mini-ruler {
  height: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: repeating-linear-gradient(90deg, transparent 0 27px, rgba(255, 255, 255, .2) 27px 28px);
}

.cta-mini-tracks {
  height: 57px;
  padding: 9px 12px;
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr .78fr 1.15fr;
  gap: 5px;
  background: repeating-linear-gradient(0deg, transparent 0 20px, rgba(255, 255, 255, .055) 20px 21px);
}

.cta-mini-tracks::before {
  content: "";
  width: 1px;
  position: absolute;
  z-index: 3;
  inset: -18px auto 0 57%;
  background: var(--mustard);
}

.cta-mini-tracks::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: -22px;
  left: calc(57% - 3px);
  z-index: 4;
  background: var(--mustard);
  transform: rotate(45deg);
}

.cta-clip {
  height: 18px;
  display: block;
  overflow: hidden;
  border-radius: 3px;
}

.cta-clip-blue { background: var(--blue); }
.cta-clip-green { margin-top: 21px; display: flex; align-items: center; background: var(--green); }
.cta-clip-mustard { background: var(--mustard); }
.cta-clip-red { margin-top: 21px; background: var(--red); }
.cta-clip-waveform { width: 100%; height: 14px; color: #91bda9; }

.bottom-purchase-title {
  max-width: 820px;
  margin: 0;
  color: var(--red);
  font-family: "Aeonik Pro", Arial, sans-serif;
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.055em;
}

.bottom-purchase-button {
  width: min(430px, 100%);
  min-height: 78px;
  padding: 0 15px 0 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-radius: 18px;
  color: #fff;
  background: var(--black);
  box-shadow: 0 18px 45px rgba(36, 33, 31, .16);
  transition: transform .2s ease, background .2s ease;
}

.bottom-purchase-button:hover, .bottom-purchase-button:focus-visible { transform: translateY(-3px); background: var(--red); }
.bottom-purchase-button > span { display: flex; flex-direction: column; gap: 4px; }
.bottom-purchase-button strong { font-size: 14px; }
.bottom-purchase-button small { color: rgba(255,255,255,.58); font-size: 9px; }
.bottom-purchase-button i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; color: var(--black); background: var(--mustard); font-style: normal; font-size: 16px; }

footer { padding: 35px 0 44px; background: var(--black); color: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand .brand-name { color: #fff; }

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 9px;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: rgba(255,255,255,.72);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.social-links img {
  width: 19px;
  height: 19px;
  display: block;
  filter: invert(1);
}

.social-links a:hover, .social-links a:focus-visible {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

:focus-visible { outline: 2px solid var(--mustard); outline-offset: 4px; }

@media (max-width: 960px) {
  .site-header nav { display: none; }
  .hero-content { gap: 48px; }
  .hero-copy { max-width: 720px; }
  .instagram-preview { width: min(420px, 100%); }
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: 355px; }
  .tool-icon { margin: 36px 0 28px; }
  .install-layout { grid-template-columns: 1fr; gap: 62px; }
  .about-card { grid-template-columns: 1fr; justify-items: center; gap: 45px; text-align: center; }
  .about-copy { max-width: 670px; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 32px, 1180px); }
  .site-header { height: 76px; }
  .brand-name { font-size: 12px; }
  .header-purchase { min-height: 39px; padding-left: 14px; font-size: 9px; }
  .header-purchase span { width: 24px; height: 24px; }
  .hero-content { min-height: auto; padding: 65px 0 82px; }
  h1 { font-size: clamp(48px, 12.5vw, 82px); }
  .title-abis { margin-top: 17px; }
  .hero-description { margin-top: 31px; font-size: 14px; }
  .hero-meta { width: 100%; }
  .hero-meta > div { min-width: 0; flex: 1; padding: 0 9px; }
  .hero-meta strong { font-size: 10px; }
  .hero-meta span { font-size: 7px; }
  .instagram-preview iframe { height: 610px; }
  .editor-timeline { border-radius: 13px; }
  .editor-timeline::before { width: 48px; height: 45px; border-radius: 0 12px 12px 0; }
  .editor-timeline::after { width: 59px; height: 56px; border-radius: 59px 0 0 0; }
  .timeline-toolbar { grid-template-columns: auto 1fr; }
  .timeline-toolbar strong { justify-self: end; }
  .timeline-toolbar small { display: none; }
  .timeline-tracks { padding-right: 62px; padding-left: 53px; grid-template-columns: 1.4fr .8fr .9fr 1fr .65fr; }
  .tools-section, .install-section { padding: 86px 0; }
  .tools-window { border-radius: 19px; }
  .tools-window-bar { padding: 0 13px; font-size: 6px; }
  .tools-window-body { padding: 45px 14px 14px; }
  .tools-title { margin-bottom: 39px; font-size: 45px; }
  .tool-card { min-height: 390px; }
  .package-audio-track { grid-template-columns: 40px 1fr; gap: 10px; padding-right: 12px; padding-left: 10px; }
  .package-track-label { width: 38px; height: 38px; }
  .package-track-time { display: none; }
  .waveform { gap: 2px; }
  .waveform i { width: 1.5px; min-width: 1.5px; }
  .install-copy h2 { font-size: 43px; }
  .cta-mini-tracks { grid-template-columns: 1.15fr .9fr .7fr 1fr; }
  .about-section { padding: 92px 0 45px; }
  .about-heading { margin-bottom: 26px; }
  .about-heading h2 { font-size: 51px; }
  .about-card { padding: 42px 24px; border-radius: 44px 44px 16px 16px; }
  .photo-slot { width: min(245px, 100%); }
  .about-copy p { font-size: 13px; }
  .bottom-purchase { padding-bottom: 75px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .social-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
