:root {
  --ink: #1d2a3a;
  --ink-soft: #405064;
  --cream: #f3eddd;
  --paper: #fffdf7;
  --sky: #8ed5ee;
  --sky-deep: #41add5;
  --yellow: #ffcf45;
  --coral: #ff756d;
  --mint: #a9d8ca;
  --white: #ffffff;
  --line: rgba(29, 42, 58, 0.18);
  --shadow: 0 18px 0 rgba(29, 42, 58, 0.11);
  --radius-lg: 38px;
  --radius-md: 24px;
  --shell: min(1240px, calc(100vw - 48px));
  --display: "Arial Rounded MT Bold", "Trebuchet MS", "Avenir Next", sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--yellow);
  color: var(--ink);
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(96px, 11vw, 160px);
}

.kicker,
.eyebrow {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker {
  margin-bottom: 18px;
  color: var(--sky-deep);
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}

.eyebrow span {
  width: 26px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--yellow);
  transform: rotate(-8deg);
}

.button {
  display: inline-flex;
  min-height: 54px;
  gap: 13px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.round-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.button--primary {
  background: var(--yellow);
  box-shadow: 0 7px 0 var(--ink);
}

.button--primary:hover {
  box-shadow: 0 10px 0 var(--ink);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  background: var(--white);
  font-size: 0.88rem;
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-block: 4px;
  border-bottom: 2px solid rgba(29, 42, 58, 0.35);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 12px;
  border-color: var(--ink);
}

.text-link--dark {
  border-color: rgba(243, 237, 221, 0.35);
  color: var(--cream);
}

.text-link--dark:hover {
  border-color: var(--cream);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(243, 237, 221, 0.88);
  box-shadow: 0 1px 0 rgba(29, 42, 58, 0.12);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  width: var(--shell);
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  margin-inline: auto;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-name {
  display: inline-flex;
  padding: 7px 15px 6px;
  border: 2px solid var(--ink);
  border-radius: 49% 51% 47% 53% / 56% 48% 52% 44%;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1;
  transform: rotate(-2deg);
}

.brand-spark {
  position: absolute;
  top: -6px;
  right: -9px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  justify-content: center;
}

.site-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding: 154px 0 145px;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.78) 0 3px, transparent 4px),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.6) 0 2px, transparent 3px),
    linear-gradient(145deg, #b6e8f7 0%, var(--sky) 46%, #79cce9 100%);
  background-size: 62px 62px, 83px 83px, auto;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

.hero-copy {
  max-width: 610px;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.65rem, 7vw, 6.9rem);
  font-weight: 950;
  line-height: 0.91;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--paper);
  font-style: normal;
  text-shadow: 2px 2px 0 var(--ink), -1px -1px 0 var(--ink), 1px -1px 0 var(--ink), -1px 1px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.hero h1 em::after {
  position: absolute;
  right: 2%;
  bottom: -13px;
  left: 2%;
  height: 11px;
  border-top: 3px solid var(--ink);
  border-radius: 50%;
  content: "";
  transform: rotate(1deg);
}

.hero-intro {
  max-width: 550px;
  margin-bottom: 31px;
  color: #263b4d;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 750;
}

.hero-facts li {
  display: flex;
  gap: 7px;
  align-items: center;
}

.hero-facts span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  font-size: 0.7rem;
}

.hero-playground {
  position: relative;
  min-height: 565px;
}

.sketch-prompt {
  position: absolute;
  z-index: 3;
  top: 3px;
  left: 2%;
  max-width: 350px;
  margin: 0;
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  transform: rotate(-3deg);
}

.sketch-prompt strong {
  font-weight: 900;
  letter-spacing: 0.06em;
}

.sketch-arrow {
  position: absolute;
  z-index: 3;
  top: 43px;
  left: 14%;
  width: 112px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
  transform: rotate(4deg);
}

