:root {
  color-scheme: light;
  --ph-font-sans: Inter, "SF Pro Text", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  --ph-color-bg: #f7f9fc;
  --ph-color-surface: #ffffff;
  --ph-color-surface-elevated: #fcfeff;
  --ph-color-surface-subtle: #f8fbff;
  --ph-color-footer: #07111f;
  --ph-color-text: #111827;
  --ph-color-text-muted: #5f6673;
  --ph-color-text-subtle: #8a93a3;
  --ph-color-border: #dce8fa;
  --ph-color-border-strong: #b8c7de;
  --ph-color-primary: #0a66e8;
  --ph-color-primary-hover: #0759cc;
  --ph-color-primary-soft: #eaf3ff;
  --ph-color-teal: #0a9a9a;
  --ph-color-teal-soft: #e8faf6;
  --ph-color-success: #16a874;
  --ph-color-success-soft: #eaf8ef;
  --ph-color-warning: #c45a10;
  --ph-color-warning-soft: #fff3e2;
  --ph-color-danger: #d14343;
  --ph-color-danger-soft: #fff1f1;
  --ph-color-indigo: #3f5bea;
  --ph-color-indigo-soft: #eef0ff;
  --ph-gradient-hero: linear-gradient(135deg, #eaf3ff 0%, #f7fbff 52%, #e8faf6 100%);
  --ph-shadow-card: 0 18px 48px rgba(15, 35, 70, 0.08);
  --ph-shadow-card-hover: 0 22px 56px rgba(15, 35, 70, 0.12);
  --ph-shadow-media: 0 28px 80px rgba(10, 102, 232, 0.14);
  --ph-container-page: 1120px;
  --ph-radius-sm: 12px;
  --ph-radius-md: 18px;
  --ph-radius-lg: 28px;
  --ph-radius-xl: 36px;
  --ph-radius-pill: 999px;
  --ph-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ph-color-text);
  background: var(--ph-color-bg);
  font-family: var(--ph-font-sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--ph-color-primary);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 232, 250, 0.74);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--ph-container-page));
  min-height: 68px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(10, 42, 108, 0.2));
}

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

.nav-links a {
  padding: 10px 12px;
  color: var(--ph-color-text-muted);
  border-radius: var(--ph-radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms var(--ph-ease), background 180ms var(--ph-ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ph-color-primary);
  background: var(--ph-color-primary-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--ph-color-border);
  border-radius: var(--ph-radius-pill);
  background: var(--ph-color-surface);
  box-shadow: 0 10px 26px rgba(15, 35, 70, 0.06);
}

.lang-option {
  min-width: 40px;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  color: var(--ph-color-text-muted);
  border-radius: var(--ph-radius-pill);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms var(--ph-ease), color 180ms var(--ph-ease), transform 180ms var(--ph-ease);
}

.lang-option:hover {
  color: var(--ph-color-primary);
}

.lang-option.is-active {
  color: #fff;
  background: var(--ph-color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--ph-radius-pill);
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms var(--ph-ease), box-shadow 180ms var(--ph-ease), background 180ms var(--ph-ease), border-color 180ms var(--ph-ease);
}

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

.btn-primary {
  color: #fff;
  background: var(--ph-color-primary);
  box-shadow: 0 16px 34px rgba(10, 102, 232, 0.22);
}

.btn-primary:hover {
  background: var(--ph-color-primary-hover);
}

.btn-secondary {
  color: var(--ph-color-primary);
  border-color: var(--ph-color-border);
  background: rgba(255, 255, 255, 0.86);
}

.btn-secondary:hover {
  border-color: rgba(10, 102, 232, 0.28);
  box-shadow: var(--ph-shadow-card);
}

.main {
  overflow: hidden;
}

.section {
  width: min(100%, var(--ph-container-page));
  margin: 0 auto;
  padding: 96px 24px;
}

.section-tight {
  padding-top: 56px;
}

.hero {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 72px 24px 86px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100svh - 88px);
  padding: 44px;
  border: 1px solid rgba(220, 232, 250, 0.78);
  border-radius: 40px;
  background: var(--ph-gradient-hero);
  box-shadow: var(--ph-shadow-card);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--ph-color-teal);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ph-color-text);
  font-size: clamp(40px, 5.8vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

html[lang="en"] .hero h1 {
  font-size: clamp(38px, 4.3vw, 54px);
  line-height: 1.08;
}

.hero-copy,
.page-hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ph-color-text-muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--ph-color-text-muted);
  border: 1px solid rgba(220, 232, 250, 0.86);
  border-radius: var(--ph-radius-pill);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.chip::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ph-color-success);
  content: "";
}

.visual-card {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(220, 232, 250, 0.9);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54)),
    radial-gradient(circle at 28% 20%, rgba(10, 102, 232, 0.18), transparent 18rem),
    radial-gradient(circle at 78% 76%, rgba(10, 154, 154, 0.15), transparent 18rem),
    #fff;
  box-shadow: var(--ph-shadow-media);
  overflow: hidden;
}

.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 24px;
  color: var(--ph-color-text-muted);
  border: 1px dashed rgba(10, 102, 232, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(234, 243, 255, 0.76), rgba(232, 250, 246, 0.76)),
    repeating-linear-gradient(135deg, rgba(10, 102, 232, 0.06) 0, rgba(10, 102, 232, 0.06) 8px, transparent 8px, transparent 18px);
  text-align: center;
}

.placeholder strong {
  display: block;
  color: var(--ph-color-text);
  font-size: 17px;
}

.placeholder span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.hero-placeholder {
  position: absolute;
  inset: 28px;
}

.floating-proof {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: min(72%, 360px);
  padding: 18px;
  border: 1px solid rgba(220, 232, 250, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 46px rgba(15, 35, 70, 0.12);
  backdrop-filter: blur(12px);
}

.proof-line {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 12px;
}

.proof-line:first-child {
  margin-top: 0;
}

.proof-line b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  border-radius: 50%;
  background: var(--ph-color-success);
  font-size: 12px;
}

