:root {
  --privacy-paper: #fffefc;
  --privacy-ink: #20242a;
  --privacy-muted: #747980;
}

.privacy-shell {
  overflow: clip;
  background: var(--privacy-paper);
}

/* Hero follows the same layout grammar as About and Support. */
.privacy-hero {
  min-height: min(620px, calc(100vh - 72px));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(32,36,42,.065);
  background:
    radial-gradient(circle at 8% 13%, rgba(255,71,83,.050), transparent 27rem),
    radial-gradient(circle at 92% 12%, rgba(48,117,242,.065), transparent 28rem),
    var(--privacy-paper);
}

.privacy-ink-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.privacy-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 54px;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 68px;
}

.privacy-hero-copy h1 {
  margin-top: 14px;
  font-size: clamp(64px, 8vw, 112px);
  line-height: 1;
  letter-spacing: -.065em;
}

html[lang="ja"] .privacy-hero-copy h1 {
  font-size: clamp(54px, 6.8vw, 92px);
  letter-spacing: -.05em;
}

.privacy-lede {
  margin: 28px 0 0;
  max-width: 520px;
  color: var(--privacy-muted);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.65;
}

html[lang="ja"] .privacy-lede { line-height: 1.9; }

.privacy-bird-stage {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: center;
  transform: translate3d(var(--privacy-bird-x, 0), var(--privacy-bird-y, 0), 0) rotate(var(--privacy-bird-r, 0deg));
  transition: transform .8s cubic-bezier(.16,1,.3,1);
  animation: privacy-bird-float 7.6s ease-in-out infinite;
  will-change: transform;
}

.privacy-bird-stage img {
  position: relative;
  z-index: 2;
  width: min(49vw, 660px);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(25,35,70,.10));
}

.privacy-bird-halo {
  position: absolute;
  z-index: 1;
  width: min(38vw, 500px);
  aspect-ratio: 1.22;
  border-radius: 44% 56% 58% 42% / 38% 46% 54% 62%;
  background:
    radial-gradient(ellipse at 25% 42%, rgba(255,70,83,.09), transparent 44%),
    radial-gradient(ellipse at 45% 70%, rgba(255,205,61,.07), transparent 43%),
    radial-gradient(ellipse at 60% 38%, rgba(60,192,123,.09), transparent 46%),
    radial-gradient(ellipse at 76% 40%, rgba(48,117,242,.10), transparent 48%);
  filter: blur(16px);
}

@keyframes privacy-bird-float {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

.privacy-website-section {
  padding: 88px 0 44px;
}

.privacy-products-section {
  padding: 46px 0 84px;
}

.privacy-section-head {
  max-width: 820px;
  margin-bottom: 38px;
}

.privacy-section-head h2,
.privacy-contact-panel h2 {
  margin-top: 12px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.06;
  letter-spacing: -.05em;
}

html[lang="ja"] .privacy-section-head h2,
html[lang="ja"] .privacy-contact-panel h2 {
  line-height: 1.2;
  letter-spacing: -.035em;
}

.privacy-section-lede {
  margin: 18px 0 0;
  max-width: 650px;
  color: var(--privacy-muted);
  font-size: 17px;
  line-height: 1.75;
}

html[lang="ja"] .privacy-section-lede { line-height: 1.9; }

.privacy-info-panel {
  max-width: 980px;
  padding: 38px 42px;
  border: 1px solid rgba(32,36,42,.065);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 12%, rgba(52,120,246,.04), transparent 18rem),
    rgba(255,255,255,.72);
}

.privacy-info-panel p {
  max-width: 850px;
  margin: 0;
  color: #5f646b;
  font-size: 17px;
  line-height: 1.82;
}

.privacy-info-panel p + p { margin-top: 16px; }
html[lang="ja"] .privacy-info-panel p { line-height: 2; }

