/* ==========================================================
   musubiba LP — Design System
   Based on: Arc, Figma, Superhuman, Resend, Supabase patterns
   ========================================================== */

:root {
  /* --- Color Palette: Warm Light (Community/Consumer) --- */
  --bg:             #FAFAF8;
  --bg-alt:         #F0EFEB;
  --bg-card:        #FFFFFF;
  --bg-hero:        #FAFAF8;

  --text:           #1a1a2e;
  --text-secondary: #5c5c6f;
  --text-muted:     #9999a8;

  /* Brand: derived from logo (blue→green→orange gradient) */
  --accent:         #3a9e5c;
  --accent-hover:   #2e8049;
  --accent-light:   rgba(58, 158, 92, 0.08);
  --accent-glow:    rgba(58, 158, 92, 0.15);

  --blue:           #4a7fb5;
  --orange:         #e8914a;
  --teal:           #2a9d8f;
  --purple:         #7c5cbf;
  --rose:           #d4587a;

  --border:         rgba(26, 26, 46, 0.07);
  --border-strong:  rgba(26, 26, 46, 0.12);

  /* --- Spacing --- */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;

  /* --- Typography --- */
  --font: 'Inter', 'Noto Sans JP', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1200px;
}

/* ==================== Reset ==================== */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ==================== Utility ==================== */
.container {
  max-width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 10vw, var(--space-2xl)) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: var(--space-sm) auto 0;
  line-height: 1.7;
}

/* ==================== Grid ==================== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease),
              background 0.2s var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}
.btn-lg {
  padding: 14px 30px;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
}
.btn-xl {
  padding: 18px 40px;
  font-size: 1.0625rem;
  border-radius: var(--radius-sm);
}
.btn-block {
  display: flex;
  width: 100%;
  padding: 14px 28px;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #2d8a4a 100%);
  color: #FEFEFE;
  position: relative;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #267040 100%);
  box-shadow: 0 8px 30px rgba(58, 158, 92, 0.3), 0 2px 8px rgba(58, 158, 92, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-alt);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}

/* ==================== Navbar ==================== */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(250, 250, 248, 0.9);
  border-bottom-color: var(--border);
}
.navbar.scrolled .logo-text { color: var(--text); }
.navbar.scrolled .nav-links a { color: var(--text-secondary); }
.navbar.scrolled .nav-links a:hover { color: var(--text); }
.navbar.scrolled .btn-primary { background: linear-gradient(135deg, var(--accent), #2d8a4a); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  border-radius: 8px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.4s var(--ease);
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); }

/* ==================== Hero (Dark Mode) ==================== */
.hero {
  position: relative;
  padding-top: calc(var(--space-md) + 80px);
  padding-bottom: 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f7f2 0%, #e8f4ec 40%, #FAFAF8 100%);
}

/* === Animated gradient orbs === */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(58, 158, 92, 0.15) 0%, transparent 70%);
  animation: orbFloat1 10s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  top: 10%;
  left: 15%;
  background: radial-gradient(circle, rgba(74, 127, 181, 0.12) 0%, transparent 70%);
  animation: orbFloat2 12s ease-in-out infinite alternate;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  bottom: -5%;
  right: 15%;
  background: radial-gradient(circle, rgba(232, 175, 100, 0.1) 0%, transparent 70%);
  animation: orbFloat3 14s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0%   { transform: translateX(-50%) translateY(0) scale(1); }
  100% { transform: translateX(-50%) translateY(-30px) scale(1.08); }
}
@keyframes orbFloat2 {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(20px) translateX(20px) scale(1.05); }
}
@keyframes orbFloat3 {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) translateX(-15px) scale(1.1); }
}

/* === Grid pattern === */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black 10%, transparent 70%);
  pointer-events: none;
}

