:root {
  --ink: #1e0d52;
  --ink-mid: #150533;
  --ink-soft: #3f3a56;
  --line: #e1e7e3;
  --line-strong: #c8d2cc;
  --bg: #ffffff;
  --bg-alt: #faf9fb;
  --bg-deep: #10201a;
  --accent: #1aa16b;
  --accent-dark: #0c5539;
  --accent-soft: #e5f1ea;
  --amber: #a8710f;
  --amber-soft: #fdf4e3;
  --radius: 10px;
  --wrap: 1200px;
  --sans:
    "Google Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --radius-lg: 16px;
  --shadow: 0 18px 60px 0 rgb(124 124 205 / 10%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
html,
body {
  height: auto;
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-dark);
}
.accent {
  color: var(--accent);
}
.accent-bg {
  background-color: var(--accent);
  color: var(--bg);
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap--narrow {
  max-width: 780px;
}

section {
  padding: 84px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--line {
  border-top: 1px solid var(--line);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
  font-family: var(--sans);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  margin: 0 0 20px;
}
h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  margin: 0 0 16px;
}
h3 {
  font-size: 2.15rem;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
h4 {
  font-size: 1.5rem;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
h5 {
  font-size: 1.2rem;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
h6 {
  font-size: 0.85rem;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 18px;
  font-size: 1rem;
  font-family: var(--sans);
}

.lede {
  font-size: 1.05rem;
  color: var(--ink-mid);
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.section__head {
  max-width: 68ch;
  margin-bottom: 48px;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 10px !important;
}
.mt-2 {
  margin-top: 20px !important;
}
.mt-3 {
  margin-top: 30px !important;
}
.mt-4 {
  margin-top: 40px !important;
}
.mt-5 {
  margin-top: 50px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 10px !important;
}
.mb-2 {
  margin-bottom: 20px !important;
}
.mb-3 {
  margin-bottom: 30px !important;
}
.mb-4 {
  margin-bottom: 40px !important;
}
.mb-5 {
  margin-bottom: 50px !important;
}

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent);
  color: #fff;
}
.btn--secondary {
  background: var(--accent);
  color: #fff;
}
.btn--secondary:hover {
  background: var(--ink-soft);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--accent);
  background-color: var(--accent);
  color: #fff;
}

.btn--on-dark {
  background: transparent;
  color: #dfeee7;
  border-color: rgba(255, 255, 255, 0.32);
}
.btn--on-dark:hover {
  border-color: #fff;
  color: #fff;
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

/* --- Header ------------------------------------------------------------- */

.site-header {
  position: relative;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(8px);
  box-shadow: var(--line) 0 0 5px;
  opacity: 0;
  height: 0;
  transform: translateY(-100%);
  transition: 0.3s ease;
}
.site-header.is-stuck {
  position: sticky;
  opacity: 1;
  transform: translateY(0);
  height: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-header .nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 1rem;
}

.site-header .nav a {
  color: var(--ink-mid);
  text-decoration: none;
  font-weight: 500;
}
.site-header .nav a.active,
.site-header .nav a:hover {
  color: var(--accent);
}

.site-header .nav .btn {
  padding: 9px 18px;
  font-size: 0.92rem;
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  padding: 92px 0 76px;
  background:
    radial-gradient(
      1100px 460px at 12% -10%,
      var(--accent-soft),
      transparent 20%
    ),
    var(--bg);
  overflow: hidden;
}
.hero .wrap {
  position: relative;
  z-index: 0;
}
.hero_bg {
  position: absolute;
  right: -50px;
  top: -50px;
  bottom: -50px;
  z-index: -1;
  opacity: 0.1;
}
.hero_bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero h1 {
  font-size: 50px;
  line-height: 1.1;
}
.hero .grid {
  grid-template-columns: 500px 1fr;
}

.hero__flag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 5px 13px 5px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  font-size: 0.83rem;
  color: var(--ink-mid);
}

.hero__flag b {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero .lede {
  font-size: 1.05rem;
  max-width: 60ch;
}

.hero__note {
  font-size: 0.9rem;
  margin: 10px 0 0;
  border: var(--line) 1px solid;
  border-radius: 10px;
  padding: 4px 15px;
  background-color: #1d2327;
  color: var(--bg);
  text-align: center;
}

.badges {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
  grid-template-columns: repeat(3, 1fr);
}

.badges li {
  padding: 5px 0;
  /* border: 1px solid var(--line); */
  border-radius: 5px;
  /* background: var(--bg); */
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-mid);
  /* box-shadow: rgba(0, 0, 0, 0.1) 0 2px 10px; */
  display: flex;
  gap: 10px;
}

/* --- Screenshots -------------------------------------------------------- */

figure {
  margin: 0;
}

.shot {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 22px 48px -50px var(--accent),
    0 0 20px rgba(0, 0, 0, 0.1);
}

.shot__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.shot__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d5ded8;
}

.shot__label {
  margin-left: 10px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.shot img {
  display: block;
  width: 100%;
}

figcaption {
  max-width: 66ch;
  margin-top: 14px;
  font-size: 1rem;
}

figcaption b {
  color: var(--ink-mid);
  font-weight: 600;
}
.shots-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 52px;
  align-items: start;
}

.hero__shot {
  margin: 46px 0 0;
}

.section--dark .shot {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.8);
}
.section--dark .shot__bar {
  background: #16302a;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.section--dark .shot__dot {
  background: #2d4d43;
}
.section--dark .shot__label {
  color: #8fb0a3;
}
.section--dark figcaption {
  color: #a8bfb5;
}
.section--dark figcaption b {
  color: #dfeee7;
}

@media (max-width: 860px) {
  .shots-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --- Stat strip --------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.stats div {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stats div:last-child {
  border-right: 0;
}

.stats b {
  display: block;

  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink-mid);
}

.stats span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
}

/* --- Generic grids ------------------------------------------------------ */

.grid {
  display: grid;
  gap: 24px;
}

.grid--1-2 {
  grid-template-columns: 1fr 2fr;
}
.grid--2-1 {
  grid-template-columns: 2fr 1fr;
}
@media (min-width: 575px) {
  .grid-sm-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .grid-sm-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .grid-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 767px) {
  .grid-md-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .grid-md-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  .grid-lg-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .grid-lg-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .grid-xl-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .grid-xl-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .grid-xl-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-xl-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.g-0 {
  gap: 0;
}
.g-1 {
  gap: 10px;
}
.g-2 {
  gap: 20px;
}
.g-3 {
  gap: 30px;
}
.g-4 {
  gap: 40px;
}
.g-5 {
  gap: 50px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
}

.card p:last-child {
  margin-bottom: 0;
}

.card__num {
  display: block;
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: 8rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent);
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  opacity: 0.05;
}

.card p {
  color: var(--ink-mid);
}

.icon_block {
  display: flex;
  gap: 20px;
}

.icon_block .ico {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--accent-soft);
  color: var(--ink-soft);
}