/* Product cards deliberately reuse Support's density and icon scale. */
.privacy-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.privacy-product-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 172px auto;
  padding: 28px;
  color: var(--privacy-ink);
  text-decoration: none;
  cursor: pointer;
  border-radius: 30px;
  border: 1px solid rgba(32,36,42,.06);
  background: rgba(246,246,248,.85);
  box-shadow: 0 16px 44px rgba(32,36,42,.025);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}

.privacy-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(32,36,42,.07);
}

.privacy-card-wash {
  position: absolute;
  inset: -18% -10% 46% 26%;
  opacity: 0;
  background:
    radial-gradient(circle at 42% 52%, rgba(88,168,244,.11), transparent 46%),
    radial-gradient(circle at 72% 42%, rgba(153,111,226,.09), transparent 43%);
  filter: blur(16px);
  transition: opacity .3s ease;
}

.privacy-product-card:hover .privacy-card-wash { opacity: 1; }

.privacy-product-card > img {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  border-radius: 25%;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(25,31,38,.11));
}

.privacy-product-card[href*="chord-jot"] > img {
  clip-path: inset(2.55% round 24%);
}

.privacy-product-copy {
  position: relative;
  z-index: 2;
  align-self: end;
}

.privacy-product-copy h3 {
  font-size: 28px;
  letter-spacing: -.045em;
}

.privacy-product-copy > span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 8px;
  color: #777b81;
  font-size: 13px;
  font-weight: 680;
}

.privacy-product-copy b { font-size: 12px; }

.privacy-contact-section {
  padding: 18px 0 96px;
}

.privacy-contact-panel {
  min-height: 250px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 42px;
  border: 1px solid rgba(32,36,42,.065);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 20%, rgba(255,71,83,.050), transparent 18rem),
    radial-gradient(circle at 75% 88%, rgba(52,120,246,.060), transparent 20rem),
    rgba(255,255,255,.75);
}

.privacy-contact-panel p {
  max-width: 580px;
  margin: 17px 0 0;
  color: var(--privacy-muted);
  font-size: 17px;
}

.privacy-contact-action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(32,36,42,.1);
  background: rgba(255,255,255,.78);
  color: #40454b;
  font-size: 14px;
  font-weight: 720;
}

.privacy-footer { margin-top: 0; }

.privacy-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .privacy-reveal { animation: privacy-reveal-in .78s cubic-bezier(.16,1,.3,1) both; }
  .privacy-product-card:nth-child(2) { animation-delay: .06s; }
}

@keyframes privacy-reveal-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .privacy-hero { min-height: auto; }
  .privacy-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 66px;
    padding-bottom: 50px;
  }
  .privacy-bird-stage { min-height: 330px; }
  .privacy-bird-stage img { width: min(92vw, 640px); }
  .privacy-bird-halo { width: min(78vw, 480px); }
  .privacy-product-grid { grid-template-columns: 1fr; }
  .privacy-product-card {
    min-height: 250px;
    grid-template-rows: 138px auto;
  }
  .privacy-product-card > img { width: 108px; height: 108px; }
}

@media (max-width: 560px) {
  .privacy-hero-inner { padding-top: 52px; }
  .privacy-hero-copy h1 { font-size: clamp(54px, 18vw, 78px); }
  html[lang="ja"] .privacy-hero-copy h1 { font-size: clamp(48px, 14vw, 66px); }
  .privacy-bird-stage { min-height: 250px; margin-top: 8px; }
  .privacy-bird-stage img { width: 98vw; transform: translateX(3%); }
  .privacy-website-section { padding-top: 68px; }
  .privacy-info-panel { padding: 28px; border-radius: 26px; }
  .privacy-products-section { padding-top: 34px; }
  .privacy-product-card { padding: 24px; border-radius: 26px; }
  .privacy-contact-panel {
    min-height: 0;
    padding: 28px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-bird-stage { animation: none; transition: none; }
  .privacy-product-card { transition: none; }
}