/* === Bottom fade to light === */
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Floating logo emblem === */
.hero-release-badge {
  margin-bottom: var(--space-sm);
}
.release-pill {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0.5em 1.6em;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.hero-emblem {
  margin-bottom: var(--space-md);
}

.hero-logo-img {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  filter: drop-shadow(0 0 40px rgba(58, 158, 92, 0.4))
          drop-shadow(0 0 80px rgba(74, 127, 181, 0.2));
}

/* === Hero typography === */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

/* === Hero buttons (dark context) === */
.btn-hero-primary {
  background: linear-gradient(135deg, #3a9e5c 0%, #2a9d8f 100%);
  color: #FEFEFE;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  pointer-events: none;
}
.btn-hero-primary:hover {
  box-shadow:
    0 0 20px rgba(58, 158, 92, 0.4),
    0 8px 32px rgba(58, 158, 92, 0.25);
}

.btn-hero-ghost {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #F0F0F0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* === Floating feature tags === */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(240, 240, 240, 0.5);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s var(--ease);
}
.hero-tag:hover {
  color: rgba(240, 240, 240, 0.9);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* Stagger tag entrance */
.ht-1 { animation: tagIn 0.5s var(--ease) 0.9s both; }
.ht-2 { animation: tagIn 0.5s var(--ease) 1.0s both; }
.ht-3 { animation: tagIn 0.5s var(--ease) 1.1s both; }
.ht-4 { animation: tagIn 0.5s var(--ease) 1.2s both; }
.ht-5 { animation: tagIn 0.5s var(--ease) 1.3s both; }

@keyframes tagIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==================== Phone Mockups ==================== */
.hero-phones {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-top: -2rem;
  padding-bottom: 4rem;
  perspective: 1200px;
}

.phone {
  flex-shrink: 0;
  animation: phoneRise 1s var(--ease) both;
}
.phone-left  { animation-delay: 0.6s; }
.phone-center { animation-delay: 0.4s; }
.phone-right  { animation-delay: 0.8s; }

@keyframes phoneRise {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

.phone-frame {
  position: relative;
  width: 220px;
  border-radius: 32px;
  background: #1a1a2e;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 60px -10px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(58, 158, 92, 0.08);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

/* Center phone raised */
.phone-center {
  z-index: 3;
  margin: 0 -24px;
}
.phone-center .phone-frame {
  width: 250px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 30px 80px -10px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(58, 158, 92, 0.12);
}

/* Side phones tilted */
.phone-left {
  z-index: 2;
  transform-origin: bottom right;
}
.phone-left .phone-frame {
  transform: rotateY(8deg) rotateZ(2deg);
}

.phone-right {
  z-index: 2;
  transform-origin: bottom left;
}
.phone-right .phone-frame {
  transform: rotateY(-8deg) rotateZ(-2deg);
}

/* Glow under center phone */
.phone-center::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(58, 158, 92, 0.25) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* Fade phones into hero bottom gradient */
.hero-phones {
  mask-image: linear-gradient(to bottom, black 50%, transparent 98%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 98%);
}

@media (max-width: 768px) {
  .hero-phones { gap: 0; }
  .phone-left, .phone-right { display: none; }
  .phone-center .phone-frame { width: 220px; }
  .phone-center { margin: 0; }
}

/* ==================== Pain Points ==================== */
.pain-points {
  background: var(--bg-alt);
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: inset 0 0 0 1px var(--border);
  transition: transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px var(--border-strong),
    0 20px 40px -12px rgba(26, 26, 46, 0.1);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.card-icon-orange { background: rgba(232, 145, 74, 0.1); }
.card-icon-orange svg { color: var(--orange); }
.card-icon-rose { background: rgba(212, 88, 122, 0.1); }
.card-icon-rose svg { color: var(--rose); }

.card-source {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== Cost Summary ==================== */
.cost-summary {
  text-align: center;
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-md);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: inset 0 0 0 1px var(--accent), 0 0 20px rgba(58, 158, 92, 0.06);
}
.cost-summary p {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.8;
}

/* ==================== Solution ==================== */
.solution-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 768px) {
  .solution-inner { grid-template-columns: 1fr 1fr; }
}

.solution-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Feature pills (solution visual) */
.solution-feature-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--bg-card);
  box-shadow: inset 0 0 0 1px var(--border);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.feature-pill:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px var(--border-strong), 0 8px 20px rgba(26,26,46,0.06);
}
.feature-pill svg {
  width: 18px;
  height: 18px;
}

.fp-1 svg { color: var(--accent); }
.fp-2 svg { color: var(--blue); }
.fp-3 svg { color: var(--orange); }
.fp-4 svg { color: var(--teal); }
.fp-5 svg { color: var(--rose); }
.fp-6 svg { color: var(--purple); }

/* ==================== Features ==================== */
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: inset 0 0 0 1px var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px var(--border-strong),
    0 20px 50px -12px rgba(26, 26, 46, 0.12);
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.feature-card-icon svg {
  width: 24px;
  height: 24px;
}

.fci-green  { background: rgba(58,158,92,0.1);  color: var(--accent); }
.fci-blue   { background: rgba(74,127,181,0.1);  color: var(--blue); }
.fci-orange { background: rgba(232,145,74,0.1);  color: var(--orange); }
.fci-teal   { background: rgba(42,157,143,0.1);  color: var(--teal); }
.fci-purple { background: rgba(124,92,191,0.1);  color: var(--purple); }
.fci-rose   { background: rgba(212,88,122,0.1);  color: var(--rose); }

.feature-card-icon svg { color: inherit; }

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== Mid CTA ==================== */
.cta-mid {
  background: var(--bg-alt);
}

.cta-mid-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-mid-inner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.cta-mid-inner p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* ==================== Stats ==================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  text-align: center;
  padding: var(--space-md);
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--border);
}

.stat-number {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}
.stat-number small {
  font-size: 0.5em;
  font-weight: 600;
}

.stat-card {
  transition: transform 0.25s var(--ease);
}
.stat-card:hover {
  transform: translateY(-4px);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==================== About Message ==================== */
.about-message {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}
.about-message p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-sm);
}
.about-message p:last-child { margin-bottom: 0; }
.about-message strong { color: var(--text); }

