@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-latin-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "iA Writer Mono";
  src: url("assets/fonts/ia-writer-mono-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Darks unified on the icon's hue (~183deg) — the photo is graded to match. */
  --night: #043335;
  --night-deep: #022628;
  --petrol: #084b4c;
  --petrol-bright: #0f6b68;
  --bone: #f5e4cf;
  --cream: #fff5e8;
  /* Paper desaturated (~14%) with petrol-seeded shadows so the light sections
     stop arguing with the dark ones. */
  --paper: #eeeae3;
  --paper-deep: #e2ded6;
  --ink: #173432;
  --ink-soft: #61716c;
  --coral: #ff6240;
  --coral-hot: #ff795b;
  --violet: #a88bea;
  --teal: #39bcb0;
  --shell: min(1240px, calc(100vw - 48px));
  --ease: cubic-bezier(.22, .72, .18, 1);
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-mono: "iA Writer Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night-deep);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--night);
  background: var(--cream);
  transform: translateY(-160%);
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 30%, rgba(24, 128, 118, .22), transparent 33%),
    linear-gradient(140deg, #06403f 0%, #043335 52%, #032527 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 36, 38, .12), transparent 47%, rgba(2, 32, 34, .22)),
    radial-gradient(ellipse 110% 80% at 50% 115%, rgba(0, 0, 0, .34), transparent 62%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  z-index: 20;
  inset: 0;
  opacity: .08;
  background-image: var(--grain);
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  pointer-events: none;
  transition: opacity .8s ease;
}

.hero[data-storm="on"] .hero-grain {
  opacity: .16;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 64px;
  padding: 10px 11px 10px 13px;
  border: 1px solid rgba(255, 245, 232, .15);
  border-radius: 19px;
  background: rgba(4, 44, 45, .62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(20px) saturate(1.25);
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 670;
  letter-spacing: -.025em;
  text-decoration: none;
}

.brand {
  color: var(--cream);
  font-size: 17px;
}

.brand img,
.footer-brand img {
  border-radius: 9px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
}

.nav-group {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.site-nav {
  display: flex;
  gap: 2px;
}

.site-nav a {
  padding: 9px 13px;
  border-radius: 10px;
  color: rgba(255, 245, 232, .58);
  font-size: 14px;
  font-weight: 520;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
  background: rgba(255, 255, 255, .07);
}

.nav-download {
  padding: 11px 17px;
  border-radius: 11px;
  color: var(--night-deep);
  background: var(--cream);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding-top: 88px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(660px, 50vw);
  padding: 70px 0 100px;
  animation: copy-in .8s var(--ease) .12s both;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 245, 232, .52);
}

.eyebrow span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 98, 64, .1);
}

.hero h1 {
  max-width: 640px;
  margin: 26px 0 0;
  color: #fff8ec;
  font-family: var(--font-display);
  font-size: clamp(54px, 5.6vw, 88px);
  font-weight: 500;
  letter-spacing: -.022em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--bone);
  font-style: italic;
  font-weight: 500;
}

.hero-lede {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 245, 232, .68);
  font-size: clamp(17px, 1.45vw, 19px);
  letter-spacing: -.012em;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 680;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease;
}

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

.button-primary {
  color: var(--night-deep);
  background: var(--cream);
  box-shadow: 0 15px 36px rgba(0, 0, 0, .22), 0 0 0 1px rgba(255, 255, 255, .28) inset;
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.button-secondary {
  color: rgba(255, 245, 232, .72);
  border-color: rgba(255, 245, 232, .18);
  background: rgba(2, 34, 36, .24);
  backdrop-filter: blur(12px);
}

.apple-mark {
  position: relative;
  top: -1px;
  color: currentColor;
  font-size: 16px;
}

.hero-meta {
  margin: 17px 0 0;
  color: rgba(255, 245, 232, .38);
  font-size: 12px;
  font-weight: 550;
  letter-spacing: .015em;
}

.hero-meta span {
  margin-inline: 5px;
  color: rgba(255, 98, 64, .65);
}

.mill-stage {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  min-height: 100%;
  overflow: hidden;
  cursor: crosshair;
  transform: translateX(-50%);
}

.mill-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 34, 36, .93) 0%, rgba(2, 37, 39, .8) 29%, rgba(2, 40, 42, .3) 48%, transparent 67%),
    linear-gradient(0deg, rgba(1, 26, 28, .32), transparent 28%, transparent 78%, rgba(1, 30, 32, .12));
  pointer-events: none;
}