.proof-line p {
  margin: 0;
  color: var(--ph-color-text);
  font-size: 14px;
  font-weight: 700;
}

.proof-line small {
  display: block;
  margin-top: 2px;
  color: var(--ph-color-text-subtle);
  font-size: 12px;
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-header p,
.page-section > p {
  margin: 0;
  color: var(--ph-color-text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  padding: 24px;
  border: 1px solid rgba(220, 232, 250, 0.86);
  border-radius: var(--ph-radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--ph-shadow-card);
}

.card:hover {
  box-shadow: var(--ph-shadow-card-hover);
}

.card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
}

.card p {
  margin: 12px 0 0;
  color: var(--ph-color-text-muted);
  line-height: 1.72;
}

.icon-bubble {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--ph-color-primary);
  border-radius: 16px;
  background: var(--ph-color-primary-soft);
  font-size: 20px;
  font-weight: 800;
}

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

.flow-step {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(220, 232, 250, 0.86);
  border-radius: 24px;
  background: #fff;
}

.flow-step b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 50%;
  background: var(--ph-color-primary);
  font-size: 13px;
}

.flow-step h3 {
  margin: 16px 0 8px;
  font-size: 18px;
}

.flow-step p {
  margin: 0;
  color: var(--ph-color-text-muted);
  font-size: 14px;
  line-height: 1.62;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(220, 232, 250, 0.86);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--ph-shadow-card);
}

.feature-band.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.feature-band.reverse .feature-copy {
  order: 2;
}

.feature-band.reverse .placeholder {
  order: 1;
}

.feature-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.14;
}

.feature-copy p {
  margin: 16px 0 0;
  color: var(--ph-color-text-muted);
  font-size: 17px;
  line-height: 1.76;
}

/* Homepage */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: var(--ph-color-primary);
  pointer-events: none;
}

.home-page .site-header {
  transition: box-shadow 180ms var(--ph-ease), background 180ms var(--ph-ease);
}

.home-page .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 32px rgba(15, 35, 70, 0.07);
}

.home-hero {
  width: min(100%, 1240px);
  min-height: calc(100svh - 68px);
  margin: 0 auto;
  padding: 76px 32px 54px;
}

.home-hero-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.product-name {
  margin: 0 0 18px;
  color: var(--ph-color-primary);
  font-size: 18px;
  font-weight: 800;
}

.home-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 68px;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

html[lang="en"] .home-hero h1 {
  max-width: 1040px;
  font-size: 64px;
}

.home-hero-intro {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--ph-color-text-muted);
  font-size: 20px;
  line-height: 1.75;
}

.home-hero .hero-actions {
  align-items: center;
  justify-content: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  color: var(--ph-color-primary);
  font-size: 15px;
  font-weight: 750;
}

.text-link::after {
  margin-left: 7px;
  content: "→";
  transition: transform 180ms var(--ph-ease);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.product-stage {
  width: min(100%, 1160px);
  aspect-ratio: 16 / 9;
  margin: 68px auto 0;
  transform-origin: center bottom;
}

.hero-product-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 34px 84px rgba(22, 42, 74, 0.14);
}

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

.photo-tile {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #cad5e3;
}