/* ==================== Social Proof Note ==================== */
.social-proof-note {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-md);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: inset 0 0 0 1px var(--border);
}
.social-proof-note p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ==================== Testimonials ==================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: inset 0 0 0 1px var(--border);
  display: flex;
  flex-direction: column;
}

.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
  margin-bottom: var(--space-md);
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-card footer span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==================== Cost Saving (inline in pricing card) ==================== */
.pricing-cost-saving {
  text-align: center;
  padding: var(--space-sm) var(--space-sm);
  border-radius: var(--radius-sm);
  background: var(--bg);
  margin-bottom: var(--space-sm);
}

.pricing-cost-saving-title {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
}

.pricing-cost-saving-title strong {
  color: var(--accent);
  font-weight: 800;
}

.pricing-cost-saving-detail {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==================== Pricing (Single Plan) ==================== */
.pricing-single {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-main-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: clamp(var(--space-md), 5vw, var(--space-lg));
  box-shadow: inset 0 0 0 1px var(--border);
  text-align: center;
}

.pricing-main-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-main-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.pricing-all-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  text-align: left;
  margin-bottom: var(--space-md);
}
@media (min-width: 520px) {
  .pricing-all-features { grid-template-columns: 1fr 1fr; }
}
.pricing-all-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.pricing-all-features li:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 519px) {
  .pricing-all-features li:last-child { border-bottom: none; }
  .pricing-all-features li:nth-last-child(2) { border-bottom: 1px solid var(--border); }
}
.pricing-all-features svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-tiers {
  display: flex;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.pricing-tier {
  flex: 1;
  background: var(--bg);
  padding: var(--space-sm) var(--space-xs);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tier-size {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.tier-price {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pricing-support {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  margin-bottom: var(--space-sm);
}
.pricing-support svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-support p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== FAQ ==================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: var(--space-md) 0;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  transition: color 0.2s var(--ease);
}
.faq-item summary:hover { color: var(--accent); }

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ==================== Final CTA ==================== */
.cta-final {
  padding-bottom: 0;
}

.cta-final-inner {
  text-align: center;
  background: var(--bg-alt);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.cta-final-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-final-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  position: relative;
}

.cta-final-inner p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-final-inner .btn {
  position: relative;
}

.cta-store-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 28px 44px;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
  min-width: 320px;
}

.store-btn-apple {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}
.store-btn-apple:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.store-btn-google {
  background: linear-gradient(135deg, #01875f 0%, #34a853 100%);
}
.store-btn-google:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(1, 135, 95, 0.35);
}

.store-btn:active {
  transform: scale(0.97);
}

.store-btn svg {
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1;
}

.store-btn-small {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.8;
}

.store-btn-large {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .cta-store-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  .store-btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    padding: 24px 36px;
  }
  .store-btn-large {
    font-size: 1.25rem;
  }
}

/* ==================== Footer ==================== */
.footer {
  background: var(--bg-alt);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: var(--space-sm);
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.footer-col a {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 80px);
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==================== Noise Texture ==================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ==================== Feature pill hover glow ==================== */
.fp-1:hover { box-shadow: inset 0 0 0 1px var(--border-strong), 0 8px 24px rgba(58,158,92,0.12); }
.fp-2:hover { box-shadow: inset 0 0 0 1px var(--border-strong), 0 8px 24px rgba(74,127,181,0.12); }
.fp-3:hover { box-shadow: inset 0 0 0 1px var(--border-strong), 0 8px 24px rgba(232,145,74,0.12); }
.fp-4:hover { box-shadow: inset 0 0 0 1px var(--border-strong), 0 8px 24px rgba(42,157,143,0.12); }
.fp-5:hover { box-shadow: inset 0 0 0 1px var(--border-strong), 0 8px 24px rgba(212,88,122,0.12); }
.fp-6:hover { box-shadow: inset 0 0 0 1px var(--border-strong), 0 8px 24px rgba(124,92,191,0.12); }

/* ==================== Feature card icon hover ==================== */
.feature-card:hover .fci-green  { background: rgba(58,158,92,0.15); transform: scale(1.05); }
.feature-card:hover .fci-blue   { background: rgba(74,127,181,0.15); transform: scale(1.05); }
.feature-card:hover .fci-orange { background: rgba(232,145,74,0.15); transform: scale(1.05); }
.feature-card:hover .fci-teal   { background: rgba(42,157,143,0.15); transform: scale(1.05); }
.feature-card:hover .fci-purple { background: rgba(124,92,191,0.15); transform: scale(1.05); }
.feature-card:hover .fci-rose   { background: rgba(212,88,122,0.15); transform: scale(1.05); }

.feature-card-icon {
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

/* ==================== CTA Mid enhanced ==================== */
.cta-mid {
  position: relative;
}
.cta-mid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.cta-mid::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

/* ==================== Testimonial enhanced ==================== */
.testimonial-card {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px var(--border-strong),
    0 16px 40px -12px rgba(26, 26, 46, 0.08);
}

/* ==================== Pricing hover ==================== */
.pricing-main-card {
  transition: box-shadow 0.25s var(--ease);
}
.pricing-main-card:hover {
  box-shadow:
    inset 0 0 0 1px var(--border-strong),
    0 20px 50px -12px rgba(26, 26, 46, 0.08);
}

/* ==================== FAQ enhanced ==================== */
.faq-item summary {
  transition: color 0.2s var(--ease);
}
.faq-item[open] summary {
  color: var(--accent);
}

/* ==================== Animations ==================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero stagger (plays on load) */
.animate-hero {
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) both;
}
.animate-hero:nth-child(1) { animation-delay: 0.1s; }
.animate-hero:nth-child(2) { animation-delay: 0.2s; }
.animate-hero:nth-child(3) { animation-delay: 0.35s; }
.animate-hero:nth-child(4) { animation-delay: 0.5s; }
.animate-hero:nth-child(5) { animation-delay: 0.7s; }

/* Scroll-triggered */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .hero {
    padding-top: calc(var(--space-sm) + 40px);
  }

  .hero-title { font-size: clamp(2rem, 9vw, 3.5rem); }

  .hero-logo-img { width: 80px; height: 80px; border-radius: 22px; }

  .hero-orb-2, .hero-orb-3 { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .solution-feature-stack {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn { justify-content: center; }

  .stats-grid { gap: 1rem; }
}

/* ==================== Subpage Layout ==================== */
.subpage .navbar {
  background: rgba(250, 250, 248, 0.9);
  border-bottom-color: var(--border);
}
.subpage .navbar .logo-text { color: var(--text); }
.subpage .navbar .nav-links a { color: var(--text-secondary); }
.subpage .navbar .nav-links a:hover { color: var(--text); }

.subpage-hero {
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: var(--space-lg);
  text-align: center;
  background: var(--bg-alt);
}

.subpage-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.subpage-hero p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.subpage-content {
  padding: var(--space-xl) 0;
}

.subpage-content > .container {
  max-width: 780px;
}

.subpage-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border);
}

.subpage-content h2:first-child {
  margin-top: 0;
}

.subpage-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.subpage-content p,
.subpage-content li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.subpage-content p + p {
  margin-top: var(--space-sm);
}

.subpage-content ul,
.subpage-content ol {
  padding-left: 1.5em;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.subpage-content li {
  margin-bottom: 0.4em;
}

/* Contact page */
.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: inset 0 0 0 1px var(--border);
  text-align: center;
  margin-bottom: var(--space-md);
}

.contact-card h3 {
  margin-top: 0;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  margin: var(--space-sm) 0;
}

.contact-note {
  font-size: 0.875rem !important;
  color: var(--text-muted) !important;
}

/* Guide page steps */
.guide-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--border);
}

