:root {
  --bg: #f4f8ff;
  --bg-alt: #ecf3ff;
  --surface: rgba(248, 251, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: #07111f;
  --text: #0d1726;
  --muted: #516076;
  --line: rgba(13, 23, 38, 0.12);
  --line-bright: rgba(255, 255, 255, 0.16);
  --brand: #0d5eff;
  --brand-2: #18c4d8;
  --brand-3: #7a5cff;
  --sun: #ff8359;
  --shadow: 0 22px 70px rgba(31, 50, 81, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #edf4ff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 23, 38, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 23, 38, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 82%);
}

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

a {
  color: inherit;
}

.page-shell {
  position: relative;
  z-index: 2;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 20;
  padding-top: 0.8rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(251, 253, 255, 0.86);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
}

.brand-wordmark {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.85rem, 2.4vw, 2.45rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.brand-icon {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 0.95rem;
  box-shadow: 0 14px 28px rgba(13, 94, 255, 0.22);
  flex: 0 0 auto;
}

.brand-lockup {
  display: grid;
  gap: 0.12rem;
}

.brand-subline {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wordmark-inline {
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--brand);
}

.hero-section {
  position: relative;
  padding: 4.8rem 0 2.5rem;
}

.hero-grid,
.split-layout,
.app-hero-grid,
.app-detail-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  position: relative;
  padding: 2rem 2rem 2rem 0;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -2.1rem -1rem -2rem -2rem;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(249, 252, 255, 0.92), rgba(241, 247, 255, 0.72) 58%, rgba(235, 243, 255, 0.28) 100%),
    radial-gradient(circle at top left, rgba(24, 196, 216, 0.12), rgba(24, 196, 216, 0) 42%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 24px 70px rgba(15, 31, 58, 0.12);
  backdrop-filter: blur(12px);
  z-index: -1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: 1.42rem;
}

p,
li {
  line-height: 1.7;
}

.hero-lead,
.section-header p,
.product-card-body p,
.split-copy p,
.about-card p,
.feature-card p,
.app-panel p,
.legal-content p,
.legal-content li,
.footer-copy,
.craft-grid p,
.app-summary p {
  color: var(--muted);
}

.hero-actions,
.hero-metrics,
.app-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions,
.app-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-3) 68%, var(--sun));
  box-shadow: 0 16px 35px rgba(13, 94, 255, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.64);
  border-color: var(--line);
}

.button-store {
  color: white;
  background: #111827;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
}

.metric-chip,
.floating-card,
.product-card,
.feature-card,
.about-card,
.hero-panel,
.app-panel,
.legal-card,
.craft-card-panel,
.support-strip,
.screenshot-shell,
.icon-shell {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-metrics {
  margin-top: 2rem;
}

.metric-chip {
  min-width: 10rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
}

.metric-chip strong {
  display: block;
  font-size: 1.3rem;
}

.metric-chip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 32rem;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-backdrop-photo,
.site-backdrop-vignette,
.site-backdrop-glow {
  position: absolute;
}

.site-backdrop-photo {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.40) 0%, rgba(223, 235, 250, 0.26) 24%, rgba(177, 198, 224, 0.12) 44%, rgba(18, 29, 44, 0.22) 100%),
    radial-gradient(circle at 86% 8%, rgba(122, 92, 255, 0.16), rgba(122, 92, 255, 0) 24%),
    radial-gradient(circle at 14% 11%, rgba(24, 196, 216, 0.18), rgba(24, 196, 216, 0) 30%),
    radial-gradient(circle at 18% 30%, rgba(246, 250, 255, 0.46), rgba(246, 250, 255, 0) 34%),
    url("../images/company/volcano-background.png");
  background-size: cover;
  background-position: center top;
  transform: scale(1.02);
}

.site-backdrop-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, rgba(39, 53, 73, 0) 34%, rgba(52, 68, 91, 0.10) 48%, rgba(36, 49, 69, 0.26) 62%, rgba(24, 34, 49, 0.42) 76%, rgba(16, 25, 37, 0.56) 100%);
  mask-image: linear-gradient(180deg, black 0%, black 54%, transparent 92%);
}

