:root {
  --teal: #00897b;
  --teal-dark: #00695c;
  --teal-light: #4db6ac;
  --navy: #0b1f3a;
  --bg: #f5f7fa;
  --surface: #ffffff;
  --text: #1c1c1c;
  --muted: #6b7280;
  --border: #e5e7eb;
  --border-strong: #d7dbe3;
  --shadow-1: 0 1px 2px rgba(11, 31, 58, 0.04), 0 1px 1px rgba(11, 31, 58, 0.03);
  --shadow-2: 0 4px 16px rgba(11, 31, 58, 0.06), 0 1px 2px rgba(11, 31, 58, 0.04);
  --shadow-3: 0 24px 60px -20px rgba(11, 31, 58, 0.18), 0 2px 8px rgba(11, 31, 58, 0.06);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--teal-dark);
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(40px, 6.2vw, 76px);
  font-weight: 650;
}

h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 650;
}

h3 {
  font-size: 22px;
  font-weight: 650;
}

h4 {
  font-size: 16px;
  font-weight: 650;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 28px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.mono,
.overline,
.meta-k,
.store-pre,
.footer-bottom .domain {
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  letter-spacing: 0;
}

.overline {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 247, 250, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 650;
}

.logo-mark {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-weight: 550;
  transition: background 120ms ease, color 120ms ease;
}

.nav-links a:hover {
  color: var(--navy);
  background: rgba(11, 31, 58, 0.04);
}

.nav-links a.active {
  color: var(--navy);
  background: rgba(0, 137, 123, 0.08);
}

.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero::before,
.gl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 25% 30%, rgba(0, 137, 123, 0.12), transparent 70%),
    radial-gradient(40% 40% at 80% 10%, rgba(77, 182, 172, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-inner,
.gl-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: var(--surface);
  font-size: 13px;
  font-weight: 550;
}

.hero h1 {
  margin: 22px 0 18px;
}

.hero-sub {
  max-width: 550px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: var(--teal);
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.btn:hover {
  color: #fff;
  background: var(--teal-dark);
}

.btn:active {
  transform: translateY(1px);
}

.btn.ghost {
  color: var(--navy);
  background: transparent;
  border-color: var(--border-strong);
}

.btn.ghost:hover {
  color: var(--navy);
  background: rgba(11, 31, 58, 0.04);
  border-color: #bfc6d2;
}

.btn.quiet {
  min-height: auto;
  padding: 0;
  color: var(--navy);
  background: transparent;
}

.btn.quiet:hover {
  color: var(--teal);
  background: transparent;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-k {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-v {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.hero-visual,
.gl-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
}

.device-stack .shot {
  position: absolute;
}

.device-stack .shot:first-child {
  left: 6%;
  top: 12%;
  z-index: 1;
  width: 56%;
  opacity: 0.52;
  transform: rotate(-4deg);
}

.device-stack .shot:last-child {
  right: 4%;
  top: 4%;
  z-index: 2;
  width: 64%;
}

.hero-rotator {
  position: relative;
  width: min(72%, 380px);
  min-height: 520px;
}

.hero-rotator-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero-rotator-item.is-active {
  opacity: 1;
  transform: none;
}

.hero-rotator-item img {
  max-height: 520px;
  object-fit: contain;
}

.section {
  padding: 88px 0;
}

.section + .section {
  padding-top: 0;
}

.section.surface {
  background: var(--surface);
}

.section.tinted {
  background: linear-gradient(180deg, rgba(0, 137, 123, 0.035), rgba(0, 137, 123, 0));
}

.featured-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-2);
}

.featured-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.025), transparent);
  pointer-events: none;
}

.featured-panel > * {
  position: relative;
  z-index: 1;
}

.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-tag::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal-dark);
}

