:root {
  --bg: #f8fbff;
  --bg-strong: #eef6ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --ink: #0c1733;
  --muted: #5d687d;
  --soft: #e7eef8;
  --line: rgba(112, 132, 164, 0.24);
  --blue: #2f80ed;
  --blue-dark: #1d5ee6;
  --coral: #ff7956;
  --mint: #32c99a;
  --orange: #ff9b46;
  --violet: #7a6af8;
  --teal: #14b6c8;
  --shadow: 0 24px 70px rgba(30, 73, 130, 0.14);
  --shadow-tight: 0 14px 40px rgba(30, 73, 130, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 16%, rgba(47, 128, 237, 0.13), transparent 26rem),
    radial-gradient(circle at 88% 12%, rgba(50, 201, 154, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 40%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 34px rgba(32, 72, 130, 0.08);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(114, 138, 170, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(47, 128, 237, 0.22);
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 28px;
  color: #1d2945;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.78;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue-dark);
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 32px rgba(47, 128, 237, 0.28);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 13px;
}

.button-secondary {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 128, 237, 0.32);
  box-shadow: 0 10px 28px rgba(47, 128, 237, 0.08);
}

.button:hover,
.header-cta:hover,
.store-button:hover,
.gallery-controls button:hover {
  transform: translateY(-2px);
}

.button-icon {
  margin-right: 8px;
  font-size: 18px;
  line-height: 1;
}

.menu-button,
.mobile-menu {
  display: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 48px;
  min-height: min(760px, calc(100vh - 84px));
  padding: 52px 0 34px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.42;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(47, 128, 237, 0.18);
  border-radius: 999px;
  color: #29415f;
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 10px 28px rgba(64, 102, 150, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  perspective: 1400px;
}

.phone-stage {
  position: absolute;
  inset: 18px 0 0;
  transform-style: preserve-3d;
}

.phone-mock {
  position: absolute;
  overflow: hidden;
  margin: 0;
  width: clamp(190px, 23vw, 286px);
  aspect-ratio: 520 / 1015;
  padding: 10px;
  border: 1px solid rgba(17, 39, 75, 0.16);
  border-radius: 38px;
  background: linear-gradient(145deg, #f7fbff, #dce8f8);
  box-shadow: 0 34px 80px rgba(16, 48, 95, 0.22), inset 0 0 0 5px rgba(255, 255, 255, 0.64);
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 76px;
  height: 18px;
  border-radius: 999px;
  background: rgba(11, 19, 39, 0.88);
  transform: translateX(-50%);
}

.phone-mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 29px;
  background: #edf4ff;
}

.phone-main {
  left: 50%;
  top: 26px;
  z-index: 4;
  transform: translateX(-50%) rotateY(-7deg) rotateZ(2deg);
}

.phone-back-left {
  left: 6%;
  top: 78px;
  z-index: 2;
  opacity: 0.94;
  transform: rotateY(18deg) rotateZ(-7deg) scale(0.92);
}

.phone-back-right {
  right: 3%;
  top: 86px;
  z-index: 1;
  opacity: 0.92;
  transform: rotateY(-20deg) rotateZ(6deg) scale(0.9);
}

.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(18px);
}

.float-card strong {
  font-size: 13px;
}

.mini-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  font-weight: 900;
}

.card-tools {
  left: 2%;
  bottom: 20%;
}

.card-study {
  right: 4%;
  bottom: 12%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.why h2,
.coming-panel h2,
.download-panel h2,
.about-panel h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
}

.section-heading p,
.why p,
.coming-panel p,
.download-panel p,
.about-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 550;
}

.features,
.preview,
.use-cases,
.coming-soon,
.download,
.about {
  padding: 72px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.use-case-grid article {
  position: relative;
  overflow: hidden;
  min-height: 228px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.use-case-grid article:hover,
.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(31, 76, 132, 0.18);
  border-color: rgba(47, 128, 237, 0.24);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -52px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  opacity: 0.14;
  background: var(--card-accent);
}

.feature-wide {
  grid-column: span 2;
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--card-accent);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--card-accent) 32%, transparent);
  font-size: 24px;
  font-weight: 900;
}

