@font-face {
  font-family: Manrope;
  src: url('../assets/fonts/manrope-regular.ttf') format('truetype');
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('../assets/fonts/manrope-bold.ttf') format('truetype');
  font-weight: 650 900;
  font-display: swap;
}

:root {
  --ink: #0b3265;
  --green: #087fca;
  --muted: #72879e;
  --paper: #fbfcfe;
  --line: #dce5ef;
  --ease: cubic-bezier(.2,.7,.2,1);
  --page-pad: clamp(24px,5.7vw,96px);
  font-family: Manrope,Arial,sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

button, a, input {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
}

button:focus-visible, a:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid #0787d0;
  outline-offset: 5px;
}

button {
  border: 0;
}

h1, h2, h3, p {
  margin: 0;
}

::selection {
  background: #c4e5fa;
  color: #082e65;
}

.section-wrap {
  max-width: 1440px;
  padding-inline: var(--page-pad);
  margin-inline: auto;
}

.text-muted {
  color: var(--muted);
}

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.7;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -60px;
  background: var(--ink);
  color: white;
  padding: 15px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 18px 24px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  transition: transform .3s var(--ease),background .3s,box-shadow .3s;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #16243314;
}

.button>span:last-child {
  font-size: 19px;
  line-height: 1;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: #0a5295;
}

.button-glass {
  background: #ffffff65;
  border: 1px solid #ffffff95;
  backdrop-filter: blur(8px);
}

.button-small {
  padding: 14px 19px;
  gap: 21px;
  font-size: 11px;
}

.button-white {
  background: #fff;
  color: #0c3870;
}

.button-light {
  background: #ebeef2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid #6d88a350;
  padding-bottom: 9px;
}

.text-link span {
  font-size: 20px;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #0b8bd2;
  border-radius: 100%;
  box-shadow: 0 0 0 4px #2c5d8e0d;
  flex-shrink: 0;
}

.header {
  position: absolute;
  inset: 0 0 auto;
  height: 100px;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  gap: 32px;
  transition: background .4s,box-shadow .4s;
}

.header.scrolled {
  position: fixed;
  height: 78px;
  background: #fbfcfeed;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 #182b3f12;
  animation: header-in .35s var(--ease);
}

.brand {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.brand>span:last-child {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
}

.brand small {
  display: block;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 4.1px;
  margin-top: 7px;
  padding-left: 2px;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 48px;
  overflow: hidden;
  position: relative;
}

.brand-mark img {
  position: absolute;
  max-width: none;
  width: 63px;
  height: 63px;
  top: -8px;
  left: -10px;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: 45px;
}

.desktop-nav a {
  font-size: 11px;
  font-weight: 600;
  position: relative;
  padding-block: 10px;
}

.desktop-nav a:after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--green);
  transition: right .3s;
}

.desktop-nav a:hover:after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 29px;
}

.language {
  font-size: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform .3s;
}

.mobile-nav {
  display: none;
}

.hero {
  height: min(100svh,1050px);
  min-height: 780px;
  position: relative;
  overflow: hidden;
  background: #d6e4f2;
  isolation: isolate;
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.landscape-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.landscape {
  position: absolute;
  inset: 9% -2% -6%;
  background: url('../assets/landscape-blue.webp') center bottom/cover no-repeat;
  transform: translate3d(calc(var(--parallax-x) * -.55),calc(var(--parallax-y) * .5),0) scale(1.015);
  will-change: transform;
}

.sky-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,#e5ecf4 0%,#e2eff5f5 12%,#dce8f4d9 30%,#dfedf56b 47%,#e5ebf100 66%);
}

.landscape-shade {
  position: absolute;
  inset: 64% 0 0;
  background: linear-gradient(transparent,#0925442b 65%,#09254482);
}

.cloud {
  position: absolute;
  object-fit: contain;
  max-width: none;
  opacity: .8;
  will-change: transform;
  animation: cloud-drift 70s ease-in-out infinite alternate;
}

.cloud-one {
  width: 540px;
  height: auto;
  left: -200px;
  top: 195px;
  filter: blur(1px);
  opacity: .7;
}

.cloud-two {
  width: 590px;
  height: auto;
  right: -240px;
  top: 270px;
  animation-delay: -30s;
  animation-duration: 85s;
  opacity: .82;
}

.hero-content {
  text-align: center;
  position: relative;
  padding-top: 144px;
  z-index: 3;
  animation: rise-in 1.3s var(--ease) both;
}

.hero h1 {
  font-size: clamp(64px,6.9vw,106px);
  line-height: 1.07;
  letter-spacing: -5.3px;
  font-weight: 650;
}

.hero h1>span {
  display: block;
}

.hero h1 em {
  font-family: Georgia,'Times New Roman',serif;
  font-weight: 400;
  color: #087fca;
  letter-spacing: -4.5px;
}

.hero-content>p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 23px;
  color: #3f5265;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.hero-buttons .button {
  font-size: 11px;
  padding: 16px 20px;
}

.play-icon {
  font-size: 19px;
  line-height: 1;
}

.platform-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  color: #50677f;
  margin-top: 15px;
}

.platform-note svg {
  width: 10px;
  height: 13px;
  fill: currentColor;
}

.platform-note>span {
  padding-inline: 1px;
}

.turbine {
  position: absolute;
  transform: translate3d(var(--parallax-x),var(--parallax-y),0);
  will-change: transform;
}