.site-backdrop-vignette {
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0) 26%, rgba(12, 20, 34, 0.08) 72%, rgba(8, 13, 24, 0.2) 100%);
}

.site-backdrop-glow {
  border-radius: 50%;
  filter: blur(8px);
}

.site-backdrop-glow-left {
  inset: 4rem auto auto -8rem;
  width: 30rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(24, 196, 216, 0.28), rgba(24, 196, 216, 0));
}

.site-backdrop-glow-right {
  inset: 5rem -6rem auto auto;
  width: 28rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.24), rgba(122, 92, 255, 0));
}

.panel-stack {
  position: relative;
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(24, 196, 216, 0.14), transparent 30%),
    radial-gradient(circle at left center, rgba(122, 92, 255, 0.14), transparent 26%),
    linear-gradient(160deg, rgba(250, 252, 255, 0.82), rgba(238, 244, 255, 0.72));
}

.floating-card {
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
}

.software-card {
  margin-left: 0;
}

.craft-card {
  margin-left: 2.5rem;
}

.support-card {
  margin-left: 1.2rem;
}

.pill,
.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(13, 94, 255, 0.10);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}

.section {
  padding: 4.5rem 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(227, 238, 255, 0.52));
}

.section-header {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.product-grid,
.feature-columns,
.about-grid,
.craft-grid,
.app-detail-grid {
  display: grid;
  gap: 1.25rem;
}

.product-grid,
.about-grid,
.craft-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-card,
.about-card,
.feature-card,
.craft-card-panel,
.legal-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.product-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(160deg, #f3f8ff, #dbe9ff);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-focus {
  display: grid;
  place-items: center;
  padding: 2rem;
}

.icon-focus img {
  width: min(100%, 18rem);
  height: auto;
  object-fit: contain;
}

.dark-panel {
  background: #02060d;
}

.product-card-body,
.about-card,
.feature-card,
.craft-card-panel,
.legal-card,
.app-panel {
  padding: 1.5rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.split-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

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

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: rgba(249, 252, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.page-intro {
  padding: 3.4rem 0 1.2rem;
}

.breadcrumb {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.app-hero-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-bottom: 2.5rem;
}

.app-summary {
  max-width: 38rem;
}

.app-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
}

.app-visual {
  position: relative;
}

.screenshot-shell,
.icon-shell,
.support-strip {
  border-radius: var(--radius-xl);
}

.screenshot-shell {
  overflow: hidden;
}

.screenshot-shell img {
  width: 100%;
  height: auto;
}

.icon-shell {
  display: grid;
  place-items: center;
  padding: 2rem;
}

.icon-shell img {
  width: min(100%, 17rem);
  border-radius: 26px;
}

.app-detail-grid {
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 4rem;
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1.8rem;
}

.support-strip p {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  max-width: 54rem;
}

.legal-content h2 {
  margin-top: 2.4rem;
  font-size: 1.75rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-meta {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.craft-grid .craft-card-panel {
  min-height: 100%;
}

.theme-jpi {
  background:
    radial-gradient(circle at top left, rgba(255, 131, 89, 0.24), transparent 30%),
    radial-gradient(circle at top right, rgba(214, 40, 40, 0.22), transparent 28%),
    linear-gradient(180deg, #0a0d15 0%, #121623 48%, #16121f 100%);
  color: #f8fbff;
}

.theme-jpi .site-nav a,
.theme-jpi .footer-links a,
.theme-jpi .footer-copy,
.theme-jpi .hero-lead,
.theme-jpi .section-header p,
.theme-jpi .app-panel p,
.theme-jpi .support-strip p,
.theme-jpi .legal-content p,
.theme-jpi .legal-content li,
.theme-jpi .breadcrumb,
.theme-jpi .breadcrumb a {
  color: rgba(248, 251, 255, 0.76);
}

.theme-jpi .nav-wrap,
.theme-jpi .footer-grid,
.theme-jpi .app-panel,
.theme-jpi .icon-shell,
.theme-jpi .screenshot-shell,
.theme-jpi .support-strip {
  background: rgba(18, 20, 33, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.theme-jpi .alt-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 119, 54, 0.05));
}

.theme-jpi .brand-subline,
.theme-clock .brand-subline {
  color: rgba(248, 251, 255, 0.62);
}

.theme-jpi .button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.theme-meditate {
  background:
    radial-gradient(circle at top left, rgba(45, 104, 133, 0.24), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(91, 40, 121, 0.18), transparent 24%),
    linear-gradient(180deg, #f9fcfd 0%, #eaf5f8 52%, #f6fbff 100%);
}

.jpi-page-intro {
  padding-bottom: 2.4rem;
}

.jpi-hero-layout,
.jpi-feature-grid,
.jpi-tool-grid,
.jpi-character-grid,
.jpi-summary-grid {
  display: grid;
  gap: 1.5rem;
}

.jpi-hero-layout,
.jpi-feature-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.jpi-hero-layout {
  margin-top: 0.7rem;
}

.jpi-hero-copy {
  padding: 1.6rem 0;
}

.jpi-hero-media {
  position: relative;
}

.jpi-hero-media::before {
  content: "";
  position: absolute;
  inset: -1.5rem -1.2rem auto auto;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 119, 54, 0.28), rgba(255, 119, 54, 0));
  filter: blur(12px);
  pointer-events: none;
}

.jpi-hero-image {
  width: 100%;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.jpi-summary-grid,
.jpi-tool-grid,
.jpi-character-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.jpi-character-grid {
  margin-top: 1.75rem;
}

.jpi-feature-grid-reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.jpi-device-cluster {
  position: relative;
  min-height: 23rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 132, 0, 0.22), transparent 28%),
    radial-gradient(circle at left center, rgba(255, 73, 0, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(20, 17, 28, 0.9), rgba(10, 11, 19, 0.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.jpi-device {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
}

.jpi-device-phone {
  width: min(12rem, 30vw);
  padding: 0.62rem;
  border-radius: 2.15rem;
  background: linear-gradient(180deg, #343640, #111218 64%);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 -4px 10px rgba(0, 0, 0, 0.34);
}

.jpi-device-phone::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1rem;
  border-radius: 0 0 1rem 1rem;
  background: linear-gradient(180deg, #08090d, #111219);
  z-index: 2;
}

.jpi-device-phone::after {
  content: "";
  position: absolute;
  right: -0.2rem;
  top: 6.2rem;
  width: 0.18rem;
  height: 3.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(101, 104, 115, 0.95), rgba(53, 56, 64, 0.95));
}

.jpi-device-watch {
  width: 7.4rem;
  padding: 0.55rem;
  border-radius: 1.95rem;
  background: linear-gradient(180deg, #353740, #121319 65%);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.44),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.jpi-device-watch::before,
.jpi-device-watch::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2.5rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #2d2f36, #111217);
  z-index: -1;
}

.jpi-device-watch::before {
  top: -1.9rem;
}

.jpi-device-watch::after {
  bottom: -1.9rem;
}

.jpi-device-watch .jpi-device-screen::before {
  content: "";
  position: absolute;
  right: -0.42rem;
  top: 50%;
  width: 0.45rem;
  height: 1.35rem;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #5f626d, #2e313b);
  box-shadow: 0 0 0 0.08rem rgba(18, 19, 25, 0.7);
}

.jpi-device-watch .jpi-device-screen::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  top: 46%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 35% 35%, #8e92a0, #363944 70%);
  box-shadow: 0 0 0 0.08rem rgba(18, 19, 25, 0.7);
}

.jpi-device-screen {
  position: relative;
  overflow: hidden;
  border-radius: 1.62rem;
  background: #050507;
}

.jpi-device-watch .jpi-device-screen {
  border-radius: 1.45rem;
}

.jpi-device-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.jpi-device-tilt-left {
  transform: rotate(-8deg) translateY(0.4rem);
}

.jpi-device-tilt-right {
  margin-left: -2.2rem;
  transform: rotate(7deg) translateY(-0.45rem);
}

.jpi-watch-float {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
}

.jpi-tool-copy {
  margin-bottom: 1.2rem;
}

.jpi-tool-device {
  width: min(10.8rem, 100%);
  margin-inline: auto;
}

.jpi-pr-stack {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 20rem;
}

.jpi-art-badge {
  position: absolute;
  right: 0.25rem;
  bottom: -0.5rem;
  width: 6.5rem;
  padding: 0.35rem;
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(30, 17, 25, 0.9), rgba(14, 10, 17, 0.94));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.jpi-art-badge img {
  width: 100%;
  border-radius: 1.1rem;
}

.jpi-character-card {
  text-align: center;
}

.jpi-character-media {
  width: min(100%, 15rem);
  margin: 0 auto 1rem;
  padding: 0.75rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(31, 22, 31, 0.86), rgba(12, 11, 18, 0.92));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.jpi-character-media img {
  width: 100%;
  border-radius: 1.5rem;
}

.theme-clock {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #080808 100%);
  color: #f7f7f7;
}

.theme-clock .site-nav a,
.theme-clock .footer-links a,
.theme-clock .footer-copy,
.theme-clock .hero-lead,
.theme-clock .section-header p,
.theme-clock .app-panel p,
.theme-clock .support-strip p,
.theme-clock .breadcrumb,
.theme-clock .breadcrumb a {
  color: rgba(247, 247, 247, 0.72);
}

.theme-clock .nav-wrap,
.theme-clock .footer-grid,
.theme-clock .app-panel,
.theme-clock .icon-shell,
.theme-clock .screenshot-shell,
.theme-clock .support-strip {
  background: rgba(19, 19, 19, 0.72);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.theme-clock .button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.theme-clock .button-primary {
  background: white;
  color: #111111;
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .app-hero-grid,
  .product-grid,
  .about-grid,
  .craft-grid,
  .feature-columns,
  .app-detail-grid,
  .footer-grid,
  .jpi-hero-layout,
  .jpi-feature-grid,
  .jpi-feature-grid-reverse,
  .jpi-tool-grid,
  .jpi-character-grid,
  .jpi-summary-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: auto;
  }

  .craft-card,
  .support-card {
    margin-left: 0;
  }

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

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

  .jpi-device-cluster {
    min-height: 21rem;
  }

  .support-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .hero-section {
    padding-top: 3rem;
  }

  .panel-stack,
  .product-card-body,
  .about-card,
  .feature-card,
  .craft-card-panel,
  .legal-card,
  .app-panel,
  .footer-grid,
  .support-strip,
  .icon-shell {
    padding: 1.2rem;
  }

  .site-nav {
    gap: 0.8rem;
  }

  .brand-subline {
    font-size: 0.68rem;
  }

  h1 {
    max-width: none;
  }

  .jpi-summary-grid,
  .jpi-character-grid {
    grid-template-columns: 1fr;
  }

  .jpi-hero-copy {
    padding: 0.25rem 0 0;
  }

  .jpi-device-cluster {
    min-height: 17rem;
    padding: 0.85rem;
  }

  .jpi-device-phone {
    width: min(9rem, 45vw);
  }

  .jpi-device-tilt-left {
    transform: rotate(-4deg) translateY(0.25rem);
  }

  .jpi-device-tilt-right {
    margin-left: -1.4rem;
    transform: rotate(4deg) translateY(-0.2rem);
  }

  .jpi-device-watch {
    width: 5.7rem;
  }

  .jpi-watch-float {
    right: 0.2rem;
    bottom: 0.05rem;
  }

  .jpi-art-badge {
    width: 4.9rem;
    right: -0.2rem;
    bottom: -0.4rem;
  }

  .brand-subline {
    font-size: 0.68rem;
  }
}
