/*WE STARTED HERE! HERE! HERE!*/

:root {
  --bg: #43dff0;
  --bg-light: #74f3ff;
  --bg-soft: #2fd3e8;
  --bg-deep: #16bfd6;
  --bg-dark: #0fa4bf;

  --white: #ffffff;
  --text: #3b220f;
  --muted: #5a5d52;

  --wood: #8a5526;
  --wood-dark: #5a3416;
  --wood-light: #b67a42;

  --gold: #e1ab4e;
  --gold-dark: #ba832e;
  --gold-light: #f4cb7c;

  --line: rgba(255, 255, 255, 0.22);
  --line-warm: #e7d4bc;

  --shadow: 0 18px 45px rgba(0, 98, 122, 0.18);

  --radius: 24px;
  --radius-sm: 18px;

  --section-pad: 70px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.18), transparent 0 12%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.14), transparent 0 10%),
    radial-gradient(circle at 30% 72%, rgba(0, 168, 196, 0.16), transparent 0 18%),
    linear-gradient(135deg, rgba(255,255,255,0.08) 25%, transparent 25%) 0 0 / 38px 38px,
    linear-gradient(225deg, rgba(255,255,255,0.06) 25%, transparent 25%) 0 0 / 38px 38px,
    linear-gradient(315deg, rgba(0, 145, 170, 0.08) 25%, transparent 25%) 0 0 / 38px 38px,
    linear-gradient(45deg, rgba(0, 145, 170, 0.08) 25%, transparent 25%) 0 0 / 38px 38px,
    linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 45%, var(--bg-soft) 72%, var(--bg-deep) 100%);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--wood);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading h2,
.split-copy h2,
.tutorial-content h2,
.cta h2 {
  margin: 0 0 18px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--wood-dark);
}

.section-heading p,
.split-copy p,
.hero-text {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(213, 231, 245, 0.95);
}

.nav-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--wood-dark);
}

.site-nav {
  display: grid;
  grid-auto-flow: column;
  justify-content: end;
  gap: 34px;
}

.site-nav a {
  font-weight: 600;
  color: #5e6686;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--wood);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--wood-dark);
  border-radius: 10px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.18), transparent 0 18%),
    radial-gradient(circle at 84% 20%, rgba(255,255,255,0.12), transparent 0 14%),
    radial-gradient(circle at 48% 52%, rgba(0, 166, 191, 0.18), transparent 0 16%),
    linear-gradient(135deg, rgba(255,255,255,0.07) 25%, transparent 25%) 0 0 / 42px 42px,
    linear-gradient(225deg, rgba(255,255,255,0.05) 25%, transparent 25%) 0 0 / 42px 42px,
    linear-gradient(180deg, #79f6ff 0%, #43dff0 52%, #1fc7de 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.7rem, 5.8vw, 5rem);
  line-height: 1.02;
  font-weight: 900;
  max-width: 640px;
  color: var(--wood-dark);
}