.featured-desc {
  max-width: 460px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.featured-visual {
  display: flex;
  justify-content: center;
}

.featured-visual .shot {
  width: 80%;
  max-width: 280px;
}

.featured-phone-mockup {
  width: min(80%, 320px);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-head .head-text {
  max-width: 650px;
}

.section-head h2 {
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.app-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.app-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}

.app-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 28px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0, 137, 123, 0.07), rgba(0, 137, 123, 0.02));
}

.app-card-visual .shot {
  width: 70%;
  max-width: 200px;
}

.app-card-icon {
  display: block;
  width: 112px;
  height: 112px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.18), 0 1px 2px rgba(11, 31, 58, 0.08);
}

.app-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 26px 28px;
}

.app-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.app-card-body p {
  color: var(--muted);
}

.app-card-actions {
  margin-top: 12px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  transition: gap 120ms ease, color 120ms ease;
}

.link-arrow:hover {
  gap: 10px;
  color: var(--teal-dark);
}

.app-card-empty {
  border-style: dashed;
  border-color: var(--border-strong);
  background: transparent;
}

.app-card-empty:hover {
  box-shadow: none;
  transform: none;
}

.empty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  height: 200px;
  gap: 1px;
  border-bottom: 1px solid var(--border);
  background: var(--border);
}

.empty-grid span {
  background: linear-gradient(180deg, #fafbfc, #f5f7fa);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 8px;
  border: 1px solid rgba(0, 137, 123, 0.16);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(0, 137, 123, 0.08);
  font-size: 12px;
  font-weight: 600;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 30px 60px -30px rgba(11, 31, 58, 0.5),
    0 8px 24px -12px rgba(11, 31, 58, 0.3);
}

.shot::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 22px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 12px),
    linear-gradient(180deg, #102849, #0b1f3a);
}

.shot.phone {
  aspect-ratio: 9 / 19.5;
}

.shot.wide {
  aspect-ratio: 4 / 3;
}

.shot-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.shot.phone::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 30%;
  height: 22px;
  border-radius: 12px;
  background: #000;
  transform: translateX(-50%);
}

.shot-bar {
  position: absolute;
  bottom: 9px;
  left: 50%;
  z-index: 3;
  width: 35%;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(-50%);
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.principles,
.features-grid,
.contact-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--border);
}

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

.principle,
.feature,
.contact-list .item {
  background: var(--surface);
}

.principle {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
}

.num {
  color: var(--muted);
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.principle p,
.feature p,
.contact-list .item .v {
  color: var(--muted);
  font-size: 14px;
}

.founder-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  font-size: 12px;
  font-weight: 700;
}

.page-hero,
.apps-hero,
.about-hero,
.contact-hero,
.privacy-hero {
  max-width: 790px;
  padding: 96px 0 56px;
}

.page-hero h1,
.apps-hero h1,
.about-hero h1,
.contact-hero h1,
.privacy-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 5vw, 64px);
}

.privacy-date {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.gl-hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
}

.gl-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(40px, 5vw, 64px);
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 16px 0 18px;
}

.app-title-row h1 {
  margin: 0;
}

.app-detail-icon {
  display: block;
  width: 82px;
  height: 82px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.18), 0 1px 2px rgba(11, 31, 58, 0.08);
  flex-shrink: 0;
}

.gl-hero .sub {
  max-width: 470px;
  color: var(--muted);
  font-size: 18px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.app-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  padding: 10px 18px 10px 14px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  opacity: 0.85;
  cursor: not-allowed;
}

a.store-btn {
  cursor: pointer;
  opacity: 1;
}

.store-glyph {
  display: inline-flex;
  color: currentColor;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-pre {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.store-name {
  margin-top: 1px;
  font-size: 15px;
  font-weight: 700;
}

.gl-hero-visual .shot {
  width: 70%;
  max-width: 280px;
}

.phone-mockup {
  margin: 0;
}

.phone-mockup img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 42px rgba(11, 31, 58, 0.18));
}

.hero-phone-mockup {
  width: min(72%, 360px);
}