.tile-1 { background: #9db9d7; }
.tile-2 { background: #c0a9ca; }
.tile-3 { background: #84b9ab; }
.tile-4 { background: #d6a7a0; }
.tile-5 { background: #b8c68f; }
.tile-6 { background: #7da4c8; }
.tile-7 { background: #c4b694; }
.tile-8 { background: #94a9ba; }

.media-caption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 12px 14px;
  color: #526173;
  border: 1px solid rgba(210, 220, 233, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.media-caption strong {
  color: #172033;
}

.capability-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 34px auto 0;
  color: #697587;
  font-size: 14px;
  font-weight: 750;
}

.capability-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9aa7b8;
}

.story-section {
  padding: 124px 0;
}

.story-section:nth-child(even) {
  background: #fff;
}

.story-inner,
.detail-inner,
.home-cta-inner {
  width: min(100%, var(--ph-container-page));
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: 84px;
  align-items: center;
}

.story-split-reverse {
  grid-template-columns: minmax(440px, 1.18fr) minmax(0, 0.82fr);
}

.story-split-reverse .story-copy {
  order: 2;
}

.story-copy {
  max-width: 480px;
}

.story-index {
  margin: 0 0 18px;
  color: var(--ph-color-primary);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-page #features .story-index {
  display: none;
}

.story-copy h2,
.story-heading h2,
.home-cta h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.story-copy > p:not(.story-index):not(.story-footnote),
.story-heading > p:not(.story-index),
.home-cta-inner > p:not(.product-name) {
  margin: 22px 0 0;
  color: var(--ph-color-text-muted);
  font-size: 18px;
  line-height: 1.8;
}

.story-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.story-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.story-heading.center > p:not(.story-index) {
  margin-right: auto;
  margin-left: auto;
}

.feature-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 28px;
}

.feature-notes span {
  color: #3f4c5e;
  font-size: 14px;
  font-weight: 750;
}

.feature-notes span::before {
  margin-right: 7px;
  color: var(--ph-color-success);
  content: "✓";
}

.media-frame {
  position: relative;
  min-width: 0;
  border: 1px solid #d6e0ec;
  border-radius: 24px;
  background: #e8eef5;
  box-shadow: 0 26px 70px rgba(22, 42, 74, 0.13);
  overflow: hidden;
}

.media-portrait {
  min-height: 650px;
  padding: 46px 40px 74px;
  background: #e5f2ef;
}

.archive-shot-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(10, 102, 232, 0.16), transparent 36%),
    linear-gradient(180deg, #dff1ee 0%, #eef7fb 100%);
}

.archive-product-image {
  display: block;
  width: min(78%, 370px);
  height: auto;
  border-radius: 42px;
}

.phone-placeholder {
  width: min(78%, 340px);
  margin: 0 auto;
  padding: 10px;
  border: 7px solid #182131;
  border-radius: 46px;
  background: #182131;
  box-shadow: 0 25px 48px rgba(24, 33, 49, 0.22);
}

.phone-island {
  position: absolute;
  z-index: 2;
  width: 82px;
  height: 23px;
  margin: 6px 0 0;
  border-radius: 20px;
  background: #111827;
  transform: translateX(118%);
}

.phone-screen {
  min-height: 470px;
  padding: 62px 22px 24px;
  border-radius: 32px;
  background: #fff;
}

.screen-kicker,
.screen-title,
.screen-button {
  display: block;
  width: 32%;
  height: 9px;
  border-radius: 3px;
  background: #8db5e9;
}

.screen-title {
  width: 64%;
  height: 20px;
  margin-top: 10px;
  background: #344155;
}

.upload-row {
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.upload-row i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #a5bdd6;
}

.upload-row b {
  height: 10px;
  border-radius: 3px;
  background: #d6dfeb;
}

.upload-row em {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #23a878;
}

.screen-button {
  width: 100%;
  height: 40px;
  margin-top: 34px;
  border-radius: 12px;
  background: #0a66e8;
}

.media-wide {
  aspect-ratio: 16 / 9;
  min-height: 560px;
  padding: 34px 34px 70px;
  background: #e9edf4;
}

.library-shot-frame {
  min-height: 0;
  padding: 0;
  background: #f4f8fd;
}

.library-product-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

.library-placeholder {
  height: 100%;
  min-height: 450px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
}

.library-bar {
  display: grid;
  grid-template-columns: 80px 160px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.library-bar span,
.library-bar strong,
.library-bar i {
  height: 12px;
  border-radius: 3px;
  background: #d8e1ec;
}

.library-bar strong {
  height: 22px;
  background: #8fa3ba;
}

.library-bar i {
  justify-self: end;
  width: 82px;
  height: 32px;
  border-radius: 10px;
  background: #0a66e8;
}

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

.story-thumbnails {
  background: #eef5fb;
}

.media-thumbnails {
  min-height: 540px;
  padding: 38px 38px 72px;
  background: #dfeaf4;
}

.thumbnail-shot-frame {
  aspect-ratio: 1;
  min-height: 0;
  padding: 0;
  background: #f1f6fc;
}

.thumbnail-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-placeholder {
  position: relative;
  min-height: 420px;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 68%;
  padding: 20px;
  border: 1px solid #d7e0eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(22, 42, 74, 0.12);
}

.preview-sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  padding: 14px;
  border: 1px solid #d7e0eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(22, 42, 74, 0.18);
}

.preview-image {
  aspect-ratio: 4 / 3;
  border-radius: 11px;
  background: #829eae;
}

.preview-sheet span,
.preview-sheet i {
  display: block;
  height: 10px;
  margin-top: 13px;
  border-radius: 3px;
  background: #cbd7e3;
}

.preview-sheet i {
  width: 58%;
  margin-top: 8px;
  background: #e0e6ed;
}

.story-footnote {
  margin: 18px 0 0;
  color: #7a8493;
  font-size: 13px;
  line-height: 1.7;
}

.story-share {
  background: #eef6f3;
}

.share-composition {
  position: relative;
  min-height: 570px;
}

.share-shot-frame {
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #d6e0ec;
  border-radius: 28px;
  background: #eaf3fb;
  box-shadow: 0 26px 70px rgba(22, 42, 74, 0.12);
}

.share-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.share-source-device,
.share-extension-device {
  position: absolute;
  overflow: hidden;
  border: 7px solid #182131;
  border-radius: 38px;
  background: #f7f8fb;
  box-shadow: 0 26px 64px rgba(22, 42, 74, 0.16);
}

.share-source-device {
  top: 0;
  left: 0;
  width: 54%;
  height: 500px;
}

.share-source-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  height: 45%;
  padding-top: 38px;
  background: #dfe9f3;
}

.share-source-media i {
  display: block;
  background-position: center;
  background-size: cover;
}

.share-source-media i:nth-child(1) {
  background: linear-gradient(145deg, #82b6cf, #356d91);
}

.share-source-media i:nth-child(2) {
  background: linear-gradient(145deg, #d6b38d, #8b6651);
}

.share-source-media i:nth-child(3) {
  background: linear-gradient(145deg, #92b88f, #466f5d);
}

.system-share-sheet {
  height: 55%;
  padding: 12px 16px 18px;
  border-top: 1px solid #dfe4eb;
  background: rgba(250, 251, 253, 0.98);
}

.share-sheet-handle {
  display: block;
  width: 38px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #c5ccd6;
}

.system-share-sheet > strong {
  display: block;
  font-size: 15px;
}

.share-app-option {
  display: grid;
  grid-template-columns: 48px 1fr 18px;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #e0e6ee;
  border-radius: 16px;
  background: #fff;
}

.share-app-option img,
.share-extension-header img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(10, 66, 150, 0.18);
}

.share-app-option span {
  color: var(--ph-color-text);
  font-size: 15px;
  font-weight: 700;
}

.share-app-option b {
  color: #8a93a3;
  font-size: 26px;
  font-weight: 400;
}

.share-flow-arrow {
  position: absolute;
  z-index: 3;
  top: 230px;
  left: 48%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  border: 5px solid #eef6f3;
  border-radius: 50%;
  background: var(--ph-color-primary);
  box-shadow: 0 14px 32px rgba(10, 102, 232, 0.24);
  font-size: 25px;
  font-weight: 800;
}

.share-extension-device {
  top: 66px;
  right: 0;
  z-index: 2;
  width: 53%;
  min-height: 450px;
  padding: 46px 18px 20px;
}

.share-extension-device::before,
.share-source-device::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 72px;
  height: 20px;
  border-radius: 999px;
  background: #111827;
  content: "";
  transform: translateX(-50%);
}

.share-extension-header {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #e0e6ee;
}

.share-extension-header strong,
.share-extension-header small {
  display: block;
}

.share-extension-header small {
  margin-top: 3px;
  color: var(--ph-color-text-muted);
  font-size: 12px;
}

.share-destination-row {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #e0e6ee;
  border-radius: 14px;
  background: #fff;
}

.share-destination-row span,
.share-destination-row strong {
  display: block;
}

.share-destination-row span {
  color: var(--ph-color-text-muted);
  font-size: 11px;
}

.share-destination-row strong {
  margin-top: 5px;
  overflow-wrap: anywhere;
  font-size: 14px;
}

.share-save-button {
  display: grid;
  place-items: center;
  min-height: 48px;
  margin-top: 18px;
  color: #fff;
  border-radius: 14px;
  background: var(--ph-color-primary);
  font-size: 14px;
  font-weight: 750;
}

.story-storage {
  color: #f8fafc;
  background: #161e29 !important;
}

.story-storage .story-heading p,
.story-storage .storage-footnote {
  color: #b9c4d1;
}

.story-storage .story-index {
  color: #69c8bd;
}

.storage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #35404e;
}

.storage-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) 1fr;
  gap: 24px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid #35404e;
}

.storage-list div:nth-child(odd) {
  padding-right: 34px;
  border-right: 1px solid #35404e;
}

.storage-list div:nth-child(even) {
  padding-left: 34px;
}

.storage-list strong {
  font-size: 19px;
}

.storage-list span {
  color: #aeb9c6;
  font-size: 14px;
}

.storage-footnote {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

.storage-roadmap {
  max-width: 820px;
  margin-top: 10px;
  color: #d7e0ea !important;
}

.story-delete {
  background: #f1f4f8;
}

.media-compact {
  min-height: 480px;
  padding: 48px 42px 76px;
  background: #f8fafc;
}

.delete-shot-frame {
  display: flex;
  min-height: 640px;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  background:
    radial-gradient(circle at 50% 38%, rgba(10, 102, 232, 0.14), transparent 43%),
    linear-gradient(180deg, #e5f2fb 0%, #f3f7fb 100%);
}

.delete-product-image {
  display: block;
  width: min(76%, 350px);
  height: auto;
  max-height: calc(100% - 24px);
  object-fit: contain;
}

.delete-placeholder {
  padding: 24px;
  border: 1px solid #dce4ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(22, 42, 74, 0.1);
}

.delete-summary {
  display: grid;
  grid-template-columns: 48px 1fr 74px;
  gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4eaf1;
}

.delete-summary i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #dff4eb;
}

.delete-summary span,
.delete-summary strong {
  height: 12px;
  border-radius: 3px;
  background: #d6dfea;
}

.delete-summary strong {
  height: 28px;
  border-radius: 8px;
  background: #8bcdb6;
}

.delete-row {
  display: grid;
  grid-template-columns: 42px 1fr 58px;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.delete-row i {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: #9db3c9;
}

.delete-row span {
  height: 10px;
  border-radius: 3px;
  background: #d8e0ea;
}

.delete-row b {
  height: 24px;
  border-radius: 8px;
  background: #dff4eb;
}

.delete-placeholder > em {
  display: block;
  width: 100%;
  height: 42px;
  margin-top: 28px;
  border-radius: 12px;
  background: #d14343;
}

.detail-section {
  position: relative;
  padding: 136px 0 126px;
  background:
    radial-gradient(circle at 50% 0%, rgba(62, 120, 232, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f8fbff 100%);
  overflow: hidden;
}

.detail-section::before {
  position: absolute;
  top: -340px;
  left: 50%;
  width: 1800px;
  height: 820px;
  border: 1px solid rgba(171, 196, 232, 0.34);
  border-radius: 50%;
  transform: translateX(-50%);
  content: "";
}

.detail-section::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(95, 146, 242, 0.08), transparent 18%),
    radial-gradient(circle at 87% 23%, rgba(95, 146, 242, 0.06), transparent 20%);
  content: "";
  pointer-events: none;
}

.detail-inner {
  position: relative;
  z-index: 1;
}

.detail-heading {
  max-width: 1020px;
  margin: 0 auto 56px;
}

.detail-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 18px;
  color: var(--ph-color-primary) !important;
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1 !important;
}

.detail-brand img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.detail-heading h2 {
  font-size: 72px;
  line-height: 1.04;
  text-wrap: pretty;
}

.detail-heading > p:not(.detail-brand) {
  max-width: 900px;
  color: #677792 !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
}

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

.detail-card-image {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 26px 58px rgba(72, 102, 155, 0.12);
}

.detail-card-image-asset {
  display: block;
  width: 100%;
  height: auto;
}

.detail-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
  min-height: 358px;
  padding: 34px 34px 28px;
  border: 1px solid rgba(220, 232, 250, 0.92);
  border-radius: 30px;
  background: #fff;
  box-shadow:
    0 24px 54px rgba(72, 102, 155, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.detail-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(92, 146, 241, 0.08), transparent 28%),
    radial-gradient(circle at 85% 82%, rgba(92, 146, 241, 0.05), transparent 24%);
  content: "";
  pointer-events: none;
}

.detail-card-copy,
.detail-card-visual {
  position: relative;
  z-index: 1;
}

.detail-card-copy {
  align-self: start;
}

.detail-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ph-color-primary);
  border: 1px solid #d8e7ff;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 850;
}