.windmill-plane {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: max(100vw, calc(100svh * 1.7768));
  aspect-ratio: 1672 / 941;
  transform: translate(-50%, -50%) scale(1.015);
  transform-origin: center;
}

.windmill-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.rotor-shadow {
  position: absolute;
  z-index: 2;
  top: 45.1%;
  left: 66.65%;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(1, 14, 16, .72), rgba(1, 20, 22, .3) 34%, transparent 68%);
  filter: blur(8px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.windmill-rotor-plane {
  position: absolute;
  top: 44.55%;
  left: 66.15%;
  width: 34.5%;
  aspect-ratio: 1;
  pointer-events: none;
}

.windmill-rotor-plane {
  z-index: 3;
  transform:
    translate(-50%, -50%)
    perspective(1400px)
    rotateY(-21deg)
    rotateX(2deg);
  transform-origin: center;
  transform-style: preserve-3d;
}

.windmill-rotor {
  position: absolute;
  inset: 0;
  transform: rotate(var(--rotor-angle, -.055rad));
  transform-origin: center;
  will-change: transform;
  pointer-events: none;
  animation: rotor-in .9s var(--ease) .15s both;
}

.rotor-stock {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 97.5%;
  height: 4.15%;
  border: 1px solid rgba(12, 10, 9, .82);
  background:
    linear-gradient(180deg, rgba(198, 137, 93, .08), transparent 22%, rgba(0, 0, 0, .22) 76%),
    repeating-linear-gradient(88deg, rgba(92, 59, 40, .42) 0 1px, rgba(28, 24, 22, .2) 1px 4px),
    #2d2926;
  box-shadow:
    inset 0 1px rgba(209, 155, 112, .12),
    inset 0 -2px 2px rgba(0, 0, 0, .4),
    0 3px 5px rgba(1, 14, 16, .4);
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.rotor-stock::before,
.rotor-stock::after {
  content: "";
  position: absolute;
  top: -13%;
  bottom: -13%;
  width: 2.15%;
  border: 1px solid rgba(30, 18, 16, .85);
  background: linear-gradient(90deg, #3a211d, #7d4839 46%, #2a1716);
  box-shadow: inset 0 0 0 1px rgba(218, 135, 97, .12);
}

.rotor-stock::before {
  left: 31.5%;
}

.rotor-stock::after {
  right: 31.5%;
}

.rotor-stock-vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

.rotor-arm {
  position: absolute;
  z-index: 1;
  inset: 0;
  transform: rotate(var(--blade-angle));
  transform-origin: 50% 50%;
}

.rotor-arm-a {
  --blade-angle: 0deg;
}

.rotor-arm-b {
  --blade-angle: 90deg;
}

.rotor-arm-c {
  --blade-angle: 180deg;
}

.rotor-arm-d {
  --blade-angle: 270deg;
}

.rotor-arm picture {
  display: contents;
}

.rotor-arm img {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: auto;
  height: 49.35%;
  max-width: none;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  user-select: none;
  pointer-events: none;
  filter:
    brightness(.82)
    saturate(.7)
    contrast(1.12)
    drop-shadow(0 3px 2px rgba(1, 14, 16, .55))
    drop-shadow(0 13px 18px rgba(1, 20, 22, .4));
}

.rotor-arm-b img {
  filter:
    brightness(.78)
    saturate(.66)
    contrast(1.14)
    drop-shadow(0 3px 2px rgba(1, 14, 16, .55))
    drop-shadow(0 13px 18px rgba(1, 20, 22, .4));
}

.rotor-arm-c img {
  filter:
    brightness(.86)
    saturate(.7)
    contrast(1.1)
    drop-shadow(0 3px 2px rgba(1, 14, 16, .55))
    drop-shadow(0 13px 18px rgba(1, 20, 22, .4));
}

.rotor-arm-d img {
  filter:
    brightness(.8)
    saturate(.62)
    contrast(1.13)
    drop-shadow(0 3px 2px rgba(1, 14, 16, .55))
    drop-shadow(0 13px 18px rgba(1, 20, 22, .4));
}

.rotor-hub {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 8.4%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.rotor-hub picture {
  display: contents;
}

.rotor-hub img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  filter:
    brightness(.74)
    saturate(.68)
    contrast(1.12)
    drop-shadow(0 2px 2px rgba(1, 14, 16, .6))
    drop-shadow(0 6px 8px rgba(1, 14, 16, .35));
  user-select: none;
}

.wind-gust-layer {
  position: absolute;
  z-index: 6;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.wind-gust {
  position: absolute;
  left: var(--gust-x);
  top: var(--gust-y);
  width: var(--gust-length);
  height: 50px;
  opacity: 0;
  transform: translateY(-50%) rotate(var(--gust-angle));
  transform-origin: left center;
  animation: gust-flight .8s var(--ease) forwards;
}

.wind-gust i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(211, 239, 237, .75) 32%, rgba(255, 245, 232, .25) 82%, transparent);
  box-shadow: 0 0 8px rgba(149, 218, 214, .25);
  transform-origin: right center;
  animation: gust-line .8s var(--ease) forwards;
}

.wind-gust i:nth-child(1) {
  top: 12px;
}

.wind-gust i:nth-child(2) {
  top: 25px;
  width: 84%;
  animation-delay: .04s;
}

.wind-gust i:nth-child(3) {
  top: 38px;
  width: 64%;
  animation-delay: .08s;
}

.hero[data-storm="on"] .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-cue {
  position: absolute;
  z-index: 22;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 245, 232, .34);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 245, 232, .18);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform: translateX(-100%);
  animation: cue-line 2.5s ease-in-out infinite;
}