.icon_block .ico svg {
  width: 30px;
  height: auto;
}
/* --- Problem cards ------------------------------------------------------ */

.problem__outer {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 32px;
  border: rgba(0, 0, 0, 0.05) 1px solid;
}
.problem {
  padding: 30px;
  background: #fff;
}

.problem h3 {
  margin-bottom: 10px;
}
.problem p {
  margin-bottom: 0;
  color: var(--ink-mid);
}
.note {
  display: flex;
  background-color: #f7f5f9;
  gap: 20px;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  margin-top: 30px;
  border: #e5e5e5 1px solid;
}
.note__icon {
  width: 60px;
  flex: 0 0 60px;
  height: 60px;
  display: flex;
  background-color: var(--bg);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.note__icon svg {
  width: 25px;
  height: auto;
  fill: var(--accent);
}
.note p {
  margin-bottom: 0;
}
.icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  border: var(--accent-soft) 1px solid;
  color: var(--accent);
}
.icon svg {
  width: 25px;
  height: auto;
  max-height: 25px;
}
.flex-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- Callout ------------------------------------------------------------ */
.callout {
  background: #fff;
}
.callout h3 {
  margin-bottom: 10px;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout p {
  color: var(--ink-mid);
}

.callout--amber {
  background: var(--amber-soft);
  border-color: #e8d3a8;
}

.shot-timeline {
  position: relative;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 80px;
}
.shot-timeline-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  border-right: var(--line) 1px solid;
  pointer-events: none;
}
.shot-timeline__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.shot-timeline__inner figure:before,
.shot-timeline__inner figure:after {
  content: "";
  position: absolute;
  top: 150px;
  right: -100px;
  width: 200px;
  height: 1px;
  background-color: var(--line);
  z-index: -1;
}