.detail-card h3 {
  margin: 34px 0 0;
  font-size: 27px;
  line-height: 1.22;
}

.detail-card p {
  margin: 16px 0 0;
  color: var(--ph-color-text-muted);
  font-size: 17px;
  line-height: 1.72;
}

.detail-card-upload {
  grid-template-columns: minmax(175px, 0.74fr) minmax(285px, 1.26fr);
}

.detail-card-security {
  grid-template-columns: minmax(190px, 0.8fr) minmax(250px, 1.2fr);
}

html[lang="en"] .detail-heading h2 {
  font-size: 64px;
}

html[lang="en"] .detail-card h3 {
  font-size: 23px;
}

html[lang="en"] .detail-card p {
  font-size: 15px;
}

.detail-card-visual {
  min-height: 260px;
}

.upload-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}

.upload-shot-frame {
  position: relative;
  width: min(100%, 380px);
  overflow: hidden;
  border: 1px solid #dfe9f6;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 54px rgba(88, 113, 162, 0.14);
}

.upload-product-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.upload-badge {
  position: absolute;
  bottom: 18px;
  left: -8px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid #dce8fb;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(88, 113, 162, 0.14);
}

.upload-badge-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 3px solid #1c66e6;
  border-right-color: transparent;
  border-radius: 999px;
}

