:root {
  --ink-base: #1d1f29;
  --ink-base: oklch(20% 0.02 260);
  --ink-surface: #252731;
  --ink-surface: oklch(24% 0.02 260);
  --ink-surface-2: #2e303a;
  --ink-surface-2: oklch(28% 0.02 260);
  --ink-amber: #e4a568;
  --ink-amber: oklch(72% 0.1 60);
  --ink-amber-hover: #f0b978;
  --ink-amber-hover: oklch(78% 0.1 60);
  --ink-cream: #f3ebda;
  --ink-cream: oklch(95% 0.02 90);
  --ink-muted: #a4a6b1;
  --ink-muted: oklch(70% 0.015 260);
  --ink-dim: #6c6e78;
  --ink-dim: oklch(50% 0.012 260);
  --ink-line: #383a43;
  --ink-line: oklch(32% 0.015 260);
  --shadow-heavy: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --shell: 1200px;
  --gutter: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink-base);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--ink-base);
  color: var(--ink-cream);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--ink-amber);
  color: var(--ink-base);
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--ink-amber);
  outline-offset: 4px;
}

.shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

section[id],
main[id],
article[id] {
  scroll-margin-top: 92px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--ink-line);
  background: rgba(29, 31, 41, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
}

.nav-inner {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink-cream);
  text-decoration: none;
  white-space: nowrap;
}

.logo-mono {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
}

.logo-bracket {
  color: var(--ink-amber);
}

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

.nav-links a {
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

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

.hero {
  position: relative;
  min-height: 620px;
  padding-top: 120px;
  padding-bottom: 100px;
}

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

.hero-eyebrow svg,
.button svg {
  flex: 0 0 auto;
}

.hero-eyebrow path,
.button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink-cream);
  font-size: 84px;
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-copy {
  max-width: 660px;
  margin: 32px 0 0;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--ink-amber);
  color: var(--ink-base);
}

.button-primary:hover {
  background: var(--ink-amber-hover);
}

.button-secondary {
  border: 1px solid var(--ink-line);
  color: var(--ink-cream);
}

.button-secondary:hover {
  border-color: var(--ink-amber);
}

.hero-stamp {
  position: absolute;
  right: var(--gutter);
  bottom: 24px;
  display: flex;
  flex-direction: column;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
  text-align: right;
}

.eyebrow,
.mono-tag {
  margin: 0;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.accent,
.mono-tag {
  color: var(--ink-amber);
}

.philosophy {
  padding-top: 80px;
  padding-bottom: 80px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 18px;
}

.principle {
  border-top: 1px solid var(--ink-line);
  padding: 24px 24px 24px 0;
}

.principle h2 {
  margin: 12px 0 10px;
  color: var(--ink-cream);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.principle p:last-child {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
}

.pricing {
  padding-top: 20px;
  padding-bottom: 80px;
}

.bracket-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-line);
  border-radius: 18px;
  background: var(--ink-surface);
}

.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  background: var(--ink-amber);
}

.corner-tl {
  top: 18px;
  left: 18px;
}

.corner-tl::before {
  top: 0;
  left: 0;
  width: 2px;
  height: 22px;
}

.corner-tl::after {
  top: 0;
  left: 0;
  width: 22px;
  height: 2px;
}

.corner-br {
  right: 18px;
  bottom: 18px;
}

.corner-br::before {
  right: 0;
  bottom: 0;
  width: 2px;
  height: 22px;
}

.corner-br::after {
  right: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
}