.shot-timeline__inner figure:before {
  top: 140px;
  right: -110px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--line-strong);
  z-index: 0;
}
.shot-timeline figure h4 {
  margin-bottom: 15px;
}
.shot-timeline figure figcaption {
  font-weight: 500;
}
.shot-timeline figure {
  position: relative;
  width: 100%;
  z-index: 0;
  max-width: calc(50% - 100px);
}
.shot-timeline__inner:not(:nth-child(2)) {
  margin-top: -200px;
}
.shot-timeline__inner:nth-child(2n + 1) {
  align-items: flex-end;
}
.shot-timeline__inner:nth-child(2n + 1) figure:after {
  left: -100px;
  right: auto;
}
.shot-timeline__inner:nth-child(2n + 1) figure:before {
  left: -110px;
  right: auto;
}
/* --- Split rows (Pro deep dives) --------------------------------------- */
.split__accordion {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
}
.split_tab_button {
  background: #fff;
  border: var(--line) 1px solid;
  display: flex;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform ease 0.15s;
}

.split_tab_button.active,
.split_tab_button:hover {
  box-shadow: rgb(18 118 79 / 12%) 0 2px 15px;
  transform: scale(1.01);
}

.split_tab_button h5 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16px;
  color: var(--bg-deep);
}
.split_tab_button p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.split_tab_icon {
  width: 50px;
  flex: 0 0 50px;
  height: 50px;
  background-color: var(--bg-alt);
  border-radius: 10px;
  border: var(--line) 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split_tab_icon svg {
  width: 25px;
  max-height: 25px;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.split:last-child {
  border-bottom: 1px solid var(--line);
}

.split h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.split p {
  color: var(--ink-mid);
}
.split p:last-child {
  margin-bottom: 0;
}

.spec {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
}
ul.spec:last-child {
  margin-bottom: 0;
}

.spec li {
  position: relative;
  padding: 9px 0 9px 32px;
}
.spec li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
}
.spec li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  width: 6px;
  height: 10px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.spec li:last-child {
  border-bottom: 0;
}
.spec strong {
  color: var(--ink);
  font-weight: 600;
}

/* --- Dark section ------------------------------------------------------- */

.section--dark {
  background: var(--bg-deep);
  color: #cfe0d8;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
  color: #fff;
}

.section--dark .lede {
  color: var(--bg-alt);
}
.section--dark .card .card__num {
  opacity: 0.1;
}

.section--dark .eyebrow {
  color: #6fd3a4;
}

.section--dark .card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

.section--dark .card p {
  color: var(--bg-alt);
}

.section--dark .card__num {
  color: #6fd3a4;
}

/* --- Steps -------------------------------------------------------------- */

.steps {
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step__n {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink-soft);
}

.step p {
  margin-bottom: 0;
  color: var(--ink-mid);
  font-size: 0.97rem;
}

/* --- Comparison table --------------------------------------------------- */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

table.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.945rem;
}

table.compare th,
table.compare td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

table.compare thead th {
  position: sticky;
  top: 0;
  background: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--line-strong);
}

table.compare th.col-tier,
table.compare td.col-tier {
  width: 118px;
  text-align: center;
}