.workflow-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 138px 0 150px;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 98, 64, .06), transparent 28%),
    var(--paper);
}

.workflow-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(2, 38, 40, .28), transparent);
  pointer-events: none;
}

.workflow-section::after,
.closing-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .05;
  background-image: var(--grain);
  background-size: 180px 180px;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.workflow-section .shell,
.closing-copy {
  position: relative;
  z-index: 2;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 46px 80px;
  align-items: end;
}

.section-kicker {
  color: var(--petrol-bright);
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
}

.section-heading h2,
.local-section h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.6vw, 66px);
  font-weight: 500;
  letter-spacing: -.018em;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 500px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.58;
}

.workflow-track {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 86px;
}

.workflow-step {
  position: relative;
  min-height: 436px;
  padding: 20px;
  border: 1px solid rgba(23, 52, 50, .1);
  border-radius: 25px;
  background: rgba(252, 250, 246, .72);
  box-shadow: 0 24px 70px -55px rgba(10, 52, 49, .52);
}

.step-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--petrol-bright);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .13em;
}

.step-topline span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(7, 75, 73, .14);
  border-radius: 50%;
}

.step-topline small {
  font: inherit;
}

.workflow-step h3 {
  margin: 28px 4px 0;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -.035em;
}

.workflow-step > p {
  margin: 11px 4px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.media-ticket,
.mini-recipe,
.mini-files {
  height: 214px;
  margin-top: 24px;
  border: 1px solid rgba(23, 52, 50, .09);
  border-radius: 18px;
  background: #e8e3da;
  box-shadow: 0 16px 30px -26px rgba(23, 52, 50, .48);
}

.media-ticket {
  padding: 13px;
}

.ticket-preview {
  position: relative;
  display: grid;
  height: 126px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(155deg, rgba(255, 98, 64, .6), transparent 46%),
    radial-gradient(circle at 70% 30%, #6f9c90, transparent 30%),
    #16403f;
}

.ticket-preview::before,
.ticket-preview::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 245, 232, .15);
  transform: rotate(-18deg);
}

.ticket-preview::after {
  width: 116px;
  transform: rotate(24deg);
}

.ticket-play {
  position: relative;
  z-index: 2;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--cream);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .25));
}

.ticket-time {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 3px 5px;
  border-radius: 5px;
  color: var(--cream);
  background: rgba(2, 30, 31, .72);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
}