.guide-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-step-content h3 {
  margin-top: 0;
  color: var(--text);
}

.guide-step-content p {
  margin-top: var(--space-xs);
}

@media (max-width: 480px) {
  .guide-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Subpage mobile padding */
.subpage .container {
  max-width: min(var(--max-w), 100% - 40px);
}
@media (max-width: 480px) {
  .subpage .container {
    max-width: 100%;
    padding-inline: 16px;
  }
}

/* Features more link */
.features-more {
  text-align: center;
  margin-top: var(--space-lg);
}

/* Features detail page */
.features-detail .container {
  max-width: 780px;
}

.feature-detail-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: inset 0 0 0 1px var(--border);
  margin-bottom: var(--space-sm);
}

.feature-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-xs);
}

.feature-detail-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-detail-num.admin {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  font-size: 0.75rem;
}

.feature-detail-header h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.feature-detail-card > p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.feature-detail-usage {
  margin-top: var(--space-sm);
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
}

.feature-detail-usage summary {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-detail-usage summary::before {
  content: '▶';
  font-size: 0.625rem;
  transition: transform 0.2s var(--ease);
}

.feature-detail-usage[open] summary::before {
  transform: rotate(90deg);
}

.feature-detail-usage ol,
.feature-detail-usage ul {
  margin-top: var(--space-xs);
  padding-left: 1.5em;
}

.feature-detail-usage li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.3em;
}