table.compare tr.group td {
  padding: 20px 18px 10px;
  background: var(--bg-alt);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.feat {
  display: block;
  font-weight: 500;
}

.feat small {
  display: block;
  margin-top: 2px;
  font-weight: 400;
  color: var(--ink-soft);
}

.yes {
  color: var(--accent);
  font-weight: 700;
}
.no {
  color: var(--line-strong);
  font-weight: 700;
}
.part {
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 600;
}
.qty {
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.tablewrap {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.tablewrap table {
  border-radius: inherit;
  min-width: auto !important;
}
thead th:first-child {
  border-top-left-radius: var(--radius);
}
thead th:last-child {
  border-top-right-radius: var(--radius);
}
tbody tr td {
  border: var(--line) 1px solid;
}
tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius);
}
tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius);
}
tbody tr td:last-child {
  border-bottom: 0;
  background-color: var(--bg-alt);
}
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 660px;
}
th,
td {
  padding: 10px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
thead th {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  /* Stick below the site header, not under it - the header is 80px and z-index 60. */
  position: sticky;
  top: 60px;
  z-index: 5;
}
thead th:nth-child(2),
thead th:nth-child(3) {
  text-align: center;
  width: 130px;
}
td:nth-child(2),
td:nth-child(3) {
  text-align: center;
}
tbody tr:last-child td {
  border-bottom: 0;
}
.rowhead td {
  background: var(--bg-alt) !important;
  font-weight: 700;
  color: var(--ink);
  padding-block: 20px;
  text-transform: uppercase;
}
.yes {
  color: #12b76a;
  font-weight: 700;
  font-size: 18px;
}
.no {
  color: #c9cfda;
  font-weight: 600;
}

/* --- Pricing ------------------------------------------------------------ */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
  height: 100%;
}

.plan--featured {
  border-color: var(--accent);
  box-shadow: 0 12px 34px -20px rgba(18, 118, 79, 0.55);
}

.plan__flag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.plan__name {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink-soft);
}
.price__off_badge {
  position: absolute;
  top: 26px;
  right: -37px;
  transform: rotate(45deg);
}
.price__off_badge svg {
  width: 120px;
  position: relative;
  left: -19px;
  top: -10px;
}
.price__off_badge span {
  position: absolute;
  top: -2px;
  left: 0;
  white-space: nowrap;
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  width: 82px;
  letter-spacing: 0;
}

.plan__for {
  margin: 0 0 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  min-height: 2.8em;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 4px;
}

.plan__price b {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.plan__was {
  font-size: 1.2rem;
  color: var(--ink-soft);
  text-decoration: line-through;
}

.plan__cycle {
  margin: 0 0 15px;
  color: var(--ink-soft);
}

.plan__list {
  margin: 0 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  flex-grow: 1;
}

.plan__list li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 24px;
  color: var(--ink-mid);
}

.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.plan__list li.plus {
  font-weight: 600;
  color: var(--ink);
}
.plan__list li.plus::before {
  content: "+";
}