.pricing-card {
  padding: 48px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.section-intro h2,
.apps-header h2,
.support h2 {
  margin: 14px 0 18px;
  color: var(--ink-cream);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  text-wrap: balance;
}

.section-intro p:last-child,
.support .section-intro > p:last-of-type {
  max-width: 360px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 168px;
  border: 1px solid var(--ink-line);
  border-radius: 12px;
  background: var(--ink-surface-2);
  padding: 20px;
}

.mini-card h3,
.feature-grid h3 {
  margin: 0;
  color: var(--ink-cream);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.mini-card p:last-child {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.apps-header {
  padding-top: 60px;
  padding-bottom: 24px;
}

.apps-header h2 {
  max-width: 800px;
  margin: 14px 0 0;
  font-size: 56px;
}

.camstamp {
  padding-top: 40px;
  padding-bottom: 80px;
}

.showcase-card {
  padding: 56px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 56px;
  align-items: center;
}

.showcase-copy > h3 {
  max-width: 540px;
  margin: 0 0 18px;
  color: var(--ink-cream);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.showcase-copy > p {
  max-width: 520px;
  margin: 0 0 12px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.55;
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.showcase-copy .app-title-row {
  margin-bottom: 22px;
}

.app-title-row h2 {
  margin: 4px 0 0;
  color: var(--ink-cream);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.app-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  overflow: hidden;
  border-radius: 22.37%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px -6px rgba(0, 0, 0, 0.25);
}

.app-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.camstamp-icon rect {
  fill: var(--ink-base);
}

.camstamp-icon path {
  fill: none;
  stroke: var(--ink-amber);
  stroke-width: 10;
  stroke-linecap: square;
}

.camstamp-icon text {
  fill: var(--ink-cream);
  font-family: var(--font-mono);
  font-size: 54px;
  font-weight: 700;
  text-anchor: middle;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  background: var(--ink-surface-2);
  padding: 6px 12px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.status-pill,
.stage-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  background: var(--ink-surface-2);
  padding: 10px 16px;
  color: var(--ink-cream);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ink-amber);
  box-shadow: 0 0 12px var(--ink-amber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.phone {
  width: 280px;
  height: 580px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2a2c36, #1a1c24);
  padding: 8px;
  box-shadow: var(--shadow-heavy), 0 0 0 1px oklch(35% 0.015 260);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 42px;
  background: var(--ink-base);
}

.camera-scene {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 235, 218, 0.08), rgba(243, 235, 218, 0) 34%),
    linear-gradient(160deg, oklch(60% 0.08 230) 0%, oklch(40% 0.05 240) 35%, oklch(28% 0.04 260) 70%, oklch(22% 0.02 260) 100%);
}

.camera-scene::after {
  content: "";
  position: absolute;
  top: 58%;
  right: 0;
  left: 0;
  height: 1px;
  background: oklch(40% 0.04 240);
}

.skyline {
  position: absolute;
  right: 0;
  bottom: 20%;
  left: 0;
  width: 100%;
  height: 40%;
}

.skyline path {
  fill: oklch(15% 0.02 250);
}

.phone-status {
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.recording {
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.85;
}

.recording::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50%;
  background: #fff;
  vertical-align: 1px;
}

.notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 110px;
  height: 32px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
}

.glass-controls {
  position: absolute;
  top: 64px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
}

.glass-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(20, 22, 28, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.glass-button svg {
  width: 16px;
  height: 16px;
}

.glass-button path,
.glass-button circle {
  fill: none;
  stroke: #fff;
  stroke-width: 1.4;
}

.glass-button:first-child path {
  fill: #fff;
  stroke: none;
}

.photo-stamp {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 130px;
  border-radius: 2px;
  background: rgba(20, 22, 28, 0.42);
  padding: 10px 14px;
  color: var(--ink-cream);
  font-family: var(--font-mono);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.photo-stamp strong,
.photo-stamp em {
  display: block;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
}

.photo-stamp strong {
  font-size: 11px;
}

.photo-stamp em {
  margin-top: 1px;
  color: var(--ink-amber);
  font-size: 8px;
  line-height: 1.2;
}

.stamp-corner {
  position: absolute;
  width: 14px;
  height: 14px;
}

.stamp-corner::before,
.stamp-corner::after {
  content: "";
  position: absolute;
  background: var(--ink-amber);
}

.stamp-corner-tl {
  top: 4px;
  left: 4px;
}

.stamp-corner-tl::before {
  top: 0;
  left: 0;
  width: 2px;
  height: 14px;
}

.stamp-corner-tl::after {
  top: 0;
  left: 0;
  width: 14px;
  height: 2px;
}

.stamp-corner-br {
  right: 4px;
  bottom: 4px;
}

.stamp-corner-br::before {
  right: 0;
  bottom: 0;
  width: 2px;
  height: 14px;
}

.stamp-corner-br::after {
  right: 0;
  bottom: 0;
  width: 14px;
  height: 2px;
}

.capture-button {
  position: absolute;
  bottom: 110px;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translateX(-50%);
  border: 3px solid var(--ink-cream);
  border-radius: 999px;
  padding: 4px;
}

.capture-button span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--ink-cream);
}

.tab-bar {
  position: absolute;
  right: 18px;
  bottom: 22px;
  left: 18px;
  display: flex;
  justify-content: space-around;
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(20, 22, 28, 0.55);
  padding: 8px 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}

.tab-item {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
  padding: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  font-weight: 500;
}

.tab-item svg {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  padding: 4px 12px;
}

.tab-item path,
.tab-item circle,
.tab-item rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: square;
}

.tab-item.active {
  color: var(--ink-amber);
}

.tab-item.active svg {
  color: var(--ink-base);
  background: var(--ink-amber);
}

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

.feature-grid article,
.future-card,
.legal-card {
  border: 1px solid var(--ink-line);
  border-radius: 14px;
  background: var(--ink-surface);
}

.feature-grid article {
  padding: 22px;
}

.feature-grid .eyebrow {
  margin-bottom: 10px;
}

.feature-grid p:last-child {
  margin: 6px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.5;
}

.future-apps {
  padding-top: 32px;
  padding-bottom: 80px;
}

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

.future-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  padding: 28px;
}

.placeholder-icon rect:first-child {
  fill: var(--ink-surface);
}

.placeholder-icon .dash {
  fill: none;
  stroke: var(--ink-line);
  stroke-dasharray: 6 6;
  stroke-width: 2;
}

.placeholder-icon text {
  fill: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 700;
  text-anchor: middle;
}

.future-card > p {
  flex: 1;
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
}

.stage-pill {
  align-self: flex-start;
  gap: 8px;
  padding: 6px 12px;
  color: var(--ink-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.stage-pill span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ink-dim);
}

.support {
  padding-top: 60px;
  padding-bottom: 80px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 56px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--ink-line);
  border-radius: 12px;
  background: var(--ink-surface);
  padding: 14px 16px;
  text-decoration: none;
}