.hero-text {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phone-stack {
  position: relative;
  width: 100%;
  max-width: 510px;
  height: 620px;
}

.phone {
  position: absolute;
  border-radius: 44px;
  background: linear-gradient(180deg, #000000, #151515);
  box-shadow: 0 24px 60px rgba(77, 108, 147, 0.22);
  padding: 16px;
  overflow: hidden;
  /*border: 8px solid rgba(38, 38, 38, 0.82);*/
}

.phone::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 20px;
  background: #000000;
  border-radius: 20px;
  z-index: 2;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  background: var(--bg-soft);
}

.phone-back {
  width: 260px;
  height: 540px;
  left: 30px;
  top: 54px;
  transform: rotate(-8deg);
}

.phone-front {
  width: 290px;
  height: 590px;
  right: 36px;
  top: 12px;
  transform: rotate(7deg);
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.hero-shape-1 {
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.12);
  top: -90px;
  right: -90px;
}

.hero-shape-2 {
  width: 220px;
  height: 220px;
  background: rgba(255, 221, 138, 0.10);
  bottom: 50px;
  left: -60px;
}

.hero-shape-3 {
  width: 120px;
  height: 120px;
  background: rgba(0, 150, 180, 0.16);
  top: 22%;
  left: 48%;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #2d1907;
  box-shadow: 0 14px 32px rgba(186, 131, 46, 0.28);
  border: 0;
}

.btn-secondary,
.btn-outline {
  background: linear-gradient(180deg, var(--wood-light), var(--wood));
  color: white;
  border: 1px solid rgba(90, 52, 22, 0.16);
  box-shadow: 0 10px 24px rgba(90, 52, 22, 0.16);
}

.btn-white {
  background: white;
  color: var(--wood-dark);
  font-weight: 800;
}

/* FEATURES */
.features {
  background: transparent;
}

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

.feature-card {
  position: relative;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(59, 104, 147, 0.1);
  transition: all 0.3s ease;
  --border-fill: 0deg;

  /* 👇 border is invisible initially */
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    conic-gradient(
      from var(--angle),
      transparent 0deg,
      transparent 360deg
    ) border-box;

  background-clip: padding-box, border-box;
}

@property --border-fill {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.feature-card:hover {

  animation: drawFeatureBorder 0.45s linear forwards;
}

@keyframes drawFeatureBorder {
  from {
    --border-fill: 0deg;
    background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      conic-gradient(
        from 0deg,
        var(--wood) 0deg var(--border-fill),
        transparent var(--border-fill) 361deg
      ) border-box;
  }

  to {
    --border-fill: 361deg;
    background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      conic-gradient(
        from 0deg,
        var(--wood) 0deg var(--border-fill),
        transparent var(--border-fill) 361deg
      ) border-box;
  }
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --border-fill {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.feature-icon {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  box-shadow: 0 10px 22px rgba(186, 131, 46, 0.18);
}

.feature-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  color: var(--wood-dark);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

/* HOW IT WORKS */
.how-it-works {

  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(0, 156, 181, 0.10) 100%);

}

.how-download {
  margin-top: 10px;
  text-align: center; /* change to center if you want */
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.steps-column {
  display: grid;
  gap: 18px;
}

.step-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 24px rgba(59, 104, 147, 0.08);
  backdrop-filter: blur(10px);
}

.step-number {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--wood), var(--wood-dark));
  color: white;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  box-shadow: 0 10px 22px rgba(90, 52, 22, 0.22);
}

.step-card h3 {
  margin: 2px 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: var(--wood-dark);
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.how-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.how-phone {
  position: relative;
  width: 300px;
  height: 580px;
  transform: rotate(5deg);
  z-index: 2;
}

.left-phone {
  position: relative;
  width: 300px;
  height: 580px;
  transform: rotate(-5deg);
  z-index: 2;
}

.blob {
  position: absolute;
  border-radius: 50%;
}

.blob-a {
  width: 320px;
  height: 320px;
  background: rgba(99, 182, 255, 0.18);
  top: 40px;
  right: 60px;
}

.blob-b {
  width: 220px;
  height: 220px;
  background: rgba(241, 203, 124, 0.18);
  left: 40px;
  bottom: 50px;
}

/* SPLIT SECTIONS */
.split-section {
  background: transparent;
}

.split-alt {
  background: rgba(255, 255, 255, 0.08);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

.split-copy p {
  max-width: 580px;
}

.split-visual {
  display: grid;
  place-items: center;
}

.dashboard-card {
  width: 100%;
  max-width: 530px;
  min-height: 370px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  padding: 18px;
  backdrop-filter: blur(10px);
}

.dashboard-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: var(--bg-soft);
}

/* TUTORIAL */
.tutorial {
  background: transparent;
}

.tutorial-box {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tutorial-box picture {
  display: block;
}

.tutorial-box picture img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  background: var(--bg-soft);
}

.tutorial-box > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  background: var(--bg-soft);
}

.tutorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(52, 90, 124, 0.16), rgba(46, 76, 106, 0.56));
  z-index: 1;
}

.tutorial-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  text-align: center;
  color: white;
  padding: 24px;
}

.tutorial-content h2 {
  color: white;
}

.play-button {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: grid;
  place-items: center;
  margin: 12px auto 0;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(92, 124, 157, 0.24);
}

.play-button span {
  width: 0;
  height: 0;
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

/* PRICING */
.pricing {
  background: transparent;
}

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

.price-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 38px 30px;
  box-shadow: 0 10px 28px rgba(59, 104, 147, 0.08);
  display: grid;
  gap: 16px;
  backdrop-filter: blur(10px);
}

.price-card.featured {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: #2c1807;
  border-color: transparent;
  transform: translateY(-10px);
  box-shadow: 0 20px 46px rgba(186, 131, 46, 0.28);
}

.price-card.featured .plan-label,
.price-card.featured .plan-note,
.price-card.featured li {
  color: rgba(44, 24, 7, 0.88);
}

.plan-label {
  margin: 0;
  color: var(--wood);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.price-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--wood-dark);
}

.price-card.featured h3 {
  color: #2c1807;
}

.plan-note {
  margin: 0;
  color: var(--muted);
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #6a665f;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--gold-dark);
}

.price-card.featured li::before {
  color: #2c1807;
}

/* REVIEW */
.review {
  background: transparent;
}

.review-card {

  max-width: 720px;

  margin: 0 auto;

  background: rgba(255, 255, 255, 0.85);

  border-radius: 30px;

  padding: 60px 36px 40px;

  text-align: center;

  box-shadow: 0 12px 35px rgba(59, 104, 147, 0.12);

  backdrop-filter: blur(10px);

  position: relative;

}

.review-avatar {

  position: absolute;

  top: -40px;

  left: 50%;

  transform: translateX(-50%);

}

.review-avatar img {

  width: 80px;

  height: 80px;

  border-radius: 50%;

  object-fit: cover;

  border: 4px solid white;

  box-shadow: 0 6px 18px rgba(0,0,0,0.15);

}