.turbine svg {
  height: 100%;
  width: 100%;
  overflow: visible;
  filter: drop-shadow(3px 3px 3px #22344725);
}

.rotor {
  animation: rotate var(--rotor-duration,18s) linear var(--rotor-delay,0s) infinite;
  transform-origin: 0 0;
}

.turbine-left {
  height: 335px;
  width: 192px;
  left: 10%;
  bottom: 120px;
}

.turbine-right {
  height: 430px;
  width: 246px;
  right: 8%;
  bottom: 70px;
}

.turbine-far-one {
  height: 158px;
  width: 90px;
  left: 30%;
  bottom: 155px;
  opacity: .88;
}

.turbine-far-two {
  height: 135px;
  width: 78px;
  left: 53%;
  bottom: 187px;
  opacity: .8;
}

.turbine-far-three {
  height: 190px;
  width: 109px;
  right: 26%;
  bottom: 147px;
  opacity: .9;
}

.wind-trails {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 1.2;
  opacity: .24;
}

.wind-trails path {
  stroke-dasharray: 170 1500;
  animation: wind-travel 10s linear infinite;
}

.wind-trails path:nth-child(2) {
  animation-delay: .35s;
  opacity: .5;
}

.wind-trails path:nth-child(3) {
  animation-delay: .7s;
  opacity: .2;
}

.wind-trails path:nth-child(4) {
  animation-delay: -4s;
  stroke-dasharray: 160 1800;
}

.scene-data {
  position: absolute;
  z-index: 5;
  background: #ffffffda;
  border: 1px solid #fff9;
  backdrop-filter: blur(15px);
  border-radius: 10px;
  box-shadow: 0 9px 32px #0e213511;
  animation: float 6s ease-in-out infinite;
}

.scene-data-left {
  left: 22%;
  bottom: 142px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
}

.scene-data-left>div>span {
  display: block;
  font-size: 8px;
  color: #516982;
}

.scene-data-left strong {
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -1px;
}

.scene-data-left strong small {
  font-size: 10px;
  letter-spacing: 0;
  font-weight: 400;
}

.data-icon {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  background: #e3e8ee;
  color: var(--green);
}

.data-icon svg {
  width: 18px;
  height: 18px;
}

.mini-wind-chart {
  width: 48px;
  height: 27px;
  margin-left: 5px;
  stroke: #43678c;
  stroke-width: 1.4;
  fill: none;
}

.scene-data-right {
  right: 13%;
  bottom: 130px;
  padding: 17px 19px;
  width: 209px;
  animation-delay: -2s;
}

.scene-data-right>.status-dot {
  position: absolute;
  right: 17px;
  top: 20px;
}

.scene-data-right>span:nth-child(2) {
  font-size: 9px;
  display: block;
  color: #556f89;
}

.scene-data-right strong {
  font-size: 11px;
  font-weight: 650;
  display: block;
  margin-top: 9px;
}

.scene-data-right .data-meta {
  font-size: 8px;
  border-top: 1px solid #28394b15;
  padding-top: 11px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  color: #627f9c;
}

.hero-bottom {
  position: absolute;
  bottom: 37px;
  left: var(--page-pad);
  right: var(--page-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.scroll-line {
  height: 29px;
  width: 16px;
  border: 1px solid #ffffff80;
  border-radius: 20px;
  position: relative;
}

.scroll-line:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  width: 2px;
  height: 7px;
  background: white;
  border-radius: 3px;
  animation: scroll-drop 2s infinite;
}

.scene-caption {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2px;
}

.motion-toggle {
  border: 1px solid #ffffff70;
  border-radius: 100%;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  background: #ffffff0b;
  color: white;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.hero-demo-note {
  position: absolute;
  bottom: 14px;
  left: var(--page-pad);
  font-size: 7px;
  color: #ffffff9c;
}

.intro {
  padding-top: 103px;
  padding-bottom: 82px;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 8px;
  letter-spacing: 1.5px;
  font-weight: 650;
  color: #4f667e;
  margin-bottom: 42px;
}

.small-wind {
  width: 16px;
  height: 16px;
}

.small-wind svg {
  width: 100%;
  height: 100%;
}

.index-number {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 1px;
  color: #8a958c;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}

h2 {
  font-size: clamp(32px,3.6vw,53px);
  font-weight: 500;
  letter-spacing: -2.5px;
  line-height: 1.17;
}

.intro-copy {
  padding-top: 2px;
  max-width: 425px;
}

.intro-copy>p:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 13px;
}

.intro-copy p {
  font-size: 12px;
  line-height: 1.9;
  color: #5c7894;
}

.intro-copy .text-link {
  margin-top: 22px;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  padding-top: 31px;
  gap: 30px;
}

.benefit-row>div {
  position: relative;
  padding-left: 33px;
}

.benefit-row>div>span {
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  color: #3d5771;
}

.benefit-row strong {
  font-size: 12px;
  font-weight: 650;
}

.benefit-row p {
  font-size: 10px;
  color: #7b887d;
  margin-top: 8px;
}

.map-section {
  padding-top: 30px;
  padding-bottom: 99px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 38px;
}

.section-heading>p {
  font-size: 12px;
  line-height: 1.9;
  color: #758275;
  width: 330px;
  flex-shrink: 0;
  padding-bottom: 5px;
}

.map-shell {
  border-radius: 20px;
  overflow: hidden;
}

.map-footnote {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  margin-top: 20px;
  color: #7b887c;
}

.map-footnote>span {
  display: flex;
  gap: 9px;
  align-items: center;
}

.map-footnote>span:last-child>span {
  font-size: 15px;
}

.map-footnote .status-dot {
  height: 5px;
  width: 5px;
}

.features-section {
  background: #edf4fa;
  padding: 83px 0 94px;
}

.features-section .text-muted {
  color: #758ea8;
}

.feature-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 67px;
  align-items: stretch;
  margin-top: 50px;
}

.feature-tabs {
  display: flex;
  flex-direction: column;
}

.feature-tab {
  background: transparent;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid #c1ccd8;
  position: relative;
}

.feature-tab:first-child {
  border-top: 1px solid #c1ccd8;
}

.feature-number {
  font-size: 9px;
  color: #6985a1;
}

.feature-tab strong {
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}

.feature-tab small {
  display: block;
  font-size: 10px;
  color: #65819e;
  margin-top: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: .3s;
}

.feature-tab.active small {
  max-height: 30px;
  opacity: 1;
}

.feature-tab.active strong {
  color: #1f4770;
  font-weight: 650;
}

.feature-tab.active:after {
  content: '';
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background: #2b5177;
}

.feature-arrow {
  margin-left: auto;
  color: #5b7691;
  font-size: 19px;
  transition: transform .3s;
}

.feature-tab:hover .feature-arrow {
  transform: translate(3px,-3px);
}

.feature-panel {
  background: #f9fbfd;
  border: 1px solid #fff9;
  border-radius: 13px;
  padding: 28px;
  box-shadow: 0 18px 45px #182a3d10;
  min-height: 394px;
  align-self: center;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #57708a;
  gap: 15px;
}

.demo-badge {
  font-size: 7px;
  letter-spacing: .5px;
  border: 1px solid #d9e0e7;
  border-radius: 4px;
  padding: 4px 7px;
  color: #6a86a2;
  white-space: nowrap;
}

.panel-metric {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 26px;
  gap: 12px;
}

.panel-metric strong {
  font-size: 38px;
  letter-spacing: -1.8px;
  font-weight: 600;
}

.panel-metric strong small {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #7891aa;
}

.panel-metric p {
  font-size: 9px;
  color: #66829f;
  margin-top: 5px;
}

.period-buttons {
  display: flex;
  background: #e9eef3;
  padding: 3px;
  border-radius: 6px;
  gap: 2px;
}

.period-buttons button {
  font-size: 8px;
  background: transparent;
  padding: 6px 8px;
  border-radius: 4px;
}

.period-buttons button.active {
  background: white;
  box-shadow: 0 2px 5px #123b6d10;
}

.production-chart {
  height: 159px;
  width: 100%;
  margin-top: 22px;
}

.chart-grid {
  stroke: #e0e6ec;
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

.chart-area {
  fill: url(#chart-fill);
}

.chart-line {
  fill: none;
  stroke: #087fc5;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #7f97af;
  margin: 3px 4px 0 24px;
}

.panel-caption {
  border-top: 1px solid #dfe6ed;
  margin-top: 25px;
  padding-top: 15px;
  color: #617e9b;
  font-size: 10px;
  line-height: 1.7;
}

.fleet-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  border-bottom: 1px solid #e7ecf0;
  padding: 16px 0;
  gap: 15px;
}

.fleet-row>span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.fleet-row small {
  color: #718ba6;
  font-size: 9px;
}

.status-pill {
  display: inline-flex;
  padding: 4px 8px;
  background: #e0f0fa;
  color: #176eab;
  border-radius: 4px;
  font-size: 8px;
  white-space: nowrap;
}

.status-pill.amber {
  background: #fff0d7;
  color: #927238;
}

.status-pill.gray {
  background: #e5eaef;
  color: #64819e;
}

.sensor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.sensor-grid>div {
  background: #ecf0f4;
  border-radius: 8px;
  padding: 20px 17px;
}

.sensor-grid span {
  display: block;
  font-size: 9px;
  color: #65829f;
}

.sensor-grid strong {
  display: block;
  font-size: 26px;
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: -1px;
}

.sensor-grid small {
  font-size: 10px;
  color: #6e89a5;
}

.history-item {
  margin-top: 24px;
  padding-left: 20px;
  border-left: 1px solid #cfd8e1;
  position: relative;
}

.history-item:before {
  content: '';
  position: absolute;
  left: -4px;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #b39966;
}

.history-item strong {
  font-size: 11px;
  font-weight: 600;
}

.history-item p {
  font-size: 9px;
  color: #6b87a3;
  margin-top: 7px;
}

.freshness-bar {
  display: flex;
  gap: 4px;
  margin-top: 33px;
  height: 53px;
  align-items: end;
}

.freshness-bar span {
  flex: 1;
  background: #86bfdf;
  height: 35px;
  border-radius: 3px;
}

.freshness-bar span.missing {
  height: 9px;
  background: #dcc9a2;
}

.freshness-legend {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  font-size: 9px;
  color: #708ba6;
}

.freshness-legend span:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #86bfdf;
  margin-right: 5px;
  border-radius: 2px;
}

.freshness-legend span:last-child:before {
  background: #dcc9a2;
}

.mobile-section {
  padding-top: 91px;
  padding-bottom: 75px;
}

.mobile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.mobile-copy {
  max-width: 480px;
}

.mobile-copy>.eyebrow {
  color: #5e7a96;
}

.mobile-copy h2 {
  font-size: 54px;
  margin-top: 19px;
  line-height: 1.16;
}

.serif-word {
  font-family: Georgia,serif;
  font-style: italic;
  color: #365b81;
  font-weight: 400;
}

.mobile-copy>p {
  font-size: 12px;
  color: #627f9d;
  line-height: 1.9;
  max-width: 360px;
  margin-top: 25px;
}

.mobile-checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 31px;
}

.mobile-checks li {
  font-size: 10px;
  color: #526a83;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-checks li>span {
  font-size: 10px;
  color: #4b637b;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  background: #e2e8ef;
  border-radius: 100%;
}

.store-buttons {
  display: flex;
  gap: 10px;
}

.store-button {
  border: 1px solid #ced8e1;
  background: transparent;
  border-radius: 7px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 16px;
  text-align: left;
  transition: background .3s,transform .3s;
}

.store-button:hover {
  background: #e3eaf0;
  transform: translateY(-2px);
}

.store-button>span:last-child {
  font-size: 13px;
  font-weight: 700;
}

.store-button small {
  font-size: 8px;
  display: block;
  font-weight: 400;
  margin-bottom: 4px;
}

.store-button>span:last-child>span {
  margin-left: 12px;
  font-size: 15px;
}

.store-symbol {
  font-size: 21px;
}

.play-store {
  font-size: 29px;
  line-height: 1;
}

.store-note {
  display: block;
  font-size: 8px;
  color: #6f8aa5;
  margin-top: 12px;
}

.phone-stage {
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.phone-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #dfe5eb;
  padding-top: 10px;
  gap: 6px;
  position: absolute;
  bottom: 23px;
  left: 12px;
  right: 12px;
}

.phone-nav button {
  font-size: 6px;
  color: #7e96ae;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
  border-radius: 5px;
  padding: 2px 6px;
}

.phone-nav button.active {
  color: #325476;
}

.phone-nav svg {
  width: 14px;
  height: 14px;
}

.phone-demo-label {
  position: absolute;
  bottom: 0;
  font-size: 7px;
  letter-spacing: 1px;
  color: #748ea8;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 65px;
  padding-block: 68px 107px;
}

.faq-heading>.eyebrow {
  color: #6884a1;
  font-size: 8px;
}

.faq-heading h2 {
  margin-top: 17px;
  font-size: 44px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 11px;
  cursor: pointer;
  list-style: none;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary>span {
  font-size: 18px;
  color: #718ba6;
  transition: transform .3s;
}

.faq-list details[open] summary>span {
  transform: rotate(45deg);
}

.faq-list details p {
  font-size: 11px;
  line-height: 1.9;
  color: #627f9c;
  padding: 0 27px 24px 0;
}

.closing {
  height: 408px;
  background: #092e5d;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.closing-landscape {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg,#08274ce6,#0c365dc4 40%,#09294ca8),url('../assets/landscape-blue.webp') center 65%/cover;
}

.closing-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 66px var(--page-pad);
}

.closing .eyebrow {
  font-size: 8px;
  color: #bccad7;
}

.closing h2 {
  font-size: 53px;
  font-weight: 400;
  margin-top: 15px;
  line-height: 1.1;
}

.closing h2>span {
  color: #b5c6d8;
}

.closing .button {
  margin-top: 30px;
  font-size: 10px;
  padding: 14px 18px;
}

.closing-turbine {
  position: absolute;
  right: 18%;
  bottom: -85px;
  width: 240px;
  height: 420px;
  opacity: .87;
  transform: rotate(-6deg);
  z-index: -1;
}

.closing-turbine svg {
  height: 100%;
  width: 100%;
  overflow: visible;
}

.footer {
  padding-top: 40px;
  padding-bottom: 20px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.footer-main>p {
  font-size: 11px;
  color: #65829f;
}

.footer-main>a:last-child {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-main>a:last-child>span {
  font-size: 19px;
  color: #57718b;
}

.footer .brand>span:last-child {
  font-size: 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  color: #728ca6;
  font-size: 8px;
}

.plain-button {
  background: transparent;
  padding: 0;
  font-size: 8px;
  color: #627f9d;
}

dialog {
  border: 1px solid #dae1e8;
  border-radius: 20px;
  background: #f8fafc;
  padding: 40px;
  width: 480px;
  max-width: calc(100% - 36px);
  color: var(--ink);
  box-shadow: 0 40px 120px #111b2533;
}

dialog::backdrop {
  background: #0c203566;
  backdrop-filter: blur(9px);
}

dialog[open] {
  animation: rise-in .35s var(--ease);
}

.dialog-close {
  position: absolute;
  right: 15px;
  top: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  font-size: 26px;
  color: #6783a0;
}

.dialog-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #dfe7ef;
  color: #476584;
  border-radius: 100%;
  margin-bottom: 23px;
}

dialog .eyebrow {
  font-size: 8px;
  color: #65829f;
}

dialog h2 {
  font-size: 32px;
  letter-spacing: -1.5px;
  margin-top: 12px;
}

dialog>p {
  font-size: 12px;
  line-height: 1.9;
  color: #5a7591;
  margin-top: 20px;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.dialog-actions .button {
  font-size: 10px;
  padding: 14px 17px;
  gap: 14px;
}

.dialog-actions .button>span {
  font-size: 16px;
}

.menu-open {
  overflow: hidden;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .9s var(--ease),transform .9s var(--ease);
}

.js-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

.motion-paused *, .scene-offscreen * {
  animation-play-state: paused!important;
}

.motion-paused .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.motion-paused {
  scroll-behavior: auto;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cloud-drift {
  from {
    transform: translate3d(-35px,0,0);
  }

  to {
    transform: translate3d(115px,8px,0);
  }
}

@keyframes wind-travel {
  from {
    stroke-dashoffset: 1750;
  }

  to {
    stroke-dashoffset: -1750;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scroll-drop {
  0%, 100% {
    transform: translateY(0);
    opacity: .4;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@keyframes header-in {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@media(min-width:1600px) {
  .hero-content {
    padding-top: 170px;
  }

  .turbine-left {
    height: 420px;
    width: 240px;
    bottom: 145px;
  }

  .turbine-right {
    height: 540px;
    width: 309px;
    bottom: 70px;
  }

  .scene-data-left {
    bottom: 175px;
  }

  .scene-data-right {
    bottom: 170px;
  }

  .hero-content>p {
    font-size: 15px;
  }

  .hero-buttons .button {
    font-size: 12px;
  }
}

@media(max-width:1100px) {
  .desktop-nav {
    gap: 20px;
    margin-left: 0;
  }

  .header-actions {
    gap: 18px;
  }

  .hero h1 {
    font-size: 79px;
  }

  .hero-content {
    padding-top: 140px;
  }

  .header {
    gap: 20px;
  }

  .intro-grid {
    gap: 45px;
  }

  .feature-layout {
    gap: 35px;
  }

  .mobile-copy h2 {
    font-size: 44px;
  }

  .scene-data-left {
    left: 18%;
  }

  .scene-data-right {
    right: 8%;
  }

  .phone-demo-label {
    font-size: 6px;
  }
}

@media(max-width:900px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 9px;
  }

  .language {
    display: none;
  }

  .button-small {
    font-size: 10px;
    padding: 12px;
  }

  .header {
    height: 88px;
  }

  .brand>span:last-child {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 73px;
    letter-spacing: -4px;
  }

  .hero-content {
    padding-top: 141px;
  }

  .hero {
    min-height: 780px;
  }

  .turbine-right {
    right: 2%;
    height: 340px;
    width: 195px;
    bottom: 102px;
  }

  .turbine-left {
    left: 2%;
    height: 295px;
    width: 169px;
    bottom: 144px;
  }

  .turbine-far-one {
    left: 30%;
    height: 115px;
    width: 66px;
  }

  .turbine-far-two {
    display: none;
  }

  .turbine-far-three {
    right: 32%;
    height: 130px;
    width: 74px;
  }

  .scene-data-left {
    left: 17%;
    bottom: 140px;
  }

  .scene-data-right {
    right: 5%;
    bottom: 118px;
  }

  .intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  h2 {
    font-size: 35px;
    letter-spacing: -1.7px;
  }

  .section-heading>p {
    font-size: 11px;
    width: 285px;
  }

  .feature-layout {
    grid-template-columns: .8fr 1.2fr;
    gap: 25px;
  }

  .feature-panel {
    padding: 22px;
  }

  .feature-tab {
    gap: 12px;
  }

  .feature-tab strong {
    font-size: 13px;
  }

  .feature-tab small {
    font-size: 9px;
  }

  .mobile-copy h2 {
    font-size: 39px;
    letter-spacing: -2px;
  }

  .store-button {
    padding: 10px;
    gap: 8px;
  }

  .store-button>span:last-child {
    font-size: 11px;
  }

  .store-button>span:last-child>span {
    display: none;
  }

  .phone-stage {
    transform: scale(.92);
    transform-origin: center center;
    margin-inline: -15px;
  }

  .faq-section {
    gap: 45px;
  }

  .benefit-row {
    gap: 15px;
  }

  .benefit-row strong {
    font-size: 11px;
  }

  .benefit-row p {
    font-size: 9px;
  }

  .intro {
    padding-top: 75px;
  }

  .closing-turbine {
    right: 12%;
  }
}

@media(max-width:700px) {
  :root {
    --page-pad: 24px;
    scroll-padding-top: 85px;
  }

  .header, .header.scrolled {
    height: 78px;
  }

  .header-actions>.button {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .language {
    display: flex;
    font-size: 10px;
  }

  .header-actions {
    gap: 10px;
  }

  .brand>span:last-child {
    font-size: 24px;
  }

  .brand-mark {
    width: 38px;
    height: 43px;
  }

  .brand-mark img {
    width: 58px;
    height: 58px;
    top: -8px;
    left: -10px;
  }

  .brand small {
    font-size: 6px;
    letter-spacing: 3.9px;
  }

  .mobile-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #f3f7fbfa;
    backdrop-filter: blur(20px);
    padding: 22px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: .25s;
    box-shadow: 0 15px 30px #16283b14;
  }

  .mobile-nav a {
    font-size: 23px;
    padding: 17px 0;
    border-bottom: 1px solid #d6dee5;
    display: flex;
    justify-content: space-between;
  }

  .mobile-nav a>span {
    font-size: 10px;
    color: #718ba6;
  }

  .mobile-nav .button {
    margin-top: 25px;
  }

  .menu-open .mobile-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .menu-open .header {
    position: fixed;
    background: #f3f7fb;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: 810px;
    height: 100svh;
    max-height: 1000px;
  }

  .hero-content {
    padding: 131px 20px 0;
  }

  .hero h1 {
    font-size: clamp(48px,9.8vw,66px);
    letter-spacing: -3.1px;
    line-height: 1.12;
  }

  .hero h1 em {
    letter-spacing: -2.5px;
  }

  .hero-content>p {
    font-size: 11px;
    line-height: 1.9;
    margin-top: 22px;
  }

  .hero-buttons {
    gap: 8px;
    margin-top: 24px;
  }

  .hero-buttons .button {
    font-size: 9px;
    padding: 14px 14px;
    gap: 12px;
    border-radius: 6px;
  }

  .hero-buttons .button>span {
    font-size: 16px;
  }

  .platform-note {
    font-size: 6px;
    gap: 6px;
    margin-top: 15px;
  }

  .platform-note svg {
    width: 9px;
    height: 10px;
  }

  .landscape {
    inset: 20% -45% -3%;
    background-position: 48% bottom;
    transform: translate3d(calc(var(--parallax-x) * -.55),calc(var(--parallax-y) * .5),0);
  }

  .sky-wash {
    background: linear-gradient(#e5ecf4 0%,#e3eff5ed 17%,#dfedf5c9 30%,#dfedf568 43%,#dce5ee00 61%);
  }

  .cloud-one {
    top: 274px;
    left: -190px;
    width: 350px;
  }

  .cloud-two {
    top: 380px;
    right: -220px;
    width: 390px;
    opacity: .8;
  }

  .turbine-left {
    height: 235px;
    width: 134px;
    left: -1%;
    bottom: 134px;
  }

  .turbine-right {
    height: 313px;
    width: 178px;
    right: 0;
    bottom: 75px;
  }

  .turbine-far-one {
    left: 35%;
    bottom: 162px;
    height: 125px;
    width: 71px;
  }

  .turbine-far-three {
    display: none;
  }

  .scene-data-left {
    left: 12%;
    bottom: 95px;
    padding: 11px 12px;
    gap: 9px;
  }

  .scene-data-left strong {
    font-size: 23px;
  }

  .mini-wind-chart {
    width: 37px;
  }

  .scene-data-right {
    display: none;
  }

  .hero-bottom {
    bottom: 30px;
  }

  .scene-caption {
    display: none;
  }

  .scroll-cue {
    font-size: 7px;
    letter-spacing: 1.3px;
    gap: 10px;
  }

  .scroll-line {
    height: 25px;
    width: 14px;
  }

  .scroll-line:after {
    left: 5px;
  }

  .hero-demo-note {
    bottom: 9px;
    font-size: 6px;
  }

  .intro {
    padding-top: 66px;
    padding-bottom: 53px;
  }

  .section-index {
    font-size: 7px;
    letter-spacing: 1px;
    margin-bottom: 28px;
    gap: 8px;
  }

  .index-number {
    font-size: 8px;
  }

  .small-wind {
    width: 14px;
    height: 14px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  h2 {
    font-size: 35px;
    letter-spacing: -1.8px;
    line-height: 1.23;
  }

  .intro-copy {
    max-width: none;
  }

  .intro-copy>p:first-child {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .intro-copy p {
    font-size: 11px;
    max-width: 480px;
  }

  .intro-copy .text-link {
    margin-top: 20px;
    font-size: 11px;
  }

  .benefit-row {
    grid-template-columns: 1fr 1fr;
    gap: 28px 17px;
    margin-top: 39px;
    padding-top: 30px;
  }

  .benefit-row>div {
    padding-left: 28px;
  }

  .benefit-row>div>span {
    width: 17px;
  }

  .benefit-row strong {
    font-size: 10px;
  }

  .benefit-row p {
    font-size: 8px;
    line-height: 1.6;
    margin-top: 6px;
  }

  .map-section {
    padding-top: 21px;
    padding-bottom: 55px;
  }

  .section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .section-heading>p {
    font-size: 11px;
    line-height: 1.8;
    margin-top: 19px;
    width: auto;
    padding: 0;
  }

  .desktop-only {
    display: none;
  }

  .map-footnote {
    font-size: 8px;
    line-height: 1.6;
    margin-top: 15px;
  }

  .map-footnote>span:last-child {
    max-width: 150px;
    text-align: right;
  }

  .features-section {
    padding-block: 55px;
  }

  .feature-layout {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 20px;
  }

  .feature-tabs {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 7px;
  }

  .feature-tab, .feature-tab:first-child {
    border-top: 0;
    border-bottom: 1px solid #c1ccd8;
    display: block;
    padding: 13px 0;
    text-align: center;
  }

  .feature-tab strong {
    font-size: 8px;
    font-weight: 600;
    line-height: 1.6;
  }

  .feature-tab small {
    display: none;
  }

  .feature-number {
    display: block;
    font-size: 7px;
    margin-bottom: 8px;
  }

  .feature-arrow {
    display: none;
  }

  .feature-panel {
    min-height: 365px;
    padding: 23px 20px;
  }

  .panel-metric strong {
    font-size: 33px;
  }

  .panel-metric {
    margin-top: 22px;
  }

  .production-chart {
    height: 155px;
    margin-top: 15px;
  }

  .panel-caption {
    font-size: 9px;
    margin-top: 23px;
  }

  .panel-head {
    font-size: 10px;
  }

  .mobile-section {
    padding-top: 55px;
    padding-bottom: 20px;
  }

  .mobile-layout {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mobile-copy {
    max-width: none;
  }

  .mobile-copy h2 {
    font-size: 41px;
    letter-spacing: -2px;
    margin-top: 13px;
  }

  .mobile-copy>p {
    font-size: 11px;
    max-width: 450px;
    margin-top: 20px;
  }

  .mobile-checks {
    margin: 20px 0 25px;
  }

  .mobile-checks li {
    font-size: 10px;
    margin-top: 13px;
  }

  .store-button {
    padding: 10px 16px;
  }

  .store-button>span:last-child {
    font-size: 12px;
  }

  .store-note {
    font-size: 7px;
  }

  .phone-stage {
    transform: none;
    margin: 0;
    height: 585px;
  }

  .phone-demo-label {
    font-size: 6px;
    letter-spacing: .7px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-block: 53px 58px;
  }

  .faq-heading h2 {
    font-size: 36px;
    margin-top: 12px;
  }

  .faq-heading h2 br {
    display: none;
  }

  .faq-list summary {
    font-size: 10px;
    padding: 20px 0;
  }

  .faq-list details p {
    font-size: 10px;
    padding-bottom: 20px;
  }

  .closing {
    height: 346px;
  }

  .closing-inner {
    padding-top: 47px;
  }

  .closing h2 {
    font-size: 41px;
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
  }

  .closing .eyebrow {
    font-size: 7px;
    letter-spacing: 1.1px;
  }

  .closing .button {
    margin-top: 26px;
    font-size: 9px;
  }

  .closing-turbine {
    right: -50px;
    bottom: -69px;
    height: 315px;
    width: 180px;
    opacity: .5;
  }

  .closing-landscape {
    background: linear-gradient(90deg,#08274cf0,#0c365dc4 65%,#09294ca8),url('../assets/landscape-blue.webp') center/cover;
  }

  .footer {
    padding-top: 28px;
  }

  .footer-main {
    padding-bottom: 24px;
  }

  .footer-main>p {
    display: none;
  }

  .footer-main>a:last-child {
    font-size: 9px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    font-size: 7px;
    gap: 17px;
    line-height: 1.7;
  }

  .footer-bottom>span:nth-child(2) {
    display: none;
  }

  .plain-button {
    font-size: 7px;
  }

  dialog {
    padding: 31px 24px;
  }

  dialog h2 {
    font-size: 29px;
  }

  dialog>p {
    font-size: 11px;
  }

  .dialog-actions .button {
    font-size: 9px;
    padding: 12px;
  }
}

@media(max-width:360px) {
  .hero h1 {
    font-size: 45px;
    letter-spacing: -2.8px;
  }

  .hero-content {
    padding-inline: 14px;
  }

  .hero-buttons .button {
    padding: 13px 10px;
    font-size: 8px;
    gap: 10px;
  }

  .hero {
    min-height: 790px;
  }

  .phone-stage {
    transform: scale(.93);
    margin-inline: -10px;
  }

  .section-index {
    font-size: 6px;
  }

  .store-button {
    padding: 10px 12px;
  }

  .benefit-row {
    column-gap: 10px;
  }

  .benefit-row strong {
    font-size: 9px;
  }

  .benefit-row p {
    font-size: 7px;
  }
}

.landscape {
  mask-image: linear-gradient(180deg,transparent,#000 27%);
}

.hero-content>.hero-kicker {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2.1px;
  color: #476887;
  margin: 4px 0 29px;
  line-height: 1.6;
}

.hero-kicker>span {
  display: inline-block;
  margin-inline: 12px;
  color: #4f9bd1;
}

.hero h1 em {
  font-family: inherit;
  font-weight: 650;
  font-style: normal;
  color: #087fca;
  letter-spacing: inherit;
  margin-left: .1em;
}

.serif-word {
  font-family: inherit;
  font-style: normal;
  font-weight: 500;
  color: #087fca;
}

.section-heading h2, .closing-landscape {
  transform: translate3d(0,var(--scroll-shift,0px),0);
  will-change: transform;
}

.closing-landscape {
  inset: -16%;
}

.real-device-stage {
  height: 740px;
  perspective: 1100px;
}

.device-parallax {
  position: absolute;
  top: 20px;
  transform: translate3d(0,calc(var(--scroll-shift,0px) * .45),0) rotate(-5deg);
  will-change: transform;
  z-index: 2;
}

.real-phone {
  width: 276px;
  border: 7px solid #152a46;
  border-radius: 42px;
  background: #edf3f9;
  padding: 2px;
  box-shadow: 2px 2px 0 #6782a2,15px 30px 50px #153e6b26;
  position: relative;
}

.real-phone:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 50px;
  left: -10px;
  top: 115px;
  background: #1d3d63;
  border-radius: 3px;
  box-shadow: 0 62px 0 #1d3d63;
}

.real-screen {
  border-radius: 33px;
  overflow: hidden;
  background: #edf3f9;
}

.screenshot-button {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
}

.screenshot-button img {
  width: 100%;
  height: auto;
  animation: screen-in .45s var(--ease);
}

.device-backdrop {
  font-size: 310px;
  font-weight: 800;
  letter-spacing: -30px;
  color: #e7f0f9;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%,-50%);
  z-index: -1;
  user-select: none;
}

.device-wind-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #7bbde2;
  stroke-width: .8;
  overflow: visible;
  opacity: .7;
}

.device-wind-lines path {
  stroke-dasharray: 180 1500;
  animation: wind-travel 17s linear infinite;
}

.device-wind-lines path:nth-child(2) {
  animation-delay: .4s;
  opacity: .7;
}

.device-wind-lines path:nth-child(3) {
  animation-delay: .8s;
  opacity: .35;
}

.device-coordinate {
  position: absolute;
  left: 0;
  top: 80px;
  writing-mode: vertical-rl;
  font-size: 7px;
  letter-spacing: 2px;
  color: #7e96b0;
}

.device-side-note {
  position: absolute;
  right: 8px;
  bottom: 140px;
  writing-mode: vertical-rl;
  font-size: 7px;
  letter-spacing: 2px;
  color: #5085b1;
}

.real-phone-nav {
  bottom: 36px;
  left: 10px;
  right: 10px;
  border-top: 0;
  justify-content: center;
  gap: 20px;
}

.real-phone-nav button {
  display: block;
  font-size: 10px;
  padding: 9px 0;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  color: #708ba6;
  transition: color .25s,border-color .25s;
}

.real-phone-nav button>span {
  font-size: 7px;
  margin-right: 4px;
  color: #a1b4c6;
}

.real-phone-nav button.active {
  color: #0c69b0;
  border-color: #0c69b0;
}

.real-device-stage .phone-demo-label {
  bottom: 10px;
  color: #7190ae;
  font-size: 6px;
  letter-spacing: .7px;
}

.screenshot-dialog {
  width: auto;
  max-width: calc(100vw - 40px);
  max-height: calc(100svh - 32px);
  border-radius: 16px;
  background: #071f3a;
  padding: 10px;
  border: 1px solid #728caa;
  overflow: auto;
  scrollbar-width: thin;
}

.screenshot-dialog>img {
  width: auto;
  height: auto;
  max-height: calc(100svh - 110px);
  border-radius: 8px;
  margin: auto;
}

.screenshot-dialog:focus {
  outline: none;
}

.screenshot-dialog::backdrop {
  background: #071a30c9;
  backdrop-filter: blur(12px);
}

.screenshot-close {
  position: absolute;
  right: 12px;
  top: 12px;
  color: white;
  background: #123655;
  width: 42px;
  height: 42px;
  font-size: 27px;
  border: 1px solid #ffffff40;
  border-radius: 100%;
  z-index: 2;
}

.screenshot-next {
  display: block;
  margin: 10px auto 0;
  color: #dceeff;
  background: transparent;
  padding: 8px 15px;
  font-size: 11px;
}

.screenshot-dialog[open] {
  animation: none;
}

.chart-line {
  stroke-dasharray: 900;
  animation: chart-draw 1.5s var(--ease) both;
}

.feature-panel {
  border-radius: 7px;
  box-shadow: 0 20px 50px #163d6e0a;
}

.scene-data {
  border-radius: 5px;
}

.button {
  border-radius: 4px;
}

@keyframes chart-draw {
  from {
    stroke-dashoffset: 900;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes screen-in {
  from {
    opacity: .35;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media(max-width:1100px) {
  .device-side-note {
    right: -5px;
  }

  .device-coordinate {
    left: -5px;
  }

  .device-backdrop {
    font-size: 260px;
  }
}

@media(max-width:900px) {
  .real-phone {
    width: 260px;
  }

  .device-backdrop {
    font-size: 220px;
  }

  .device-coordinate, .device-side-note {
    display: none;
  }
}

@media(max-width:700px) {
  .hero-content>.hero-kicker {
    font-size: 6px;
    letter-spacing: 1.3px;
    margin: 3px 0 27px;
  }

  .hero-kicker>span {
    margin-inline: 7px;
  }

  .hero h1 {
    font-size: clamp(46px,9.6vw,64px);
  }

  .real-device-stage {
    height: 663px;
    margin-top: 10px;
  }

  .real-phone {
    width: 256px;
    border-radius: 39px;
  }

  .real-screen {
    border-radius: 30px;
  }

  .device-backdrop {
    font-size: 270px;
    letter-spacing: -27px;
  }

  .real-phone-nav {
    gap: 18px;
    bottom: 28px;
  }

  .real-phone-nav button {
    font-size: 9px;
  }

  .real-phone-nav button>span {
    font-size: 6px;
  }

  .real-device-stage .phone-demo-label {
    font-size: 5.5px;
    bottom: 3px;
  }

  .device-side-note {
    display: block;
    right: -7px;
    font-size: 6px;
  }

  .device-coordinate {
    display: block;
    left: -7px;
    font-size: 6px;
  }
}

.motion-paused [data-scroll-shift] {
  --scroll-shift: 0px!important;
}

.mobile-section {
  overflow: hidden;
}

.store-symbol svg {
  width: 22px;
  height: 25px;
  fill: currentColor;
  stroke: none;
}

[hidden] {
  display: none!important;
}

.motion-toggle:disabled {
  opacity: .7;
  cursor: default;
}

.intro-copy p, .section-heading>p, .mobile-copy>p, .faq-list details p {
  color: #536b84;
}

.panel-caption, .feature-tab small, .mobile-checks li {
  color: #50677f;
}

.chart-labels, .panel-head, .panel-metric p, .store-note, .map-footnote {
  color: #556e87;
}

@media(prefers-reduced-motion:reduce) {
  :root {
    scroll-behavior: auto;
  }

  *, *:before, *:after {
    animation: none!important;
    transition: none!important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .landscape, .turbine {
    transform: none!important;
  }

  .hero-content {
    opacity: 1;
    transform: none;
  }
}