.media-ticket > div:last-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 11px 2px 0;
}

.media-ticket strong {
  font-size: 13px;
  letter-spacing: -.02em;
  line-height: 1.12;
}

.media-ticket small {
  color: var(--ink-soft);
  font-size: 9px;
}

.mini-recipe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 15px 17px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .35), transparent),
    #e1dcd2;
}

.mini-recipe > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(23, 52, 50, .08);
  border-radius: 12px;
  background: rgba(255, 252, 247, .76);
  color: var(--ink);
  font-size: 12px;
  font-weight: 620;
  box-shadow: 0 8px 20px -18px rgba(23, 52, 50, .5);
}

.mini-recipe i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mini-recipe i.teal {
  background: var(--teal);
}

.mini-recipe i.purple {
  background: var(--violet);
}

.mini-recipe i.coral {
  background: var(--coral);
}

.mini-recipe b {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-soft);
  background: rgba(23, 52, 50, .05);
  font-size: 8px;
}

.mini-prompt {
  margin: 3px 0 0;
  padding: 6px 9px;
  border-left: 2px solid var(--violet);
  border-radius: 0 8px 8px 0;
  color: var(--ink-soft);
  background: rgba(255, 252, 247, .55);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.45;
}

.mini-files {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 17px;
  background: #e1dcd2;
}

.mini-file {
  display: flex;
  min-height: 51px;
  align-items: center;
  gap: 11px;
  padding: 0 12px;
  border: 1px solid rgba(23, 52, 50, .08);
  border-radius: 11px;
  background: rgba(255, 252, 247, .8);
  font-family: var(--font-mono);
  font-size: 11.5px;
}

.mini-file b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: var(--petrol);
  background: rgba(57, 188, 176, .13);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
}

.track-connector {
  display: flex;
  align-items: center;
}

.track-connector span {
  height: 1px;
  flex: 1;
  background: rgba(23, 52, 50, .14);
}

.track-connector i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 98, 64, .08);
}

.local-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 144px 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 86% 22%, rgba(57, 188, 176, .12), transparent 26%),
    linear-gradient(145deg, #05403f, #032a2b 70%);
}

.local-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(238, 234, 227, .16), transparent);
  pointer-events: none;
}

.local-section::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .09;
  background-image: var(--grain);
  pointer-events: none;
}

.local-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 90px;
}

.section-kicker.light {
  margin-bottom: 23px;
  color: var(--teal);
}

.local-section h2 {
  color: #fff7eb;
  font-size: clamp(50px, 5.4vw, 78px);
}

.local-copy {
  position: relative;
  z-index: 3;
}

.local-copy > p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 245, 232, .68);
  font-size: 18px;
  line-height: 1.62;
}

.local-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.local-copy li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 245, 232, .12);
  border-radius: 99px;
  color: rgba(255, 245, 232, .65);
  background: rgba(255, 255, 255, .035);
  font-size: 11px;
  font-weight: 620;
}

.local-copy li span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.millstone {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -6vw;
  width: min(44vw, 640px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: .14;
  pointer-events: none;
}

.millstone svg {
  width: 100%;
  height: 100%;
}

.closing-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 24px 142px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 98, 64, .07), transparent 30%),
    var(--paper);
}

.closing-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(3, 42, 43, .24), transparent);
  pointer-events: none;
}

.closing-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.closing-copy img {
  margin-bottom: 28px;
  border-radius: 19px;
  box-shadow: 0 18px 38px rgba(23, 52, 50, .18);
}

.closing-cta h2 {
  margin-top: 22px;
  font-size: clamp(48px, 6vw, 86px);
}

.closing-cta h2 em {
  font-style: italic;
  color: var(--petrol);
}