.upload-badge-icon::after {
  position: absolute;
  top: 9px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #1c66e6;
  border-right: 3px solid #1c66e6;
  transform: rotate(45deg);
  content: "";
}

.upload-badge strong,
.upload-badge small {
  display: block;
}

.upload-badge small {
  margin-top: 4px;
  color: #74859d;
  font-size: 12px;
}

.wifi-visual {
  display: grid;
  place-items: center;
}

.wifi-rings {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(45, 111, 232, 0.08) 0 26%, transparent 26% 38%, rgba(45, 111, 232, 0.05) 38% 54%, transparent 54% 66%, rgba(45, 111, 232, 0.04) 66% 82%, transparent 82%);
}

.wifi-phone {
  position: relative;
  width: min(100%, 252px);
  padding: 12px;
  border: 6px solid #1b2432;
  border-radius: 36px;
  background: #1b2432;
  box-shadow: 0 18px 42px rgba(45, 69, 103, 0.18);
}

.wifi-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 92px;
  height: 22px;
  border-radius: 999px;
  background: #0f1724;
  transform: translateX(-50%);
}

.wifi-phone-screen {
  min-height: 290px;
  padding: 86px 20px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  text-align: center;
}

.wifi-bubble {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 40%, #3e8cff, #1b65e6 70%);
  box-shadow: 0 18px 34px rgba(33, 102, 227, 0.24);
}

.wifi-bubble::before,
.wifi-bubble::after {
  position: absolute;
  left: 50%;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
  transform: translateX(-50%);
  content: "";
}

.wifi-bubble::before {
  top: 26px;
  width: 34px;
  height: 16px;
}

.wifi-bubble::after {
  top: 37px;
  width: 16px;
  height: 8px;
}

.wifi-phone-screen strong,
.wifi-phone-screen span {
  display: block;
}

.wifi-phone-screen strong {
  font-size: 16px;
}

.wifi-phone-screen span {
  margin-top: 8px;
  color: #71839d;
  font-size: 13px;
}

.wifi-route {
  position: absolute;
  right: -8px;
  bottom: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: min(100%, 366px);
  padding: 14px 18px;
  border: 1px solid #dce8fb;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 34px rgba(88, 113, 162, 0.16);
}

.wifi-route em {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dce6f7 0%, #9ebeff 100%);
  position: relative;
}

.wifi-route em::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #7aa6fb;
  border-right: 2px solid #7aa6fb;
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.wifi-route-state {
  display: flex;
  gap: 10px;
  align-items: center;
}

.wifi-route-state b {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef3fb 0%, #dfe8f7 100%);
}

.wifi-route-state-active b {
  background: linear-gradient(180deg, #d9ebff 0%, #bcd6ff 100%);
}

.wifi-route-state strong,
.wifi-route-state span {
  display: block;
}

.wifi-route-state strong {
  font-size: 13px;
}

.wifi-route-state span {
  margin-top: 4px;
  color: #6c829f;
  font-size: 12px;
}

.wifi-route-state-active span {
  color: #1c66e6;
  font-weight: 760;
}

.security-visual {
  display: grid;
  place-items: center;
}

.security-shot-frame {
  display: grid;
  place-items: center;
  width: min(100%, 484px);
  padding: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 44%, rgba(92, 146, 241, 0.12), transparent 56%),
    linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
}

.security-product-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.library-visual {
  display: grid;
  place-items: center;
}

.library-window {
  display: grid;
  grid-template-columns: 88px 1fr;
  width: min(100%, 360px);
  overflow: hidden;
  border: 1px solid #dfe9f6;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 46px rgba(88, 113, 162, 0.14);
}