.feature-card h3,
.use-case-grid h3 {
  margin: 22px 0 8px;
  font-size: 22px;
  line-height: 1.18;
}

.feature-card p,
.use-case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 550;
}

.accent-blue { --card-accent: var(--blue); }
.accent-coral { --card-accent: var(--coral); }
.accent-mint { --card-accent: var(--mint); }
.accent-indigo { --card-accent: #5968e8; }
.accent-orange { --card-accent: var(--orange); }
.accent-teal { --card-accent: var(--teal); }
.accent-violet { --card-accent: var(--violet); }

.why-panel,
.coming-panel,
.download-panel,
.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 38px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(239, 247, 255, 0.72)),
    radial-gradient(circle at 90% 16%, rgba(47, 128, 237, 0.18), transparent 22rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #243856;
  font-size: 16px;
  font-weight: 650;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
}

.study-scene {
  min-height: 420px;
}

.desk-card {
  position: relative;
  height: 420px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 26%, rgba(50, 201, 154, 0.22), transparent 15rem),
    linear-gradient(140deg, #eaf4ff, #ffffff 52%, #edf7ff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 24px 60px rgba(42, 86, 141, 0.13);
}

.student-orbit {
  position: absolute;
  left: 42px;
  top: 58px;
  width: 170px;
  height: 170px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.94), rgba(122, 106, 248, 0.92));
  box-shadow: 0 26px 60px rgba(47, 128, 237, 0.28);
  transform: rotate(-8deg);
}

.student-orbit::before {
  content: "PDF";
  position: absolute;
  right: -18px;
  bottom: 32px;
  display: grid;
  width: 72px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  color: #101b36;
  background: #ff5c80;
  font-weight: 900;
}

.student-orbit::after {
  content: "";
  position: absolute;
  left: 38px;
  top: 44px;
  width: 94px;
  height: 64px;
  border-radius: 14px 14px 9px 9px;
  background: #0d1730;
}

.scene-phone {
  position: absolute;
  right: 48px;
  top: 34px;
  overflow: hidden;
  width: 160px;
  height: 312px;
  padding: 7px;
  border-radius: 31px;
  background: #f4f9ff;
  box-shadow: 0 24px 60px rgba(20, 56, 108, 0.2);
  transform: rotate(8deg);
}

.scene-phone img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.scene-note {
  position: absolute;
  left: 64px;
  right: 54px;
  bottom: 42px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(14px);
}

.scene-note strong,
.scene-note span {
  display: block;
}

.scene-note span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(42, 86, 141, 0.12);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.screenshot-rail {
  display: grid;
  grid-auto-columns: clamp(212px, 24vw, 286px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 128, 237, 0.42) transparent;
}

.screenshot-card {
  scroll-snap-align: start;
  margin: 0;
  padding: 13px 13px 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-tight);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 520 / 1015;
  object-fit: cover;
  border-radius: 22px;
  background: #edf4ff;
  box-shadow: inset 0 0 0 1px rgba(31, 54, 89, 0.08);
}

.screenshot-card span {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.use-case-grid article {
  min-height: 210px;
}

.use-case-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: #2467e8;
  background: rgba(47, 128, 237, 0.1);
  font-size: 12px;
  font-weight: 850;
}

.coming-panel {
  grid-template-columns: minmax(280px, 0.75fr) 1fr;
}

.soon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.soon-list span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  border: 1px solid rgba(47, 128, 237, 0.2);
  border-radius: 16px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.76);
  color: #263a58;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(47, 128, 237, 0.08);
}