.gallery-phone-mockup {
  width: 100%;
}

.two-col,
.gl-overview,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.two-col p,
.gl-overview p,
.about-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 0;
  background: var(--surface);
}

.feature {
  display: flex;
  min-height: 200px;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 160ms ease;
}

.feature:hover {
  background: #fcfdfe;
}

.feature h4 {
  color: var(--teal-dark);
}

.shots-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-inline: calc((100vw - min(1200px, 100vw)) / -2);
  padding: 4px max(28px, calc((100vw - min(1200px, 100vw)) / 2 + 28px)) 28px;
  scroll-padding-inline: max(28px, calc((100vw - min(1200px, 100vw)) / 2 + 28px));
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.shots-row > * {
  flex: 0 0 clamp(230px, 23vw, 310px);
  scroll-snap-align: start;
}

.shots-row::-webkit-scrollbar {
  height: 10px;
}

.shots-row::-webkit-scrollbar-track {
  background: transparent;
}

.shots-row::-webkit-scrollbar-thumb {
  border: 3px solid var(--bg);
  border-radius: 999px;
  background: rgba(11, 31, 58, 0.18);
}

.shots-row::-webkit-scrollbar-thumb:hover {
  background: rgba(11, 31, 58, 0.28);
}

.release-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 36px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.release-block h3 {
  margin-bottom: 8px;
}

.release-block p {
  color: var(--muted);
}

.legal-note {
  margin-top: 14px;
  font-size: 14px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 92px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-1);
}

.privacy-summary dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.privacy-summary dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.privacy-summary dd {
  margin: 3px 0 0;
  color: var(--navy);
  font-weight: 650;
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.privacy-content section {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.privacy-content h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.privacy-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.privacy-content p + p {
  margin-top: 12px;
}

.about-grid {
  grid-template-columns: 280px 1fr;
  gap: 64px;
}

.about-grid h2 {
  font-size: 22px;
}

.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.founder-card .avatar {
  width: 56px;
  height: 56px;
  font-size: 18px;
}

.who-name {
  color: var(--navy);
  font-weight: 650;
}

.who-role {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.who-quote {
  margin-top: 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.contact-card {
  margin-top: 16px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.contact-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 28px;
}

.contact-list .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
}

.contact-list .k {
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
}

.contact-list .v {
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-list .email-value {
  color: var(--teal);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding: 56px 28px 32px;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 12px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-cols a,
.footer-cols span {
  display: block;
  padding: 4px 0;
  color: var(--text);
  font-size: 14px;
}

.footer-cols a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
}

.page-enter {
  animation: pageIn 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 880px) {
  .hero,
  .gl-hero {
    padding: 56px 0 48px;
  }

  .hero-inner,
  .gl-hero-inner,
  .featured-panel,
  .philosophy,
  .two-col,
  .gl-overview,
  .about-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    position: static;
  }

  .hero-inner,
  .gl-hero-inner {
    gap: 48px;
  }

  .section {
    padding: 64px 0;
  }

  .featured-panel {
    padding: 32px;
    gap: 32px;
  }

  .featured-visual {
    order: -1;
  }

  .hero-rotator {
    min-height: 440px;
  }

  .hero-rotator-item img {
    max-height: 440px;
  }

  .principles,
  .release-block {
    grid-template-columns: 1fr;
  }

  .shots-row > * {
    flex-basis: clamp(220px, 42vw, 290px);
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-inline: 20px;
  }

  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 20px;
  }

  .founder-card {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .actions,
  .store-row,
  .featured-actions {
    flex-direction: column;
  }

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

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

  .shots-row {
    margin-inline: -20px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .shots-row > * {
    flex-basis: min(78vw, 300px);
  }

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

  .hero-rotator {
    width: min(86%, 320px);
    min-height: 420px;
  }

  .hero-rotator-item img {
    max-height: 420px;
  }
}