.library-sidebar {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px 12px;
  background: linear-gradient(180deg, #f7fbff 0%, #f2f7ff 100%);
}

.library-sidebar span {
  display: block;
  width: 100%;
  height: 16px;
  border-radius: 8px;
  background: #dfe8f6;
}

.library-sidebar span:first-child {
  height: 28px;
  background: #d2e1ff;
}

.library-content {
  padding: 14px;
}

.library-toolbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.library-toolbar strong {
  font-size: 14px;
}

.library-toolbar span {
  color: #7d8aa0;
  font-size: 12px;
}

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

.library-thumb-grid i {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.thumb-filled {
  background: linear-gradient(180deg, #9ec0dd 0%, #5f7ea0 100%);
}

.thumb-2 {
  background: linear-gradient(180deg, #d5d4db 0%, #888896 100%);
}

.thumb-3 {
  background: linear-gradient(180deg, #98b48b 0%, #536a4f 100%);
}

.thumb-4 {
  background: linear-gradient(180deg, #d5c19f 0%, #857252 100%);
}

.thumb-5 {
  background: linear-gradient(180deg, #cdb7b7 0%, #7e6565 100%);
}

.thumb-6 {
  background: linear-gradient(180deg, #9cb2d4 0%, #627897 100%);
}

.thumb-loading {
  position: relative;
  background: #eef3fa;
}

.thumb-loading::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid #cbd8ea;
  border-right-color: transparent;
  border-radius: 999px;
  content: "";
}

.library-progress-card {
  position: absolute;
  bottom: -2px;
  left: 32px;
  width: min(100%, 270px);
  padding: 14px 16px;
  border: 1px solid #dce8fb;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 32px rgba(88, 113, 162, 0.16);
}

.library-progress-card strong,
.library-progress-card span,
.library-progress-card b {
  display: block;
}

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

.library-progress-card span {
  margin-top: 8px;
  color: #70819a;
  font-size: 12px;
}

.library-progress-card em {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 12px;
  border-radius: 999px;
  background: #e5edf8;
  overflow: hidden;
}

.library-progress-card em::after {
  display: block;
  width: 31%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2e7bff 0%, #1b62e6 100%);
  content: "";
}

.library-progress-card b {
  margin-top: 8px;
  color: #345fa7;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.home-cta {
  padding: 112px 0;
  background: #e7f0fb;
}

.home-cta-inner {
  max-width: 820px;
  text-align: center;
}

.home-cta .hero-actions {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ph-ease), transform 700ms var(--ph-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .btn,
  .text-link::after {
    transition: none;
  }
}

.page-hero {
  width: min(100%, var(--ph-container-page));
  margin: 0 auto;
  padding: 82px 24px 42px;
}

.page-hero-card {
  padding: 42px;
  border: 1px solid rgba(220, 232, 250, 0.86);
  border-radius: 36px;
  background: var(--ph-gradient-hero);
  box-shadow: var(--ph-shadow-card);
}

.page-layout {
  width: min(100%, var(--ph-container-page));
  margin: 0 auto;
  padding: 28px 24px 96px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(220, 232, 250, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.toc a {
  padding: 8px 10px;
  color: var(--ph-color-text-muted);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.toc a:hover {
  color: var(--ph-color-primary);
  background: var(--ph-color-primary-soft);
}

.page-content {
  display: grid;
  gap: 24px;
}

.page-section {
  padding: 30px;
  border: 1px solid rgba(220, 232, 250, 0.86);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--ph-shadow-card);
}

.page-section h2 {
  scroll-margin-top: 100px;
}

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

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--ph-color-text-muted);
  line-height: 1.72;
}

.list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ph-color-primary);
  content: "";
}

.notice {
  padding: 18px;
  border: 1px solid rgba(196, 90, 16, 0.22);
  border-radius: 20px;
  background: var(--ph-color-warning-soft);
  color: #6f360a;
  line-height: 1.7;
}

/* Legal privacy policy */

.legal-page {
  background: #fbfcfe;
}

.legal-hero {
  padding-bottom: 24px;
}

.legal-hero-card {
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
}

.legal-hero-card .eyebrow {
  color: var(--ph-color-primary);
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(220, 232, 250, 0.95);
}

.legal-meta span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.legal-meta strong {
  color: var(--ph-color-text-subtle);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-meta em {
  color: var(--ph-color-text);
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
}

.legal-layout {
  padding-top: 18px;
}

.legal-grid {
  grid-template-columns: minmax(0, 270px) minmax(0, 1fr);
  gap: 32px;
}

.legal-toc {
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
}

.legal-toc a {
  border-radius: 8px;
  font-size: 13px;
}

.legal-content {
  gap: 18px;
}

.legal-section {
  padding: 36px 40px;
  border-color: rgba(184, 199, 222, 0.72);
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
}

.legal-section h2 {
  margin: 0;
  color: #0d1726;
  font-size: 24px;
  line-height: 1.28;
  scroll-margin-top: 100px;
}

.legal-section h3 {
  margin: 0;
  color: #0d1726;
  font-size: 16px;
  line-height: 1.35;
}

.legal-section p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #364253;
  font-size: 16px;
  line-height: 1.78;
}

.legal-primary-commitment {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(10, 102, 232, 0.22);
  border-left: 4px solid var(--ph-color-primary);
  border-radius: 14px;
  background: #f3f8ff;
}

.legal-primary-commitment strong {
  display: block;
  color: #0d3f91;
  font-size: 16px;
  line-height: 1.35;
}

.legal-primary-commitment p {
  max-width: none;
  margin-top: 8px;
  color: #26374f;
  font-size: 15px;
  line-height: 1.72;
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.legal-summary-grid div {
  padding: 18px;
  border: 1px solid rgba(220, 232, 250, 0.95);
  border-radius: 12px;
  background: #f8fbff;
}

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

.legal-summary-grid strong {
  color: #0d1726;
  font-size: 15px;
}

.legal-summary-grid span {
  margin-top: 8px;
  color: var(--ph-color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.legal-definition-list {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  border: 1px solid rgba(220, 232, 250, 0.95);
  border-radius: 12px;
  overflow: hidden;
}

.legal-definition-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  border-bottom: 1px solid rgba(220, 232, 250, 0.95);
}

.legal-definition-list div:last-child {
  border-bottom: 0;
}

.legal-definition-list dt,
.legal-definition-list dd {
  margin: 0;
  padding: 14px 16px;
  line-height: 1.65;
}

.legal-definition-list dt {
  color: #172033;
  background: #f8fbff;
  font-size: 14px;
  font-weight: 800;
}

.legal-definition-list dd {
  color: var(--ph-color-text-muted);
  font-size: 14px;
}

.legal-table {
  display: grid;
  margin-top: 24px;
  border: 1px solid rgba(184, 199, 222, 0.78);
  border-radius: 12px;
  overflow: hidden;
}

.legal-table-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.35fr 1.05fr;
  border-bottom: 1px solid rgba(220, 232, 250, 0.95);
}

.legal-table-row:last-child {
  border-bottom: 0;
}

.legal-table-row span {
  padding: 14px;
  color: var(--ph-color-text-muted);
  border-right: 1px solid rgba(220, 232, 250, 0.95);
  font-size: 13px;
  line-height: 1.62;
}

.legal-table-row span:last-child {
  border-right: 0;
}

.legal-table-head span {
  color: #172033;
  background: #eef5ff;
  font-weight: 800;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 22px;
  color: var(--ph-color-text-muted);
}

.legal-list li {
  padding-left: 4px;
  font-size: 15px;
  line-height: 1.72;
}

.provider-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.provider-list article {
  padding: 18px;
  border: 1px solid rgba(220, 232, 250, 0.95);
  border-radius: 12px;
  background: #f8fbff;
}

.provider-list p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.66;
}

.provider-list a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ph-color-primary);
  font-size: 13px;
  font-weight: 800;
}

.provider-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  padding: 14px 16px;
  border-left: 3px solid var(--ph-color-primary);
  background: #f8fbff;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  border: 1px solid rgba(220, 232, 250, 0.86);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ph-color-text);
  font-weight: 750;
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ph-color-text-muted);
  line-height: 1.72;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: var(--ph-color-footer);
  color: #fff;
}

.contact-card p {
  margin: 6px 0 0;
  color: #cbd5e1;
}

.contact-card a {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  color: #cbd5e1;
  background: var(--ph-color-footer);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 0.6fr));
  gap: 28px;
  width: min(100%, var(--ph-container-page));
  margin: 0 auto;
  padding: 46px 24px;
}

