:root {
  --paper: #f3f0e8;
  --ink: #151916;
  --muted: #656b66;
  --line: rgba(21, 25, 22, 0.16);
  --night: #08111f;
  --night-soft: #0d1a2d;
  --night-text: #f5f7f2;
  --night-muted: #a5afba;
  --cyan: #99e6ed;
  --green: #8ed890;
  --orange: #ff9b36;
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, serif;
  --mono: "SFMono-Regular", Consolas, monospace;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--display);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 28px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.brand-mark::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-note,
.small-link {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Home */

.home-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 10%, rgba(142, 216, 144, 0.19), transparent 24rem),
    var(--paper);
}

.home-hero {
  min-height: min(730px, 74vh);
  padding: clamp(90px, 14vh, 160px) 0 100px;
}

.home-hero .kicker {
  margin-bottom: 22px;
  color: var(--muted);
}

.home-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(58px, 9.2vw, 132px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.home-hero h1 em {
  font-family: var(--serif);
  font-weight: 500;
}

.home-intro {
  max-width: 460px;
  margin: 44px 0 0 auto;
  color: #464d47;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.apps-section {
  padding-bottom: 130px;
}

.section-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-rule h2,
.section-rule span {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-listing {
  position: relative;
  display: grid;
  grid-template-columns: 168px 1fr auto 58px;
  gap: 34px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.app-listing::before {
  position: absolute;
  z-index: -1;
  inset: 12px -18px;
  content: "";
  background: rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  opacity: 0;
  transform: scale(0.99);
  transition: opacity 180ms ease, transform 180ms ease;
}

.app-listing:hover::before,
.app-listing:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.app-listing-icon {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 18px 50px rgba(20, 44, 61, 0.12);
}

.app-listing-icon img {
  width: 100%;
  height: auto;
}

.app-number {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.app-listing h3 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.app-listing-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.app-listing-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.round-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.app-listing:hover .round-arrow {
  color: var(--paper);
  background: var(--ink);
  transform: rotate(45deg);
}

.home-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

/* Pantala */

.pantala-page {
  color: var(--night-text);
  background: var(--night);
}

.pantala-header {
  position: relative;
  z-index: 20;
}

.pantala-header .small-link {
  color: var(--night-muted);
}

.pantala-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(50px, 7vw, 100px);
  min-height: 830px;
  align-items: center;
  padding: 65px 0 110px;
}

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

.hero-copy > .kicker {
  color: var(--cyan);
}

.pantala-title-lockup {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 26px 0 28px;
  color: #d7e3e7;
  font-size: 18px;
  font-weight: 700;
}

.pantala-title-lockup img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.pantala-hero h1 {
  margin: 0;
  font-size: clamp(60px, 7.4vw, 104px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero-lede {
  max-width: 600px;
  margin: 34px 0 0;
  color: var(--night-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

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

.app-store-link {
  display: inline-block;
  border-radius: 9px;
  line-height: 0;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.app-store-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.app-store-link img {
  width: 180px;
  height: auto;
}

.price-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--night-muted);
  font-size: 12px;
}

.price-note strong {
  color: var(--night-text);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 32px 0 0;
  padding: 0;
  color: #7f8d99;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.trust-line li {
  position: relative;
}

.trust-line li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -16px;
  width: 3px;
  height: 3px;
  content: "";
  background: #52606c;
  border-radius: 50%;
}

.phone-stage {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.phone-stage::before {
  position: absolute;
  z-index: -3;
  width: min(620px, 49vw);
  height: min(620px, 49vw);
  content: "";
  background:
    radial-gradient(circle at 35% 30%, rgba(153, 230, 237, 0.16), transparent 33%),
    radial-gradient(circle at 65% 66%, rgba(255, 155, 54, 0.14), transparent 30%),
    #0b1828;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.phone {
  position: relative;
  z-index: 3;
  width: min(340px, 78vw);
  padding: 10px;
  background: linear-gradient(145deg, #3b4652, #111821 30%, #2c343d 72%, #080d13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 57px;
  box-shadow:
    0 50px 90px rgba(0, 0, 0, 0.48),
    0 0 0 2px #05090d,
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transform: rotate(3deg);
}

.phone::after {
  position: absolute;
  right: -4px;
  bottom: 96px;
  width: 4px;
  height: 110px;
  content: "";
  background: #38414a;
  border-radius: 0 3px 3px 0;
}

.phone-button {
  position: absolute;
  left: -5px;
  width: 5px;
  background: #343e48;
  border-radius: 3px 0 0 3px;
}

.phone-button-one {
  top: 120px;
  height: 60px;
}

.phone-button-two {
  top: 195px;
  height: 84px;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #172436;
  border-radius: 48px;
}

.dynamic-island {
  position: absolute;
  z-index: 12;
  top: 13px;
  left: 50%;
  width: 95px;
  height: 27px;
  background: #050607;
  border-radius: 20px;
  transform: translateX(-50%);
}

.phone video {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms ease;
}

.phone.video-ready video {
  opacity: 1;
}

.demo-fallback {
  position: absolute;
  overflow: hidden;
  inset: 0;
  background: #152b43;
}

.demo-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.08), rgba(5, 11, 20, 0.06) 45%, rgba(5, 11, 20, 0.7)),
    linear-gradient(150deg, #5ca7c2, #d9bc85 58%, #192c43 59%);
  transform: scale(1.65) translateX(10%);
  animation: footage-pan 8s ease-in-out infinite alternate;
}

.demo-sun {
  position: absolute;
  top: 22%;
  left: 22%;
  width: 68px;
  height: 68px;
  background: #ffd99b;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(255, 217, 155, 0.5);
}

.demo-ridge {
  position: absolute;
  right: -35%;
  bottom: 22%;
  left: -35%;
  height: 44%;
  background: #213f53;
  clip-path: polygon(0 100%, 0 62%, 18% 39%, 37% 70%, 58% 23%, 78% 63%, 100% 35%, 100% 100%);
}

.demo-ridge-back {
  bottom: 29%;
  background: #456b72;
  opacity: 0.72;
  transform: scale(1.18);
  animation: ridge-shift 8s ease-in-out infinite alternate;
}

.demo-ridge-front {
  background: #142637;
}

.demo-subject {
  position: absolute;
  bottom: 23%;
  left: 53%;
  width: 18px;
  height: 84px;
  background: #0a111a;
  border-radius: 10px 10px 2px 2px;
  box-shadow: 0 -11px 0 -2px #0a111a;
  transform: translateX(-50%);
}

.demo-subject::before,
.demo-subject::after {
  position: absolute;
  top: 30px;
  width: 5px;
  height: 52px;
  content: "";
  background: #0a111a;
  border-radius: 4px;
}

.demo-subject::before {
  left: -8px;
  transform: rotate(16deg);
}

.demo-subject::after {
  right: -8px;
  transform: rotate(-16deg);
}

.demo-crop {
  position: absolute;
  top: 17%;
  bottom: 21%;
  left: 20%;
  width: 60%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 2px;
  box-shadow: 0 0 0 100vmax rgba(4, 8, 14, 0.17);
  animation: crop-drift 8s ease-in-out infinite alternate;
}

.demo-crop::before,
.demo-crop::after {
  position: absolute;
  width: 15px;
  height: 15px;
  content: "";
  border-color: #fff;
}

.demo-crop::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.demo-crop::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.demo-hud {
  position: absolute;
  z-index: 3;
  top: 55px;
  right: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(5, 9, 14, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(9px);
  font-family: var(--mono);
  font-size: 7px;
}

.demo-hud span {
  display: flex;
  gap: 4px;
  align-items: center;
}

.demo-hud i {
  width: 5px;
  height: 5px;
  background: #5be46c;
  border-radius: 50%;
}

.demo-hud b {
  font-size: 8px;
}

.demo-timeline {
  position: absolute;
  right: 24px;
  bottom: 118px;
  left: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 2px;
}

.demo-timeline span {
  display: block;
  width: 56%;
  height: 100%;
  background: #fff;
}

.demo-timeline i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 56%;
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.demo-controls {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.demo-record {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.demo-record::after {
  display: block;
  width: 33px;
  height: 33px;
  margin: 4px;
  content: "";
  background: #ef3f46;
  border-radius: 50%;
}

.demo-clutch {
  display: grid;
  width: 67px;
  height: 67px;
  place-items: center;
  background: rgba(44, 139, 237, 0.74);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(80, 160, 255, 0.38);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  animation: clutch-pulse 2.2s ease-out infinite;
}

.phone-glass {
  position: absolute;
  z-index: 11;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.12), transparent 16%, transparent 75%, rgba(255, 255, 255, 0.04));
  border-radius: inherit;
}

.demo-caption {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  margin: 0;
  color: #70808d;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  z-index: -2;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(153, 230, 237, 0.12);
  border-radius: 50%;
}

.orbit-one {
  transform: rotate(22deg) scaleY(0.52);
}

.orbit-two {
  border-color: rgba(255, 155, 54, 0.11);
  transform: rotate(-35deg) scaleY(0.64);
}

.motion-note {
  position: absolute;
  z-index: 5;
  padding: 8px 12px;
  color: #9eabb7;
  background: rgba(6, 14, 25, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.motion-note span {
  color: var(--cyan);
}

.motion-note-pan {
  top: 28%;
  left: -2%;
}

.motion-note-zoom {
  right: -1%;
  bottom: 27%;
}

.nle-section {
  padding: 95px 0 88px;
  background:
    radial-gradient(circle at 88% 18%, rgba(153, 230, 237, 0.08), transparent 28rem),
    #0a1525;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.nle-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px 80px;
  align-items: end;
}

.nle-copy .kicker {
  margin-bottom: 16px;
  color: var(--cyan);
}

.nle-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.nle-description {
  max-width: 540px;
  margin: 0 0 4px;
  color: var(--night-muted);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
}

.nle-brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nle-brand {
  display: flex;
  min-height: 138px;
  gap: 20px;
  align-items: center;
  justify-content: center;
  color: #f7f9f6;
}

.nle-brand + .nle-brand {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.nle-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.nle-brand span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.nle-formats {
  grid-column: 1 / -1;
  margin: -30px 0 0;
  color: #6f7d89;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  color: #142130;
  background: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee-track {
  display: flex;
  width: 200vw;
  align-items: center;
  animation: marquee-slide 22s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  width: 100vw;
  flex: 0 0 100vw;
  gap: 12px;
  align-items: center;
  justify-content: space-around;
  padding: 0 32px;
}

.marquee i {
  color: #446c75;
  font-style: normal;
}

.how-section {
  padding: 150px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.62fr 1.4fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 70px;
}

.section-heading .kicker {
  padding-top: 13px;
  color: var(--cyan);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 480px;
  padding: 25px;
  background: var(--night-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.step-number {
  color: #667381;
  font-family: var(--mono);
  font-size: 10px;
}

.step-visual {
  position: relative;
  display: grid;
  height: 232px;
  place-items: center;
}

.step-card h3 {
  margin: 5px 0 13px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.step-card p {
  margin: 0;
  color: var(--night-muted);
  font-size: 14px;
  line-height: 1.7;
}

.clip-stack {
  position: relative;
  width: 134px;
  height: 95px;
}

.clip-stack span {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 67% 37%, #ffd08e 0 8%, transparent 9%),
    linear-gradient(145deg, #427899, #132e43 55%, #0f202f);
  border: 3px solid #d8edf0;
  border-radius: 8px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.clip-stack span:nth-child(2) {
  transform: translate(-13px, 9px) rotate(-7deg);
}

.clip-stack span:nth-child(3) {
  transform: translate(14px, 12px) rotate(8deg);
}

.import-visual .plus {
  position: absolute;
  right: 18%;
  bottom: 18%;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: #142130;
  background: var(--cyan);
  border-radius: 50%;
  font-size: 25px;
}

.move-phone {
  width: 76px;
  height: 145px;
  background: #142235;
  border: 4px solid #d5dde0;
  border-radius: 18px;
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.3);
  transform: rotate(9deg);
  animation: mini-phone-move 3s ease-in-out infinite alternate;
}

.move-phone::before {
  display: block;
  width: 26px;
  height: 5px;
  margin: 6px auto;
  content: "";
  background: #080d13;
  border-radius: 3px;
}

.move-path {
  position: absolute;
  top: 26%;
  right: 18%;
  color: var(--orange);
  font-size: 46px;
}

.hold-pill {
  position: absolute;
  right: 20%;
  bottom: 22%;
  padding: 7px 11px;
  color: #fff;
  background: #2d83dd;
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 7px;
}

.play-chip,
.done-ring {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 50%;
}

.play-chip {
  color: #102234;
  background: var(--cyan);
  font-size: 22px;
  transform: translate(-24px, 7px);
}

.done-ring {
  position: absolute;
  right: 18%;
  bottom: 24%;
  width: 46px;
  height: 46px;
  color: #122233;
  background: var(--green);
  font-size: 19px;
}

.export-arrow {
  position: absolute;
  top: 27%;
  right: 20%;
  color: #f7faf8;
  font-size: 36px;
}

.features-section {
  padding: 145px 0;
  color: #18201c;
  background: var(--paper);
}

.features-section .section-heading .kicker {
  color: #527156;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature {
  min-height: 340px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(21, 25, 22, 0.1);
  border-radius: var(--radius);
}

.feature-wide {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-column: 1 / -1;
  gap: 40px;
  min-height: 450px;
  align-items: center;
  overflow: hidden;
  background: #dce9dd;
}

.feature-label {
  display: block;
  margin-bottom: 25px;
  color: #5d6b61;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature h3 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.feature:not(.feature-wide) h3 {
  max-width: 400px;
  font-size: clamp(26px, 3vw, 39px);
}

.feature p {
  max-width: 470px;
  margin: 22px 0 0;
  color: #5a625c;
  line-height: 1.65;
}

.feature-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 50px;
  place-items: center;
  color: #dceddf;
  background: #193225;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 16px;
}

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

.aspect-landscape,
.aspect-portrait {
  position: absolute;
  background:
    radial-gradient(circle at 70% 28%, #ffcb7e 0 7%, transparent 8%),
    linear-gradient(150deg, #6ca5b7 0 48%, #284954 49% 64%, #152c35 65%);
  border: 5px solid #f7f8f3;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(30, 64, 45, 0.2);
}

.aspect-landscape {
  width: 92%;
  aspect-ratio: 16 / 9;
  opacity: 0.55;
  transform: rotate(-4deg);
}

.aspect-portrait {
  width: 37%;
  aspect-ratio: 9 / 16;
  transform: rotate(4deg);
}

.aspect-portrait i {
  position: absolute;
  top: 34%;
  left: 50%;
  width: 14px;
  height: 60px;
  background: #0c1820;
  border-radius: 8px;
  transform: translateX(-50%);
}

.aspect-visual b {
  position: absolute;
  right: 5%;
  bottom: 4%;
  padding: 8px 13px;
  color: #eaf4ec;
  background: #193225;
  border-radius: 20px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
}

.privacy-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
  padding-top: 150px;
  padding-bottom: 150px;
}

.privacy-lockup {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.privacy-lockup .kicker {
  margin-bottom: 15px;
  color: var(--cyan);
}

.privacy-lockup h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.privacy-ring {
  display: grid;
  width: 67px;
  height: 67px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(142, 216, 144, 0.45);
  border-radius: 50%;
}

.privacy-ring svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.privacy-copy {
  color: var(--night-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.privacy-copy p {
  margin: 0 0 24px;
}

.privacy-copy a {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.final-cta {
  overflow: hidden;
  color: #17201b;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.72), transparent 30%),
    var(--green);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  min-height: 600px;
  align-items: center;
}

.final-character {
  width: min(540px, 100%);
  height: auto;
  filter: drop-shadow(0 30px 25px rgba(23, 57, 34, 0.18));
  transform: rotate(-5deg) scale(1.05);
}

.final-cta h2 {
  margin: 14px 0 23px;
  font-size: clamp(58px, 8vw, 110px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.final-price {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 0 0 34px;
  font-family: var(--mono);
  font-size: 18px;
}

.final-price span {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pantala-footer {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  color: #81909d;
}

.pantala-footer > div {
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pantala-footer a {
  text-decoration: none;
}

/* Privacy page */

.privacy-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.policy-main {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 140px;
}

.policy-main h1 {
  margin: 16px 0 30px;
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.policy-main .policy-intro {
  margin-bottom: 60px;
  color: #4c554f;
  font-size: 21px;
  line-height: 1.6;
}

.policy-main h2 {
  margin: 48px 0 12px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.policy-main h3 {
  margin: 28px 0 8px;
  font-size: 17px;
  letter-spacing: -0.015em;
}

.policy-main p,
.policy-main li {
  color: #4c554f;
  line-height: 1.75;
}

.policy-main a {
  color: #244e37;
  text-underline-offset: 3px;
}

.policy-main ul {
  padding-left: 20px;
}

.policy-main li + li {
  margin-top: 8px;
}

.policy-updated {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-notice {
  margin: 45px 0 58px;
  padding: 24px 26px;
  background: #e1ebe1;
  border: 1px solid rgba(28, 62, 40, 0.13);
  border-radius: 18px;
}

.legal-notice strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.legal-notice p {
  margin: 0;
}

.contact-card {
  margin-top: 18px;
  padding: 24px 26px;
  color: #34483b;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(21, 25, 22, 0.12);
  border-radius: 18px;
  font-style: normal;
  line-height: 1.75;
}

.support-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 56px;
}

.support-card > a {
  width: fit-content;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}

.support-card p {
  margin: 8px 0 0;
  font-size: 14px;
}

.legal-caps {
  padding-left: 20px;
  border-left: 3px solid #345a41;
}

.legal-caps p {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.75;
}

/* Motion */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

@keyframes footage-pan {
  from {
    transform: scale(1.55) translateX(11%);
  }
  to {
    transform: scale(1.85) translateX(-5%);
  }
}

@keyframes ridge-shift {
  from {
    transform: scale(1.18) translateX(-2%);
  }
  to {
    transform: scale(1.3) translateX(4%);
  }
}

@keyframes crop-drift {
  from {
    transform: translateX(9%) scale(0.92);
  }
  to {
    transform: translateX(-9%) scale(1.05);
  }
}

@keyframes clutch-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(80, 160, 255, 0.4);
  }
  55%,
  100% {
    box-shadow: 0 0 0 14px rgba(80, 160, 255, 0);
  }
}

@keyframes marquee-slide {
  to {
    transform: translateX(-50%);
  }
}

@keyframes mini-phone-move {
  from {
    transform: translate(-12px, 9px) rotate(3deg);
  }
  to {
    transform: translate(15px, -8px) rotate(11deg);
  }
}

/* Responsive */

@media (max-width: 900px) {
  .pantala-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

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

  .phone-stage {
    min-height: 740px;
  }

  .phone-stage::before {
    width: min(620px, 90vw);
    height: min(620px, 90vw);
  }

  .motion-note-pan {
    left: 8%;
  }

  .motion-note-zoom {
    right: 7%;
  }

  .nle-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nle-description {
    max-width: 680px;
  }

  .nle-formats {
    margin-top: -10px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .step-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    min-height: 310px;
    align-items: center;
  }

  .step-number {
    position: absolute;
    top: 25px;
    left: 25px;
  }

  .step-visual {
    grid-row: 1 / 3;
    height: 260px;
  }

  .step-card h3 {
    align-self: end;
  }

  .step-card p {
    align-self: start;
  }

  .feature-wide {
    grid-template-columns: 1fr;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 32px, 1200px);
  }

  .marquee {
    font-size: 8px;
  }

  .marquee-group {
    gap: 7px;
    padding: 0 10px;
  }

  .site-header {
    min-height: 72px;
  }

  .header-note {
    display: none;
  }

  .home-hero {
    min-height: 640px;
    padding-top: 120px;
  }

  .home-intro {
    margin-left: 0;
  }

  .app-listing {
    grid-template-columns: 92px 1fr 44px;
    gap: 18px;
    padding: 30px 0;
  }

  .app-listing-icon {
    border-radius: 24px;
  }

  .app-listing-meta {
    display: none;
  }

  .app-number {
    margin-bottom: 9px;
  }

  .app-listing h3 {
    font-size: 32px;
  }

  .app-listing-copy p {
    font-size: 13px;
    line-height: 1.45;
  }

  .round-arrow {
    width: 42px;
    height: 42px;
  }

  .home-footer {
    flex-direction: column;
  }

  .pantala-hero {
    gap: 40px;
    padding-top: 80px;
  }

  .pantala-hero h1 {
    font-size: clamp(55px, 16vw, 80px);
  }

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

  .phone-stage {
    min-height: 680px;
  }

  .phone {
    width: min(320px, 78vw);
  }

  .nle-section {
    padding: 78px 0 70px;
  }

  .nle-brands {
    grid-template-columns: 1fr;
  }

  .nle-brand {
    min-height: 104px;
    padding: 0 24px;
    justify-content: flex-start;
  }

  .nle-brand + .nle-brand {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .nle-formats {
    line-height: 1.7;
    text-align: left;
  }

  .motion-note-pan {
    top: 23%;
    left: 0;
  }

  .motion-note-zoom {
    right: 0;
    bottom: 23%;
  }

  .how-section,
  .features-section {
    padding: 100px 0;
  }

  .steps {
    gap: 12px;
  }

  .step-card {
    display: block;
    min-height: 455px;
  }

  .step-visual {
    height: 240px;
  }

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

  .feature-wide {
    grid-column: auto;
    padding-bottom: 12px;
  }

  .feature {
    min-height: 320px;
    padding: 28px;
  }

  .feature-icon {
    margin-bottom: 40px;
  }

  .aspect-visual {
    min-height: 300px;
  }

  .privacy-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .privacy-lockup {
    flex-direction: column;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 70px 0 90px;
  }

  .final-character {
    width: 320px;
    margin: 0 auto;
  }

  .pantala-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