.closing-cta p:not(.section-kicker) {
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.button-dark {
  margin-top: 31px;
  color: var(--cream);
  background: var(--night);
  box-shadow: 0 16px 34px rgba(23, 52, 50, .2);
}

.closing-copy > small {
  margin-top: 15px;
  color: rgba(23, 52, 50, .48);
  font-size: 11px;
}

.closing-sails {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(700px, 72vw);
  aspect-ratio: 1;
  opacity: .055;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-sails svg {
  width: 100%;
  height: 100%;
}

.site-footer {
  padding: 27px 0;
  color: rgba(255, 245, 232, .46);
  background: #032527;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-brand {
  color: rgba(255, 245, 232, .78);
  font-size: 14px;
}

.footer-inner > p {
  margin: 0;
  font-size: 11px;
}

.footer-inner > p a {
  color: var(--teal);
  text-decoration: none;
}

.footer-inner nav {
  display: flex;
  justify-self: end;
  gap: 21px;
}

.footer-inner nav a {
  font-size: 12px;
  text-decoration: none;
}

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

@keyframes copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rotor-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gust-flight {
  0%, 100% { opacity: 0; }
  16%, 68% { opacity: .9; }
}

@keyframes gust-line {
  0% { opacity: 0; transform: translateX(-14px) scaleX(.06); }
  18% { opacity: 1; }
  72% { opacity: .8; transform: translateX(0) scaleX(1); }
  100% { opacity: 0; transform: translateX(18px) scaleX(.18); }
}

@keyframes cue-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@media (max-width: 1120px) {
  .hero-copy {
    width: min(610px, 54vw);
  }

  .workflow-track {
    grid-template-columns: 1fr 32px 1fr 32px 1fr;
    gap: 8px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(720px, calc(100vw - 34px));
  }

  .hero-layout {
    min-height: 1010px;
    padding-top: 108px;
  }

  .hero-copy {
    width: min(620px, 100%);
    padding: 72px 0 470px;
  }

  .hero h1 {
    font-size: clamp(54px, 10.5vw, 84px);
  }

  .mill-stage {
    min-height: 100%;
  }

  .mill-stage::after {
    background:
      linear-gradient(180deg, rgba(2, 36, 37, .95) 0%, rgba(2, 37, 38, .8) 40%, rgba(2, 37, 38, .05) 66%),
      linear-gradient(90deg, rgba(2, 36, 37, .62), transparent 78%);
  }

  .windmill-plane {
    top: 72%;
    left: 55%;
    width: 1040px;
  }

    .scroll-cue {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 22px;
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

  .workflow-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .workflow-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    gap: 0 24px;
  }

  .step-topline {
    grid-column: 1 / -1;
  }

  .media-ticket,
  .mini-recipe,
  .mini-files {
    grid-row: span 3;
    height: 220px;
  }

  .workflow-step h3 {
    align-self: end;
    margin-top: auto;
  }

  .track-connector {
    width: 1px;
    height: 38px;
    flex-direction: column;
    justify-self: center;
  }

  .track-connector span {
    width: 1px;
    height: auto;
  }

  .local-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .millstone {
    right: -22vw;
    width: 72vw;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .site-header {
    top: 12px;
    min-height: 57px;
    border-radius: 16px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 33px;
    height: 33px;
  }

  .nav-download {
    padding: 10px 14px;
  }

  .hero-layout {
    min-height: 960px;
  }

  .hero-copy {
    padding: 50px 0 400px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(42px, 12.5vw, 60px);
    line-height: 1.04;
  }

  .hero-lede {
    max-width: 38ch;
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .hero-meta {
    line-height: 1.7;
  }

  .mill-stage {
    min-height: 100%;
  }

  .windmill-plane {
    top: 74%;
    left: 47%;
    width: 860px;
  }

    .workflow-section {
    padding: 100px 0 110px;
  }

  .section-heading h2,
  .local-section h2 {
    font-size: clamp(34px, 9.4vw, 44px);
  }

  .workflow-track {
    margin-top: 54px;
  }

  .workflow-step {
    display: block;
    padding: 17px;
  }

  .workflow-step h3 {
    margin-top: 25px;
  }

  .media-ticket,
  .mini-recipe,
  .mini-files {
    height: 210px;
  }

  .local-section {
    padding: 104px 0;
  }

  .local-copy > p {
    font-size: 16px;
  }

  .closing-cta {
    padding: 110px 14px;
  }

  .closing-cta h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 22px;
  }

  .footer-inner > p {
    display: none;
  }

  .footer-inner nav {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