.footer-inner h2,
.footer-inner h3 {
  margin: 0;
  color: #fff;
}

.footer-inner p {
  margin: 12px 0 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #5ea2ff;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  .hero-shell,
  .feature-band,
  .feature-band.reverse,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    padding: 30px;
  }

  .feature-band.reverse .feature-copy,
  .feature-band.reverse .placeholder {
    order: initial;
  }

  .grid-3,
  .grid-2,
  .flow {
    grid-template-columns: 1fr 1fr;
  }

  .toc {
    position: static;
  }

  .legal-meta {
    grid-template-columns: 1fr;
  }

  .legal-table {
    overflow-x: auto;
  }

  .legal-table-row {
    min-width: 760px;
  }

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

  .home-hero {
    min-height: auto;
    padding-top: 62px;
  }

  .home-hero h1,
  html[lang="en"] .home-hero h1 {
    font-size: 56px;
  }

  .story-split,
  .story-split-reverse {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .story-split-reverse .story-copy {
    order: initial;
  }

  .story-copy {
    max-width: 700px;
  }

  .story-section {
    padding: 96px 0;
  }

  .story-copy h2,
  .story-heading h2,
  .home-cta h2 {
    font-size: 44px;
  }

  .media-portrait {
    min-height: 620px;
  }

  .archive-shot-frame {
    min-height: 620px;
  }

  .archive-product-image {
    width: min(56%, 350px);
  }

  .phone-placeholder {
    width: min(50%, 340px);
  }

  .share-composition {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .share-shot-frame {
    min-height: 0;
  }

  .detail-section {
    padding: 112px 0 104px;
  }

  .detail-heading {
    max-width: 860px;
    margin-bottom: 42px;
  }

  .detail-heading h2 {
    font-size: 58px;
  }

  html[lang="en"] .detail-heading h2 {
    font-size: 54px;
  }

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

  .detail-card {
    grid-template-columns: minmax(220px, 0.84fr) minmax(0, 1.16fr);
    min-height: 332px;
  }

  .detail-card-upload {
    grid-template-columns: minmax(175px, 0.7fr) minmax(285px, 1.3fr);
  }

  .detail-card-security {
    grid-template-columns: minmax(190px, 0.76fr) minmax(250px, 1.24fr);
  }

  .wifi-route {
    right: 4px;
    bottom: 2px;
    width: min(100%, 332px);
  }

  .security-tags {
    right: -2px;
  }
}

@media (max-width: 680px) {
  .nav {
    gap: 12px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding: 32px 16px 58px;
  }

  .hero-shell,
  .page-hero-card,
  .feature-band {
    padding: 22px;
    border-radius: 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-copy,
  .page-hero-copy,
  .feature-copy p,
  .section-header p {
    font-size: 16px;
  }

  .section,
  .page-hero,
  .page-layout {
    padding-right: 16px;
    padding-left: 16px;
  }

  .legal-section {
    padding: 24px 20px;
  }

  .legal-section h2 {
    font-size: 21px;
  }

  .legal-section p {
    font-size: 15px;
  }

  .legal-summary-grid,
  .provider-list {
    grid-template-columns: 1fr;
  }

  .legal-definition-list div {
    grid-template-columns: 1fr;
  }

  .legal-definition-list dt {
    border-bottom: 1px solid rgba(220, 232, 250, 0.95);
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .visual-card {
    min-height: 420px;
  }

  .hero-placeholder {
    inset: 18px;
  }

  .floating-proof {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
  }

  .grid-3,
  .grid-2,
  .flow {
    grid-template-columns: 1fr;
  }

  .contact-card {
    display: grid;
  }

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

  .home-hero {
    padding: 46px 16px 42px;
  }

  .product-name {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .home-hero h1,
  html[lang="en"] .home-hero h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .home-hero-intro {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.7;
  }

  .home-hero .hero-actions {
    display: grid;
    justify-items: center;
  }

  .product-stage {
    margin-top: 48px;
  }

  .hero-product-image {
    border-radius: 14px;
    box-shadow: 0 20px 46px rgba(22, 42, 74, 0.13);
  }

  .media-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    gap: 2px;
    padding: 10px;
    font-size: 11px;
  }

  .capability-strip {
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 26px;
  }

  .capability-strip i {
    display: none;
  }

  .capability-strip span {
    padding: 6px 9px;
    border: 1px solid #d8e1ec;
    border-radius: 8px;
    background: #fff;
  }

  .story-section {
    padding: 76px 0;
  }

  .story-inner,
  .detail-inner,
  .home-cta-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .story-split,
  .story-split-reverse {
    gap: 38px;
  }

  .story-copy h2,
  .story-heading h2,
  .home-cta h2 {
    font-size: 36px;
    line-height: 1.18;
  }

  .story-copy > p:not(.story-index):not(.story-footnote),
  .story-heading > p:not(.story-index),
  .home-cta-inner > p:not(.product-name) {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.76;
  }

  .story-heading {
    margin-bottom: 34px;
  }

  .feature-notes {
    display: grid;
  }

  .media-frame {
    border-radius: 18px;
  }

  .media-portrait {
    min-height: 560px;
    padding: 34px 18px 66px;
  }

  .archive-shot-frame {
    min-height: 560px;
    padding: 28px 18px;
  }

  .archive-product-image {
    width: min(82%, 330px);
    border-radius: 34px;
  }

  .phone-placeholder {
    width: min(88%, 310px);
  }

  .phone-island {
    transform: translateX(102%);
  }

  .media-wide {
    aspect-ratio: auto;
    min-height: 470px;
    padding: 18px 18px 66px;
  }

  .library-shot-frame {
    aspect-ratio: auto;
    min-height: 300px;
    padding: 0;
  }

  .library-product-image {
    height: 300px;
    object-fit: cover;
    object-position: 56% center;
  }

  .library-placeholder {
    min-height: 380px;
    padding: 14px;
  }

  .library-bar {
    grid-template-columns: 50px 90px 1fr;
  }

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

  .library-grid .photo-tile:nth-child(n + 10) {
    display: none;
  }

  .media-thumbnails {
    min-height: 450px;
    padding: 24px 18px 66px;
  }

  .thumbnail-shot-frame {
    min-height: 0;
    padding: 0;
  }

  .thumbnail-placeholder {
    min-height: 350px;
  }

  .thumbnail-grid {
    width: 76%;
    gap: 8px;
    padding: 12px;
  }

  .preview-sheet {
    width: 62%;
  }

  .share-composition {
    min-height: 540px;
  }

  .share-shot-frame {
    min-height: 0;
    border-radius: 20px;
  }

  .share-source-device,
  .share-extension-device {
    border-width: 6px;
    border-radius: 32px;
  }

  .share-source-device {
    width: 64%;
    height: 450px;
  }

  .share-extension-device {
    top: 84px;
    width: 62%;
    min-height: 420px;
    padding: 42px 12px 16px;
  }

  .share-flow-arrow {
    top: 220px;
    left: 50%;
    width: 46px;
    height: 46px;
    border-width: 4px;
    font-size: 21px;
  }

  .share-app-option {
    grid-template-columns: 42px 1fr 14px;
    gap: 9px;
    padding: 10px;
    overflow: hidden;
  }

  .share-app-option img {
    width: 42px;
    height: 42px;
  }

  .share-app-option span {
    min-width: 0;
    font-size: 12px;
  }

  .share-app-option b {
    justify-self: end;
    font-size: 22px;
  }

  .share-extension-header {
    grid-template-columns: 38px 1fr;
    gap: 9px;
  }

  .share-extension-header img {
    width: 38px;
    height: 38px;
  }

  .share-destination-row {
    padding: 11px;
  }

  .storage-list {
    grid-template-columns: 1fr;
  }

  .storage-list div,
  .storage-list div:nth-child(odd),
  .storage-list div:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 82px;
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .media-compact {
    min-height: 410px;
    padding: 28px 16px 66px;
  }

  .delete-shot-frame {
    min-height: 560px;
    padding: 24px 10px;
  }

  .delete-product-image {
    width: min(84%, 300px);
  }

  .delete-placeholder {
    padding: 18px;
  }

  .delete-summary {
    grid-template-columns: 42px 1fr 58px;
  }

  .detail-section,
  .home-cta {
    padding: 76px 0;
  }

  .detail-section::before {
    top: -220px;
    width: 1100px;
    height: 520px;
  }

  .detail-heading {
    margin-bottom: 32px;
  }

  .detail-brand {
    margin-bottom: 14px;
    font-size: 14px !important;
  }

  .detail-heading h2 {
    font-size: 42px;
    line-height: 1.1;
  }

  html[lang="en"] .detail-heading h2 {
    font-size: 38px;
  }

  .detail-heading > p:not(.detail-brand) {
    font-size: 16px !important;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .detail-card-image {
    border-radius: 26px;
  }

  .detail-card {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .detail-number {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .detail-card h3 {
    margin-top: 26px;
    font-size: 24px;
  }

  .detail-card p {
    font-size: 16px;
  }

  html[lang="en"] .detail-card h3 {
    font-size: 22px;
  }

  html[lang="en"] .detail-card p {
    font-size: 15px;
  }

  .detail-card-visual {
    min-height: 230px;
  }

  .upload-visual,
  .security-visual {
    padding-left: 0;
  }

  .upload-shot-frame {
    width: 100%;
  }

  .upload-badge {
    position: static;
    width: fit-content;
    margin-top: 12px;
    padding: 12px 14px;
  }

  .wifi-rings {
    width: 270px;
    height: 270px;
  }

  .wifi-phone {
    width: min(100%, 210px);
    border-radius: 30px;
  }

  .wifi-phone-screen {
    min-height: 244px;
    padding: 72px 16px 24px;
  }

  .wifi-route {
    position: static;
    width: 100%;
    margin-top: 12px;
    grid-template-columns: 1fr;
  }

  .wifi-route em {
    display: none;
  }

  .security-shot-frame {
    width: min(100%, 100%);
    padding: 0;
  }

  .library-window {
    grid-template-columns: 70px 1fr;
    width: 100%;
  }

  .library-progress-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
}