.quote-mark {
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.review-text {

  margin: 20px auto 20px;

  max-width: 600px;

  color: var(--muted);

  font-size: 1.08rem;

  line-height: 1.6;

}

.review-author {

  margin: 0;

  font-weight: 700;

  color: var(--wood-dark);

  font-size: 1.1rem;

}

.review-role {

  margin: 4px 0 0;

  font-size: 0.9rem;

  color: #7a7a7a;

}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  color: white;

  background:
    /* PLANK SEAMS (3–4 boards) */
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 24%,
      rgba(60, 30, 10, 0.45) 24.5%,
      transparent 25.5%,

      transparent 49%,
      rgba(60, 30, 10, 0.45) 49.5%,
      transparent 50.5%,

      transparent 74%,
      rgba(60, 30, 10, 0.45) 74.5%,
      transparent 75.5%,

      transparent 100%
    ),

    /* WOOD GRAIN (very subtle) */
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 6px
    ),

    /* LIGHTING (top highlight, bottom shade) */
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.08),
      rgba(0,0,0,0.12)
    ),

    /* BASE WOOD */
    linear-gradient(135deg, var(--wood), var(--wood-dark));
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.06) 0%,
      transparent 10%,
      transparent 24%,

      rgba(0,0,0,0.12) 26%,
      transparent 28%,
      transparent 49%,

      rgba(0,0,0,0.12) 51%,
      transparent 53%,
      transparent 74%,

      rgba(0,0,0,0.12) 76%,
      transparent 78%,
      transparent 100%
    );
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  color: white;
  margin-bottom: 0;
}

/* FOOTER */
.site-footer {

  background: #20bfd8;

  color: rgba(255, 255, 255, 0.86);

  padding: 28px 0;

  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.22);

}

.footer-grid p {
  margin: 0;
  font-size: 0.95rem;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(49, 80, 112, 0.55);
}

.modal-content {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 8vh auto 0;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(62, 95, 128, 0.24);
}

.modal-inner {
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 36px;
  text-align: center;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f4f9ff;
  color: var(--wood-dark);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 3;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .how-grid,
  .split-grid,
  .pricing-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy h1,
  .hero-text,
  .split-copy p {
    max-width: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 560px;
  }

  .split-grid.reverse {
    direction: ltr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    justify-self: center;
  }
}

@media (max-width: 820px) {
  :root {
    --section-pad: 85px;
  }

  .nav-grid {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-auto-flow: row;
    justify-content: stretch;
    gap: 10px;
    padding: 0 0 18px;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
  }

  .phone-stack {
    height: 500px;
    max-width: 360px;
  }

  .phone-back {
    width: 210px;
    height: 430px;
    left: 0;
    top: 48px;
  }

  .phone-front {
    width: 230px;
    height: 470px;
    right: 0;
    top: 0;
  }

  .how-visual {
    min-height: 470px;
  }

  .how-phone {
    width: 250px;
    height: 480px;
  }

  .step-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding-top: 50px;
    padding-bottom: 90px;
  }

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

  .feature-card,
  .step-card,
  .price-card,
  .review-card {
    padding: 28px 22px;
  }

  .feature-card,
.step-card,
.dashboard-card,
.price-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

  .tutorial-box,
  .dashboard-card,
  .price-card {
    border-radius: 22px;
  }

  .tutorial-box picture img {
    max-height: 420px;
  }

  .play-button {
    width: 84px;
    height: 84px;
  }
}


/* REVIEW */
.review {
  background: transparent;
  padding-top: 140px;
}

.review-card {
  max-width: 950px;
  margin: 0 auto;
  background: rgba(235, 246, 250, 0.92);
  border-radius: 42px;
  padding: 110px 56px 56px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 98, 122, 0.16);
  position: relative;
}

.review-avatar {
  position: absolute;
  top: -58px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  padding: 7px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.review-text {
  margin: 0 auto 28px;
  max-width: 1100px;
  color: #5e6258;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.55;
}

.review-author {
  margin: 0;
  font-weight: 800;
  color: var(--wood-dark);
  font-size: 1.15rem;
}

.review-role {
  margin: 8px 0 0;
  font-size: 1rem;
  color: #7b7f86;
}

@media (max-width: 560px) {
  .review {
    padding-top: 110px;
  }

  .review-card {
    border-radius: 28px;
    padding: 90px 24px 32px;
  }

  .review-avatar {
    width: 92px;
    height: 92px;
    top: -46px;
    padding: 6px;
  }

  .review-text {
    font-size: 1.05rem;
  }
}

.tutorial-box picture,
.tutorial-box img,
.tutorial-overlay {
  pointer-events: none;
}

.tutorial-content,
.play-button {
  pointer-events: auto;
}

.tutorial-content {
  z-index: 3;
}

.tutorial-overlay {
  z-index: 1;
}

.tutorial-box picture {
  position: relative;
  z-index: 0;
}

.tutorial-box.is-playing {
  width: min(100%, 1100px);
  height: 520px;
  margin: 0 auto;
}

.tutorial-box.is-playing iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 560px) {
  .tutorial-box.is-playing {
    height: 420px;
  }
}

@media (max-width: 1100px) {
  .split-section.split-alt .split-visual {
    order: 2;
  }

  .split-section.split-alt .split-copy {
    order: 1;
  }
}