.download-panel {
  grid-template-columns: 1fr auto;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 121, 86, 0.16), transparent 18rem),
    linear-gradient(135deg, #eaf4ff, #ffffff);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.store-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 0 18px;
  color: #fff;
  background: #10182e;
  box-shadow: 0 16px 34px rgba(16, 24, 46, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #27d16f, #2f80ed 55%, #ffcf3c);
  font-size: 14px;
}

.store-button span:last-child {
  display: grid;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.05;
}

.store-button small {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.72;
}

.about-panel {
  grid-template-columns: auto 1fr;
}

.about-mark {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 18px 40px rgba(47, 128, 237, 0.24);
  font-size: 30px;
  font-weight: 900;
}

.footer {
  padding: 52px 0 28px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0), #edf5ff);
}

.footer-inner {
  display: flex;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  font-size: 19px;
}

.footer p {
  max-width: 300px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #233650;
  font-size: 14px;
  font-weight: 750;
}

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

.footer-bottom {
  width: min(calc(100% - 40px), var(--max));
  margin: 18px auto 0;
  color: #637086;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  width: min(calc(100% - 40px), 900px);
  margin: 72px auto;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.legal-main h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.06;
}

.legal-main h2 {
  margin: 34px 0 8px;
  font-size: 24px;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  font-size: 17px;
}

.legal-main a {
  color: var(--blue-dark);
  font-weight: 800;
}

.legal-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid rgba(47, 128, 237, 0.18);
  border-radius: 999px;
  color: #2467e8;
  background: rgba(47, 128, 237, 0.08);
  font-size: 13px;
  font-weight: 850;
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 8px;
}

.policy-summary div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(42, 86, 141, 0.08);
}

.policy-summary span,
.policy-summary strong {
  display: block;
}

.policy-summary span {
  color: #637086;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.policy-summary strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 580px;
    order: -1;
  }

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

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

  .use-case-grid article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    width: min(calc(100% - 20px), var(--max));
    border-radius: 22px;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-button {
    justify-self: end;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(47, 128, 237, 0.18);
    border-radius: 14px;
    background: rgba(47, 128, 237, 0.08);
  }

  .menu-button span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .mobile-menu {
    grid-column: 1 / -1;
    gap: 6px;
    padding: 10px 4px 4px;
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(47, 128, 237, 0.07);
    font-weight: 800;
  }

  .section-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    padding: 36px 0 20px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-copy p {
    font-size: 18px;
  }

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

  .phone-mock {
    width: clamp(160px, 43vw, 230px);
    padding: 8px;
    border-radius: 31px;
  }

  .phone-mock img {
    border-radius: 23px;
  }

  .phone-main {
    top: 34px;
  }

  .phone-back-left {
    left: 0;
    top: 110px;
  }

  .phone-back-right {
    right: 0;
    top: 112px;
  }

  .float-card {
    display: none;
  }

  .features,
  .preview,
  .use-cases,
  .coming-soon,
  .download,
  .about {
    padding: 48px 0;
  }

  .feature-grid,
  .why-panel,
  .coming-panel,
  .download-panel,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .feature-wide,
  .use-case-grid article:last-child {
    grid-column: auto;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .why-panel,
  .coming-panel,
  .download-panel,
  .about-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .study-scene,
  .desk-card {
    min-height: 360px;
    height: 360px;
  }

  .scene-phone {
    right: 28px;
    width: 134px;
    height: 262px;
  }

  .student-orbit {
    left: 24px;
    width: 138px;
    height: 138px;
  }

  .scene-note {
    left: 24px;
    right: 24px;
  }

  .soon-list,
  .download-actions {
    justify-content: flex-start;
  }

  .policy-summary {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    width: min(calc(100% - 24px), var(--max));
    padding: 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 18px;
  }

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

  .button,
  .store-button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

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

  .feature-card,
  .use-case-grid article {
    min-height: 0;
  }

  .screenshot-rail {
    grid-auto-columns: 72%;
  }
}

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