.sketch-button {
  position: absolute;
  z-index: 2;
  top: 116px;
  right: 0;
  display: flex;
  width: min(100%, 575px);
  aspect-ratio: 1.9;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 48% 52% 46% 54% / 52% 45% 55% 48%;
  background: var(--yellow);
  box-shadow: 14px 17px 0 rgba(29, 42, 58, 0.18);
  color: var(--ink);
  text-decoration: none;
  transform: rotate(1.5deg);
  transition: transform 280ms cubic-bezier(0.18, 0.89, 0.32, 1.28), box-shadow 280ms ease;
}

.sketch-button::before,
.sketch-button::after {
  position: absolute;
  inset: 8px 5px 5px 8px;
  border: 1.5px solid rgba(29, 42, 58, 0.48);
  border-radius: 52% 48% 54% 46% / 46% 55% 45% 54%;
  content: "";
  pointer-events: none;
}

.sketch-button::after {
  inset: -10px 7px 8px -7px;
  border-color: rgba(29, 42, 58, 0.23);
  transform: rotate(-1deg);
}

.sketch-button:hover {
  box-shadow: 20px 24px 0 rgba(29, 42, 58, 0.18);
  transform: translateY(-8px) rotate(-0.5deg) scale(1.015);
}

.sketch-word {
  display: flex;
  align-items: baseline;
  font-family: var(--display);
  font-size: clamp(4.7rem, 7.6vw, 7.5rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 1;
}

.sketch-word span {
  display: inline-block;
  -webkit-text-stroke: 1px var(--ink);
}

.sketch-word span:nth-child(1) { transform: rotate(-5deg) translateY(4px); }
.sketch-word span:nth-child(2) { transform: rotate(3deg) translateY(-4px); }
.sketch-word span:nth-child(3) { transform: rotate(-2deg) translateY(3px); }
.sketch-word span:nth-child(4) { transform: rotate(4deg) translateY(-3px); }
.sketch-word span:nth-child(5) { transform: rotate(-4deg) translateY(5px); }

.sketch-hint {
  position: absolute;
  right: 21%;
  bottom: 35px;
  padding: 3px 9px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  transform: rotate(-3deg);
}

.hero-drone {
  position: absolute;
  z-index: 3;
  right: -17px;
  bottom: -27px;
  width: 270px;
  filter: drop-shadow(0 18px 12px rgba(29, 42, 58, 0.23));
  transform: rotate(-9deg);
  animation: hover-drone 4s ease-in-out infinite;
}

.hero-drone .rotor ellipse {
  fill: rgba(255, 255, 255, 0.32);
  stroke: var(--ink);
  stroke-width: 2;
}

.hero-drone .rotor circle {
  fill: var(--coral);
  stroke: var(--ink);
  stroke-width: 2;
}

.hero-drone .drone-arm {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 11;
}

.hero-drone .drone-body {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 4;
}

.hero-drone .drone-eye {
  fill: var(--coral);
  stroke: var(--ink);
  stroke-width: 3;
}

.hero-drone .drone-lens {
  fill: var(--ink);
  stroke: var(--paper);
  stroke-width: 3;
}

.flight-sticker {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 128px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(10deg);
}

.hero-cloud {
  position: absolute;
  z-index: 1;
  width: 210px;
  height: 60px;
  border: 2px solid rgba(29, 42, 58, 0.18);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-cloud::before,
.hero-cloud::after {
  position: absolute;
  border: inherit;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.hero-cloud::before { top: -30px; left: 34px; width: 95px; height: 75px; }
.hero-cloud::after { top: -19px; right: 24px; width: 80px; height: 63px; }
.hero-cloud--one { top: 165px; right: -75px; }
.hero-cloud--two { bottom: 180px; left: -110px; transform: scale(0.75); }

.hero-bottom {
  position: absolute;
  z-index: 5;
  right: -5%;
  bottom: -51px;
  left: -5%;
  height: 105px;
  border-radius: 50% 50% 0 0 / 58% 58% 0 0;
  background: var(--cream);
}

@keyframes hover-drone {
  0%, 100% { transform: translateY(0) rotate(-9deg); }
  50% { transform: translateY(-11px) rotate(-7deg); }
}

/* Fleet */
.fleet {
  position: relative;
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2,
.how h2,
.included h2,
.booking h2,
.questions h2 {
  margin-bottom: 0;
  font-size: clamp(2.9rem, 6vw, 5.5rem);
  font-weight: 950;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.fleet-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-inline: auto;
}

.fleet-note {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-align: center;
}

.drone-card {
  display: flex;
  min-width: 0;
  min-height: 900px;
  flex-direction: column;
  padding: 25px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.drone-card:hover {
  box-shadow: 0 25px 0 rgba(29, 42, 58, 0.11);
  transform: translateY(-8px);
}

.drone-card--mini { background: #d8f0f4; }
.drone-card--air { background: var(--yellow); }

.drone-card-top,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-number {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 900;
}

.card-badge {
  padding: 6px 11px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drone-gallery {
  display: grid;
  gap: 9px;
  margin: 18px 0 25px;
}

.drone-gallery__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.drone-photo {
  width: 100%;
  height: 155px;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  background: var(--paper);
  transition: transform 400ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.drone-photo--main {
  height: auto;
  aspect-ratio: 4 / 3;
}

.drone-card:hover .drone-photo--main {
  transform: translateY(-4px) rotate(-0.5deg);
}

.card-kicker {
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drone-card h3 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  font-weight: 950;
}

.card-copy {
  min-height: 78px;
  margin-bottom: 19px;
  color: #334458;
  line-height: 1.55;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin-bottom: 27px;
  list-style: none;
}

.feature-list li {
  padding: 5px 9px;
  border: 1px solid rgba(29, 42, 58, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  font-size: 0.72rem;
  font-weight: 750;
}

.card-footer {
  padding-top: 21px;
  border-top: 1.5px solid rgba(29, 42, 58, 0.3);
  margin-top: auto;
}

.card-footer p {
  display: flex;
  gap: 5px;
  align-items: baseline;
  margin: 0;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.card-footer p span {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0;
}

.round-button {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.round-button:hover {
  background: var(--paper);
  color: var(--ink);
  transform: rotate(-10deg) scale(1.08);
}

/* How it works */
.how {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.how::before {
  position: absolute;
  top: -210px;
  left: -120px;
  width: 490px;
  height: 490px;
  border: 2px solid rgba(243, 237, 221, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(243, 237, 221, 0.025), 0 0 0 100px rgba(243, 237, 221, 0.025);
  content: "";
}

.how-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(75px, 10vw, 150px);
  align-items: center;
}

.how .kicker {
  color: var(--yellow);
}

.how h2 {
  margin-bottom: 26px;
}

.how-intro > p:not(.kicker) {
  max-width: 490px;
  margin-bottom: 31px;
  color: rgba(243, 237, 221, 0.72);
  font-size: 1.04rem;
}

.steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 25px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(243, 237, 221, 0.18);
}

.step:first-child {
  border-top: 1px solid rgba(243, 237, 221, 0.18);
}

.step-number {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid var(--cream);
  border-radius: 48% 52% 44% 56% / 57% 42% 58% 43%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 950;
  transform: rotate(-5deg);
}

.step:nth-child(2) .step-number {
  background: var(--sky);
  transform: rotate(4deg);
}

.step:nth-child(3) .step-number {
  background: var(--coral);
  transform: rotate(-2deg);
}

.step h3 {
  margin: 2px 0 8px;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.step p {
  max-width: 480px;
  margin: 0;
  color: rgba(243, 237, 221, 0.67);
}

/* Included */
.included {
  position: relative;
  overflow: hidden;
  padding: 150px 0 130px;
  background: var(--yellow);
}

.included-track {
  position: absolute;
  top: 22px;
  left: 50%;
  display: flex;
  width: 115%;
  gap: 27px;
  align-items: center;
  justify-content: center;
  color: rgba(29, 42, 58, 0.14);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.3vw, 4.7rem);
  font-weight: 950;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transform: translateX(-50%) rotate(-2deg);
}

.included-track i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: currentColor;
}

.included-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(65px, 10vw, 140px);
  align-items: center;
}

.case-art {
  position: relative;
  width: min(100%, 500px);
  min-height: 390px;
  margin-inline: auto;
}

.case-body {
  position: absolute;
  z-index: 2;
  top: 75px;
  right: 8%;
  left: 8%;
  display: flex;
  height: 265px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--ink);
  border-radius: 34px 38px 48px 30px;
  background: var(--ink);
  box-shadow: inset 0 0 0 7px var(--mint), inset 0 0 0 11px var(--ink);
  transform: rotate(-4deg);
}

.case-body::before,
.case-body::after {
  position: absolute;
  bottom: -14px;
  width: 45px;
  height: 22px;
  border: 4px solid var(--ink);
  border-radius: 0 0 12px 12px;
  background: var(--mint);
  content: "";
}

.case-body::before { left: 48px; }
.case-body::after { right: 48px; }

.case-handle {
  position: absolute;
  z-index: 1;
  top: 33px;
  left: 50%;
  width: 142px;
  height: 80px;
  border: 15px solid var(--ink);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  transform: translateX(-50%) rotate(-4deg);
}

.case-logo {
  padding: 13px 25px 11px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 4.7rem);
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1;
}

.case-label {
  position: absolute;
  right: 23px;
  bottom: 22px;
  color: var(--cream);
  font-family: monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.case-shadow {
  position: absolute;
  right: 3%;
  bottom: 20px;
  left: 3%;
  height: 35px;
  border-radius: 50%;
  background: rgba(29, 42, 58, 0.18);
  filter: blur(3px);
  transform: rotate(-4deg);
}

.included .kicker {
  color: var(--ink);
}

.included h2 {
  margin-bottom: 43px;
}

.check-grid {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  list-style: none;
}

.check-grid li {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 17px 8px 17px 0;
  border-top: 1.5px solid rgba(29, 42, 58, 0.3);
  font-weight: 750;
}

.check-grid li:nth-last-child(-n + 2) {
  border-bottom: 1.5px solid rgba(29, 42, 58, 0.3);
}

.check-grid span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.64rem;
  font-weight: 900;
}

/* Booking */
.booking {
  background:
    radial-gradient(circle at 84% 24%, rgba(142, 213, 238, 0.2) 0 3px, transparent 4px) 0 0 / 42px 42px,
    var(--cream);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(70px, 9vw, 130px);
  align-items: start;
}

.booking h2 {
  margin-bottom: 28px;
}

.booking-copy > p:not(.kicker) {
  max-width: 500px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.booking-note {
  display: grid;
  max-width: 490px;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
  padding-top: 28px;
  border-top: 1.5px solid var(--line);
  margin-top: 35px;
}

.booking-note svg {
  width: 35px;
  fill: var(--yellow);
  stroke: var(--ink);
  stroke-width: 1.7;
}

.booking-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.booking-note strong {
  color: var(--ink);
}

.booking-hold {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 13%, var(--white) 0 31px, transparent 32px),
    radial-gradient(circle at 77% 16%, var(--white) 0 25px, transparent 26px),
    radial-gradient(circle at 94% 19%, var(--white) 0 23px, transparent 24px),
    linear-gradient(150deg, #d9f2fa 0%, var(--sky) 100%);
  box-shadow: var(--shadow);
}

.booking-hold::after {
  position: absolute;
  right: -55px;
  bottom: -82px;
  width: 245px;
  height: 180px;
  border: 2px solid var(--ink);
  border-radius: 52% 48% 46% 54% / 55% 44% 56% 45%;
  background: #71bd68;
  box-shadow: -75px 36px 0 #92d47d;
  content: "";
  transform: rotate(-7deg);
}

.booking-hold > * {
  position: relative;
  z-index: 1;
}

.booking-hold__badge {
  padding: 6px 11px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  margin-bottom: 24px;
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-hold h3 {
  max-width: 390px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.booking-hold > p:not(.booking-hold__privacy) {
  max-width: 430px;
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.booking-hold__privacy {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

/* FAQ */
.questions {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.questions-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(75px, 10vw, 150px);
  align-items: start;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

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

.faq-list summary {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 850;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--body);
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 55px 27px 0;
  margin: 0;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  padding: 85px 0 28px;
  background: var(--ink);
  color: var(--cream);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 70px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 23px;
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-decoration: none;
}

.footer-brand span {
  color: var(--yellow);
}

.footer-top > div > p {
  margin: 0;
  color: rgba(243, 237, 221, 0.64);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  align-content: end;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links span {
  margin-bottom: 8px;
  color: rgba(243, 237, 221, 0.42);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: var(--cream);
  font-weight: 700;
  text-decoration-color: rgba(243, 237, 221, 0.3);
  text-underline-offset: 4px;
}

.footer-links a:hover {
  text-decoration-color: var(--yellow);
}

.footer-bottom {
  display: grid;
  padding-top: 23px;
  border-top: 1px solid rgba(243, 237, 221, 0.16);
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  color: rgba(243, 237, 221, 0.5);
  font-size: 0.73rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  justify-self: end;
  color: var(--cream);
  font-weight: 750;
  text-decoration: none;
}

/* Reveal motion */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.has-js .reveal--later {
  transition-delay: 100ms;
}

.has-js .reveal--latest {
  transition-delay: 200ms;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1080px) {
  .hero {
    padding-top: 135px;
  }

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

  .hero-copy {
    max-width: 730px;
  }

  .hero-playground {
    width: min(100%, 720px);
    min-height: 550px;
    margin: 5px auto 0;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-grid,
  .included-grid,
  .booking-grid {
    gap: 70px;
  }

  .case-art {
    min-height: 340px;
  }

  .case-body {
    height: 230px;
  }
}

/* Mobile navigation and layouts */
@media (max-width: 780px) {
  :root {
    --shell: min(100% - 30px, 620px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .section {
    padding-block: 92px;
  }

  .site-header {
    padding: 12px 0;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .menu-button {
    display: inline-flex;
    grid-column: 3;
    gap: 8px;
    align-items: center;
    justify-self: end;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    font-size: 0.76rem;
    font-weight: 850;
    cursor: pointer;
  }

  .menu-lines {
    display: grid;
    gap: 5px;
  }

  .menu-lines i {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] .menu-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 15px;
    left: 15px;
    display: none;
    padding: 18px;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: var(--paper);
    box-shadow: 0 8px 0 rgba(29, 42, 58, 0.16);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 9px 7px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 118px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 5.8rem);
  }

  .hero-actions {
    align-items: flex-start;
  }

  .hero-playground {
    min-height: 465px;
    margin-top: 20px;
  }

  .sketch-button {
    top: 106px;
  }

  .sketch-word {
    font-size: clamp(3.8rem, 19vw, 7rem);
  }

  .sketch-hint {
    right: 16%;
    bottom: 22px;
  }

  .hero-drone {
    right: -10px;
    bottom: -5px;
    width: 210px;
  }

  .flight-sticker {
    right: 4px;
    bottom: 105px;
    width: 76px;
    height: 76px;
    font-size: 0.61rem;
  }

  .section-heading,
  .how-grid,
  .included-grid,
  .booking-grid,
  .questions-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 45px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .drone-card {
    width: 100%;
    min-height: auto;
    grid-column: auto;
  }

  .drone-photo {
    height: clamp(115px, 34vw, 180px);
  }

  .drone-photo--main {
    height: auto;
  }

  .card-copy {
    min-height: 0;
  }

  .how-grid,
  .booking-grid,
  .questions-grid {
    gap: 58px;
  }

  .included {
    padding: 125px 0 95px;
  }

  .included-grid {
    gap: 45px;
  }

  .case-art {
    min-height: 330px;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .check-grid li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .check-grid li:last-child {
    border-bottom: 1.5px solid rgba(29, 42, 58, 0.3);
  }

  .footer-top {
    gap: 55px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 480px) {
  .section {
    padding-block: 78px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .menu-label {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .eyebrow {
    font-size: 0.67rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .hero-facts {
    display: grid;
  }

  .hero-playground {
    min-height: 380px;
  }

  .sketch-prompt {
    max-width: 245px;
    font-size: 1rem;
  }

  .sketch-arrow {
    top: 40px;
    left: 17%;
    width: 80px;
  }

  .sketch-button {
    top: 95px;
    box-shadow: 9px 12px 0 rgba(29, 42, 58, 0.18);
  }

  .sketch-hint {
    display: none;
  }

  .hero-drone {
    bottom: -13px;
    width: 165px;
  }

  .flight-sticker {
    bottom: 75px;
    width: 65px;
    height: 65px;
    font-size: 0.52rem;
  }

  .section-heading h2,
  .how h2,
  .included h2,
  .booking h2,
  .questions h2 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .drone-card {
    padding: 20px;
    border-radius: 30px;
  }

  .step {
    grid-template-columns: 58px 1fr;
    gap: 17px;
  }

  .step-number {
    width: 52px;
    height: 52px;
  }

  .step h3 {
    font-size: 1.45rem;
  }

  .case-art {
    min-height: 270px;
  }

  .case-body {
    top: 62px;
    right: 3%;
    left: 3%;
    height: 180px;
    box-shadow: inset 0 0 0 5px var(--mint), inset 0 0 0 8px var(--ink);
  }

  .case-handle {
    top: 31px;
    width: 105px;
    height: 55px;
    border-width: 11px;
  }

  .case-logo {
    padding: 10px 17px 8px;
    font-size: 2.25rem;
  }

  .case-label {
    right: 15px;
    bottom: 13px;
    font-size: 0.5rem;
  }

  .booking-hold {
    min-height: 390px;
    padding: 23px 18px;
    border-radius: 28px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom a {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Updated child-drawn hero: a resolution-independent cartoon scene. */
.brand-name {
  gap: 0;
  background: var(--white);
}

.brand-name i {
  font-style: normal;
}

.brand-name i:nth-child(odd) {
  color: #218bc9;
}

.brand-name i:nth-child(even) {
  color: #79b83a;
}

.brand-spark {
  background: #79b83a;
}

.hero {
  min-height: auto;
  padding: 138px 0 102px;
  background: var(--white);
}

.hero-doodle {
  position: relative;
  z-index: 2;
}

.doodle-instruction {
  position: relative;
  z-index: 3;
  width: min(94%, 1040px);
  min-height: 118px;
  margin: 0 auto -20px;
}

.hero h1.sketch-prompt {
  position: relative;
  top: auto;
  left: auto;
  max-width: none;
  margin: 0;
  color: #101820;
  font-family: "Comic Sans MS", "Bradley Hand", "Segoe Print", cursive;
  font-size: clamp(1.75rem, 4.15vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-0.7deg);
}

.hero h1.sketch-prompt strong {
  display: inline-block;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.02em;
  transform: rotate(1.5deg) translateY(2px);
}

.doodle-instruction .sketch-arrow {
  position: absolute;
  z-index: 3;
  top: 39px;
  left: 12%;
  width: clamp(92px, 13vw, 158px);
  fill: none;
  stroke: #101820;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transform: rotate(-2deg);
}

.illustrated-logo {
  position: relative;
  display: block;
  width: min(100%, 1100px);
  margin-inline: auto;
  color: #101820;
  text-decoration: none;
  transform: rotate(0.25deg);
  transition: transform 260ms cubic-bezier(0.18, 0.89, 0.32, 1.2);
}

.illustrated-logo:hover {
  transform: translateY(-7px) rotate(-0.2deg) scale(1.008);
}

.drony-scene {
  width: 100%;
  overflow: visible;
  filter: drop-shadow(0 17px 0 rgba(16, 24, 32, 0.08));
}

.scene-sky {
  fill: #b9e8f6;
}

.scene-cloud {
  fill: #ffffff;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 420ms ease;
}

.scene-cloud--two {
  transform: rotate(-2deg);
}

.scene-cloud--three {
  transform: rotate(3deg);
}

.illustrated-logo:hover .scene-cloud--one {
  transform: translateX(9px);
}

.illustrated-logo:hover .scene-cloud--two {
  transform: translateX(-8px) rotate(-2deg);
}

.illustrated-logo:hover .scene-cloud--three {
  transform: translateX(7px) rotate(3deg);
}

.tree-trunk {
  fill: #855e3f;
  stroke: #17311b;
  stroke-linejoin: round;
  stroke-width: 4;
}

.tree-leaves {
  fill: #6dab3c;
  stroke: #17311b;
  stroke-linejoin: round;
  stroke-width: 4;
}

.tree-leaves--two {
  fill: #83be46;
}

.scene-letter {
  stroke: #101820;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  transform-box: fill-box;
  transform-origin: center bottom;
  transition: transform 280ms cubic-bezier(0.18, 0.89, 0.32, 1.25);
}

.scene-letter--blue {
  fill: #218bc9;
}

.scene-letter--green {
  fill: #8bc63f;
}

.illustrated-logo:hover .letter-d { transform: rotate(-1deg) translateY(-3px); }
.illustrated-logo:hover .letter-r { transform: rotate(1.5deg) translateY(-8px); }
.illustrated-logo:hover .letter-o { transform: rotate(-1deg) translateY(-5px); }
.illustrated-logo:hover .letter-n { transform: rotate(1deg) translateY(-7px); }
.illustrated-logo:hover .letter-y { transform: rotate(-1.5deg) translateY(-4px); }

.scene-oval-outline {
  fill: none;
  stroke: #101820;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.scene-oval-outline--soft {
  stroke-width: 1.4;
  opacity: 0.2;
}

.hero-caption {
  display: flex;
  width: min(92%, 940px);
  align-items: center;
  justify-content: space-between;
  margin: 16px auto 0;
  color: #101820;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-caption p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.hero-caption p span {
  width: 11px;
  height: 11px;
  border: 1.5px solid #101820;
  border-radius: 50%;
  background: #8bc63f;
}

.hero-caption a {
  padding-bottom: 2px;
  border-bottom: 1.5px solid #101820;
  text-decoration: none;
}

.hero-caption a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.hero-caption a:hover span {
  transform: translateY(3px);
}

@media (max-width: 780px) {
  .hero {
    padding: 112px 0 80px;
  }

  .doodle-instruction {
    width: 100%;
    min-height: 112px;
    margin-bottom: -7px;
  }

  .hero h1.sketch-prompt {
    max-width: 640px;
    margin-inline: auto;
    font-size: clamp(1.55rem, 7.8vw, 3rem);
  }

  .doodle-instruction .sketch-arrow {
    top: 61px;
    left: 8%;
    width: clamp(75px, 20vw, 120px);
    transform: rotate(8deg);
  }

  .drony-scene {
    filter: drop-shadow(0 10px 0 rgba(16, 24, 32, 0.08));
  }

  .hero-caption {
    width: 95%;
    margin-top: 8px;
    font-size: 0.66rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 104px;
  }

  .doodle-instruction {
    min-height: 125px;
  }

  .hero h1.sketch-prompt {
    max-width: 330px;
    font-size: clamp(1.45rem, 8vw, 2rem);
    line-height: 1.25;
  }

  .doodle-instruction .sketch-arrow {
    top: 72px;
    left: 4%;
    width: 78px;
  }

  .illustrated-logo {
    width: calc(100% + 16px);
    margin-left: -8px;
  }

  .scene-letter {
    stroke-width: 4;
  }

  .scene-oval-outline {
    stroke-width: 2.5;
  }

  .hero-caption {
    display: grid;
    gap: 13px;
    justify-items: center;
    text-align: center;
  }

  .hero-caption p span {
    display: none;
  }
}