.contact-row span,
.effective,
.legal-sections h3,
.footer h2 {
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--ink-cream);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-align: right;
  overflow-wrap: anywhere;
}

a.contact-row strong {
  color: var(--ink-amber);
}

.faq-column > .eyebrow {
  margin-bottom: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--ink-line);
}

.faq-item button {
  all: unset;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 4px;
  cursor: pointer;
}

.faq-item button span {
  color: var(--ink-cream);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  text-wrap: balance;
}

.faq-item button strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color 160ms ease, border-color 160ms ease;
}

.faq-item.is-open button strong {
  border-color: var(--ink-amber);
  color: var(--ink-amber);
}

.faq-answer {
  display: none;
  max-width: 640px;
  padding: 0 4px 22px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}

.legal {
  padding-top: 60px;
  padding-bottom: 80px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.legal-card {
  padding: 32px;
}

.effective {
  margin: 6px 0 16px;
}

.legal-lead {
  margin: 0 0 24px;
  color: var(--ink-cream);
  font-size: 16px;
  line-height: 1.55;
}

.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-sections section {
  margin: 0;
}

.legal-sections h3 {
  margin: 0 0 8px;
  color: var(--ink-amber);
}

.legal-sections p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--ink-line);
  padding-top: 48px;
  padding-bottom: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer p {
  max-width: 260px;
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer h2 {
  margin: 0 0 14px;
  font-size: 10px;
}

.footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer nav a {
  color: var(--ink-cream);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--ink-line);
  padding-top: 24px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero {
    min-height: 560px;
    padding-top: 96px;
  }

  .hero h1 {
    font-size: 64px;
  }

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

  .split-grid,
  .showcase-grid,
  .support-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .section-intro h2,
  .apps-header h2,
  .support h2 {
    font-size: 42px;
  }

  .section-intro p:last-child,
  .support .section-intro > p:last-of-type {
    max-width: 640px;
  }

  .showcase-copy > h3 {
    font-size: 38px;
  }

  .phone-wrap {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
  }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a:first-child {
    margin-left: -10px;
  }

  section[id],
  main[id],
  article[id] {
    scroll-margin-top: 118px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-stamp {
    position: static;
    margin-top: 42px;
    text-align: left;
  }

  .philosophy,
  .pricing,
  .camstamp,
  .future-apps,
  .support,
  .legal {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .pricing-card,
  .showcase-card {
    padding: 32px 24px;
  }

  .principle-grid,
  .promise-grid,
  .future-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-intro h2,
  .apps-header h2,
  .support h2 {
    font-size: 34px;
  }

  .apps-header h2 {
    font-size: 38px;
  }

  .showcase-copy > h3 {
    font-size: 30px;
  }

  .phone {
    width: min(280px, calc(100vw - 80px));
    height: auto;
    aspect-ratio: 280 / 580;
    border-radius: 18%;
  }

  .phone-screen {
    border-radius: 15%;
  }

  .tab-item small {
    display: none;
  }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-row strong {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 40px;
  }

  .button {
    width: 100%;
  }

  .tag-row span,
  .status-pill {
    max-width: 100%;
  }

  .status-pill {
    align-items: flex-start;
    border-radius: 18px;
  }

  .photo-stamp {
    right: 10px;
    bottom: 10px;
    min-width: 112px;
    padding: 8px 12px;
  }

  .photo-stamp strong {
    font-size: 9px;
  }

  .photo-stamp em {
    font-size: 7px;
  }
}

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