.features-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.features-cta p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

/* Legal pages (terms, privacy) */
.legal-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
}
.legal-table th,
.legal-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--bg-alt);
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  vertical-align: top;
}
.legal-table th {
  width: 180px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-secondary);
  background: var(--accent-light);
}
.legal-table ul {
  margin: 0;
  padding-left: 1.25rem;
}
.legal-table li {
  margin-bottom: 0.25rem;
}
@media (max-width: 600px) {
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
  }
  .legal-table th {
    border-bottom: none;
    padding-bottom: 0.25rem;
  }
}

/* ==================== Join Flow (かんたん参加) ==================== */
.join-flow {
  background: var(--bg-alt);
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.join-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.join-step:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.join-step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.join-step-icon {
  width: 56px;
  height: 56px;
  margin: var(--space-sm) auto;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.join-step:hover .join-step-icon {
  background: var(--accent-glow);
  transform: scale(1.05);
}

.join-step-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.join-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: var(--space-sm) 0 0.5rem;
  color: var(--text);
}

.join-step p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}


@media (max-width: 768px) {
  .join-steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ==================== Reduced Motion ==================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .animate-hero,
  .animate-in,
  .animate-section {
    opacity: 1;
    transform: none;
  }
}

/* ======== Embed mode: disable all animations when in iframe ======== */
html.embed *, html.embed *::before, html.embed *::after {
  animation: none !important;
  transition: none !important;
}
html.embed .animate-in, html.embed .animate-section, html.embed .animate-hero {
  opacity: 1 !important;
  transform: none !important;
}