.price-note {
  max-width: 66ch;
  margin: 34px auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.free-strip {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.free-strip p {
  margin: 0;
  color: var(--ink-mid);
}
.free-strip strong {
  color: var(--ink);
}

/* --- FAQ ---------------------------------------------------------------- */

.faq details {
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.faq summary {
  padding: 0 40px 0px 0;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.03rem;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.faq details[open] {
  box-shadow: rgb(124 124 205 / 10%) 0 5px 15px;
}
.faq details[open] summary {
  padding-bottom: 10px;
}
.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0 0 18px;
  padding-right: 40px;
  max-width: 76ch;
  color: var(--ink-mid);
  font-size: 0.97rem;
}

/* --- Final CTA ---------------------------------------------------------- */

.final {
  text-align: center;
}
.final .lede {
  margin: 0 auto 30px;
}
.final .btn-row {
  justify-content: center;
}

/* --- Footer ------------------------------------------------------------- */

.site-footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  font-size: 0.93rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-cols h4 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-cols ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-cols li {
  margin-bottom: 8px;
}
.footer-cols a {
  color: var(--ink-mid);
  text-decoration: none;
}
.footer-cols a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer-cols p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.colophon {
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.colophon p {
  margin: 0 0 8px;
  font-size: 12px;
}
section.pricing {
  overflow: hidden;
}
.burger {
  display: none;
  width: 24px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 5px auto;
  background: var(--ink);
  transition: ease 0.3s;
  position: relative;
  top: 0;
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  top: -7px;
}

.countdown_timer {
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  right: 0;
  background: #eae4ff;
  border-top: var(--line-strong) 1px solid;
  padding: 10px;
}
.countdown_timer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.countdown_timer_head {
  text-decoration: none !important;
  display: block;
}
.countdown_timer_head h4 {
  margin-bottom: 0;
}
.countdown_timer_head p {
  margin-bottom: 0;
  color: var(--ink);
}

.countdown__item {
  text-align: center;
  min-width: 60px;
  background-color: var(--ink);
  color: var(--bg);
  padding: 10px;
  border-radius: 10px;
}

.countdown__item span {
  display: block;
  font-size: 26px;
  line-height: 0.8;
  font-weight: 700;
}

.countdown__item small {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.countdown__separator {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
/* --- Responsive --------------------------------------------------------- */

@media (max-width: 1300px) {
  :root {
    --wrap: 1190px;
  }
}
@media (max-width: 1200px) {
  :root {
    --wrap: 1000px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero__note {
    font-size: 0.7rem;
  }
  .hero,
  section {
    padding: 60px 0;
  }
  h2 {
    font-size: 2.1rem;
  }
  h3 {
    font-size: 1.9rem;
  }
  h4 {
    font-size: 1.4rem;
  }
  .shot-timeline figure {
    max-width: calc(50% - 60px);
  }
  .shot-timeline__inner figure:before {
    right: -70px;
  }
  .shot-timeline__inner figure:after {
    right: -50px;
    width: 100px;
  }
  .shot-timeline__inner:nth-child(2n + 1) figure:before {
    left: -70px;
  }
  .shot-timeline__inner:nth-child(2n + 1) figure:after {
    left: -50px;
  }
  .stats b {
    font-size: 2.5rem;
  }
  .split__accordion {
    grid-template-columns: 350px 1fr;
  }
  .rowhead td {
    padding-block: 15px;
  }
  .plan__flag {
    white-space: nowrap;
    font-size: 0.6rem;
  }
  .plan {
    padding: 20px;
  }
  .plan__for {
    margin: 0 0 10px;
  }
  body {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  :root {
    --wrap: 770px;
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats div:nth-child(3) {
    border-right: 0;
  }
  .stats div {
    border-bottom: 1px solid var(--line);
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero__img {
    display: none;
  }
  .hero .grid {
    grid-template-columns: auto;
  }
  .g-4 {
    gap: 20px;
  }
  .g-5 {
    gap: 30px;
  }
  .split__accordion {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .split__acc_tabs {
    display: flex;
    gap: 15px;
    overflow: hidden;
    overflow-x: auto;
    padding: 10px;
    margin-inline: -10px;
    position: sticky;
    top: 65px;
    background: #fff;
    z-index: 9;
  }
  .split_tab_button {
    flex: 0 0 300px;
    display: block;
  }
  .split_tab_icon {
    width: 40px;
    flex: 0 0 40px;
    height: 40px;
    float: left;
    margin-right: 10px;
  }
  .split_tab_icon svg {
    width: 20px;
    max-height: 20px;
  }
  .split_tab_button p {
    margin-top: 10px;
  }
  .shot-timeline figure figcaption {
    padding: 15px;
  }
  .shot-timeline__inner {
    margin-bottom: 30px;
  }
  .who_for .card h4 {
    font-size: 1.2rem;
  }
  .section__head {
    margin-bottom: 28px;
  }
  .footer-cols > div:first-child {
    grid-column: span 4;
  }
  .countdown_timer_head h4 {
    font-size: 18px;
  }
  .countdown_timer_head p {
    font-size: 12px;
  }
  .countdown_timer .wrap {
    gap: 20px;
  }
  .countdown_timer_head {
    margin-bottom: 10px;
  }
  .countdown_timer .wrap .btn {
    margin-left: 15px;
  }
  .countdown_timer_head h4 {
    font-size: 18px;
  }
  .countdown_timer_head p {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -5px;
  }
  .stats > div:last-child {
    grid-column: span 2;
    border-bottom: 0;
  }
  .stats div:nth-child(2n) {
    border-right: 0;
  }
  .stats div:nth-child(3) {
    border-right: 1px solid var(--line);
  }
  .stats div {
    padding: 15px 20px;
  }
  .step {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
  .burger {
    display: block;
  }
  .site-header__inner .btn {
    margin-left: auto;
  }
  .site-header__inner .nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg);
    width: 100%;
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 25px;
    transform: translateY(calc(-100% - 100px));
    transition: ease 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    gap: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 10px;
  }
  .site-header__inner .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header__inner .nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .site-header__inner .nav > a + a {
    border-top: var(--line) 1px solid;
  }
  .badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 20px;
  }
  .badges span {
    flex: 0 0 23px;
  }
  .problem {
    padding: 20px;
  }

  h2 {
    font-size: 1.9rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.3rem;
  }
  .card__num {
    font-size: 6rem;
  }
  .icon_block {
    gap: 10px;
    flex-direction: column;
  }
  .icon_block .ico {
    margin-bottom: 0;
  }
  .shot-timeline-bar {
    width: 1px;
    top: -5px;
  }
  .shot-timeline figure {
    max-width: 100%;
    padding-left: 30px;
  }
  .shot-timeline__inner {
    margin-top: 0 !important;
  }
  .shot-timeline__inner figure:before {
    right: auto !important;
    left: -10px !important;
  }
  .shot-timeline__inner figure:after {
    right: auto !important;
    left: 10px !important;
  }
  .shot-timeline__inner {
    margin-bottom: 0;
  }
  .tablewrap {
    overflow-x: auto;
  }
  thead th {
    position: static;
  }

  .countdown__item span {
    font-size: 22px;
  }
  .countdown__item {
    padding: 14px;
    border-radius: 10px;
  }
  .countdown_timer .wrap {
    display: block;
    text-align: center;
  }
  .countdown_timer {
    padding: 10px 0;
  }
  .countdown {
    display: inline-flex;
    justify-content: flex-start;
    gap: 5px;
    vertical-align: middle;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .hero__flag b {
    display: none;
  }
  .hero,
  section {
    padding: 40px 0;
  }
  .wrap {
    padding: 0 15px;
  }
  .badges {
    grid-template-columns: 1fr;
    gap: 4px 0;
    margin-top: 0;
  }
  html,
  body {
    font-size: 14px;
  }
  .note__icon {
    display: none;
  }
  .card {
    padding: 20px;
  }
  .icon_block .ico {
    display: none;
  }
  .shot-timeline {
    padding-bottom: 50px;
  }
  .free-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .plan__flag {
    font-size: 0.8rem;
  }
  .plan__for {
    font-size: 1rem;
  }
  .faq details {
    padding: 15px;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .footer-cols > div:first-child {
    grid-column: span 2;
  }
  .site-footer {
    padding: 40px 0 20px;
  }
  .btn {
    padding: 12px 20px;
  }
  .hero_bg {
    top: -30px;
    bottom: auto;
    max-width: 70%;
  }
  .rowhead td {
    font-size: 14px;
  }
  table {
    min-width: 560px;
  }
  .plan__list li {
    margin-bottom: 6px;
  }
  .shot-timeline figure {
    padding-left: 0;
  }
  .shot-timeline__inner figure:before,
  .shot-timeline__inner figure:after,
  .shot-timeline-bar,
  .split_tab_icon {
    display: none;
  }
  .split_tab_button p {
    margin-top: 0;
  }

  .countdown__item span {
    font-size: 4vw;
  }
  .countdown__item small {
    font-size: 2vw;
  }
  .countdown__item {
    padding: 2vw 1vw;
    border-radius: 2vw;
  }
  .countdown_timer .wrap .btn {
    margin-left: 3vw;
    font-size: 3vw;
    width: auto;
    height: 42px;
  }
  .countdown_timer_head {
    margin-bottom: 0;
  }
  .tablewrap table tr th,
  .tablewrap table tr td {
    padding: 10px;
  }
  .tablewrap table tr:not(.rowhead) td:not(:first-child) {
    width: 20%;
    line-height: 1;
  }
  .yes {
    font-size: 14px;
  }
}

@media print {
  .site-header,
  .hero__flag {
    display: none;
  }
  section {
    padding: 28px 0;
    page-break-inside: avoid;
  }
}
