:root {
  --purple: #7c2cff;
  --purple-dark: #4b00c9;
  --purple-soft: #efe6ff;
  --violet: #9b5cff;
  --pink: #ff6bd6;
  --black: #181827;
  --text: #2a2a3a;
  --muted: #6e6e82;
  --line: #e9e6f2;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 18px 50px rgba(77, 32, 155, 0.16);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    "Noto Sans JP",
    sans-serif;
  color: var(--black);
  background: #fbfaff;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 44, 255, 0.10), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(124, 44, 255, 0.08), transparent 34%),
    radial-gradient(circle at 50% 80%, rgba(255, 107, 214, 0.07), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fbfaff 45%, #f7f3ff 100%);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.52;
  pointer-events: none;
}

.glow-1 {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 120px;
  background: rgba(124, 44, 255, 0.28);
}

.glow-2 {
  width: 250px;
  height: 320px;
  right: -120px;
  top: 160px;
  background: rgba(155, 92, 255, 0.22);
}

.glow-3 {
  width: 280px;
  height: 280px;
  left: 40%;
  bottom: -140px;
  background: rgba(255, 107, 214, 0.18);
}

.site-header {
  width: min(1180px, calc(100% - 48px));
  height: 78px;
  margin: 22px auto 0;
  padding: 0 20px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(124, 44, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
  box-shadow:0 30px 80px rgba(15,18,35,.18),0 8px 24px rgba(15,18,35,.10);
  position: sticky;
  top: 18px;
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-image {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-image-header {
  height: 52px;
}

.brand-image-footer {
  height: 50px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--purple);
}

.header-cta,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--violet), var(--purple-dark));
  background-size: 200% 200%;
  box-shadow:
    0 14px 34px rgba(124, 44, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-position 0.4s ease;
  white-space: nowrap;
}

.header-cta:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow:
    0 18px 44px rgba(124, 44, 255, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--black);
  font-weight: 700;
  line-height: 1;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(124, 44, 255, 0.14);
  box-shadow: 0 12px 30px rgba(48, 35, 88, 0.08);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.secondary-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 44, 255, 0.34);
  color: var(--purple);
}

.hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 620px;
  padding: 32px 0 36px;
  display: grid;
  grid-template-columns: minmax(0,1.18fr) minmax(360px,.82fr);
  align-items: center;
  gap: 40px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(124, 44, 255, 0.08);
  border: 1px solid rgba(124, 44, 255, 0.12);
  font-size: 14px;
  font-weight: 500;
}

.hero-label span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 18px rgba(124, 44, 255, 0.8);
}

.hero h1 {
  margin: 18px 0 16px;
  max-width: 720px;
  white-space: normal;
  font-size: clamp(52px, 4.6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.075em;
  font-weight: 700;
  white-space: nowrap;
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--purple-dark);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(124, 44, 255, 0.08);
  box-shadow: 0 10px 26px rgba(55, 34, 112, 0.06);
  cursor: default;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}


.phone::before{
content:"";
position:absolute;
top:10px;left:50%;transform:translateX(-50%);
width:126px;height:34px;
background:linear-gradient(180deg,#121317,#1f2025);
border-radius:0 0 18px 18px;
box-shadow:0 1px 3px rgba(0,0,0,.18);
z-index:20;
}


/* phone top */
.phone-top {
  height: 44px;
  padding: 10px 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  position: relative;
  z-index: 4;
}

.phone-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.phone-icons span {
  display: block;
  background: var(--black);
  border-radius: 999px;
}

.phone-icons span:nth-child(1) {
  width: 18px;
  height: 10px;
}

.phone-icons span:nth-child(2) {
  width: 16px;
  height: 10px;
}

.phone-icons span:nth-child(3) {
  width: 22px;
  height: 12px;
  border: 2px solid var(--black);
  background: transparent;
}

.line-header {
  margin-top: 18px;
  padding: 14px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(247, 246, 252, 0.85);
  border: 1px solid rgba(124, 44, 255, 0.08);
}

.line-avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  color: #fff;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(124, 44, 255, 0.28);
}

.line-header strong {
  display: block;
  font-size: 15px;
}

.line-header p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.chat-area {
  padding: 26px 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-placeholder {
  display: none;
}

.chat-bubble {
  max-width: 82%;
  padding: 14px 16px;
  border-radius: 21px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.chat-bubble.other {
  align-self: flex-start;
  background: #f0eff5;
  color: var(--black);
  border-bottom-left-radius: 8px;
}

.chat-bubble.me {
  align-self: flex-end;
  background: #dff7e8;
  color: #173b25;
  border-bottom-right-radius: 8px;
}

.input-bar {
  margin-top: auto;
  height: 52px;
  padding: 0 8px 0 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f5fa;
  border: 1px solid rgba(124, 44, 255, 0.08);
}

.input-bar span {
  color: #9a97a8;
  font-size: 13px;
  font-weight: 500;
}

.input-bar button {
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--purple);
  font-weight: 500;
}


.analysis-badge{
  display:inline-flex;
  align-items:center;
  height:30px;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--purple),var(--violet));
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
}

.analysis-card h3{
  margin:16px 0 12px;
  font-size:28px;
  line-height:1.2;
  letter-spacing:-.03em;
}

.analysis-card p{
  margin:0;
  color:var(--text);
  font-size:15px;
  line-height:1.9;
  font-weight:600;
}

.proof{
  width:min(1180px,calc(100% - 48px));
  margin:20px auto 100px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.proof div{
  padding:34px;
  border-radius:28px;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(12px);
  border:1px solid rgba(124,44,255,.10);
  box-shadow:0 18px 40px rgba(53,38,105,.06);
}

.proof strong{
  display:block;
  font-size:42px;
  font-weight:700;
  color:var(--purple);
  letter-spacing:-.04em;
}

.proof span{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-weight:700;
}

.section{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
  padding:110px 0;
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 70px;
}

.section-head p{
  margin:0;
  color:var(--purple);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:13px;
  font-weight:700;
}

.section-head h2{
  margin:18px 0 0;
  font-size:clamp(36px,4vw,58px);
  line-height:1.15;
  letter-spacing:-.05em;
}

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

.feature-card{
  padding:42px 34px;
  border-radius:32px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(10px);
  border:1px solid rgba(124,44,255,.10);
  box-shadow:0 20px 48px rgba(53,38,105,.07);
  transition:.25s;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(53,38,105,.12);
}

.icon{
  width:68px;
  height:68px;
  display:grid;
  place-items:center;
  border-radius:22px;
  background:linear-gradient(135deg,var(--purple),var(--violet));
  color:#fff;
  font-size:28px;
  font-weight:700;
  box-shadow:0 18px 36px rgba(124,44,255,.30);
}

.feature-card h3{
  margin:28px 0 14px;
  font-size:28px;
  letter-spacing:-.03em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  line-height:1.95;
  font-weight:600;
}

.desktop-feature-content {
  display: none;
}

.demo-section{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
  padding:120px 0;
}

.video-demo-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 120px;
  text-align: center;
}

.video-demo-copy {
  max-width: 720px;
  margin: 0 auto 48px;
}

.video-demo-copy h2 {
  margin: 18px 0;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.14;
  letter-spacing: -.055em;
}

.video-demo-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 600;
}

.video-frame {
  width: min(340px, 88vw);
  margin: 0 auto;
  padding: 9px;
  border-radius: 36px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(124,44,255,.12);
  box-shadow: 0 28px 70px rgba(60,35,125,.18);
}

.video-placeholder {
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black);
  background:
    radial-gradient(circle at 26% 20%, rgba(255,107,214,.24), transparent 30%),
    radial-gradient(circle at 76% 76%, rgba(124,44,255,.22), transparent 34%),
    linear-gradient(155deg,#fbf8ff,#eee7ff 52%,#faf7ff);
}

.video-placeholder::before,
.video-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(124,44,255,.10);
}

.video-placeholder::before {
  width: 72%;
  height: 92px;
  top: 17%;
  left: 14%;
}

.video-placeholder::after {
  width: 62%;
  height: 150px;
  bottom: 14%;
  right: 9%;
}

.video-status,
.video-play,
.video-placeholder strong,
.video-placeholder small {
  position: relative;
  z-index: 2;
}

.video-status {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(124,44,255,.12);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  white-space: nowrap;
}

.video-play {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg,var(--purple),var(--violet));
  box-shadow: 0 18px 42px rgba(124,44,255,.32);
  font-size: 25px;
}

.video-placeholder strong {
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: -.03em;
}

.video-placeholder small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.demo-copy{
  max-width:700px;
  margin:0 auto 70px;
  text-align:center;
}

.section-kicker{
  margin:0;
  color:var(--purple);
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:700;
}

.demo-copy h2{
  margin:18px 0;
  font-size:clamp(36px,4vw,58px);
  letter-spacing:-.05em;
}

.demo-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
  font-weight:600;
}

.demo-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  padding:34px;
  border-radius:36px;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(12px);
  border:1px solid rgba(124,44,255,.10);
  box-shadow:0 30px 80px rgba(53,38,105,.08);
}

.demo-left,
.demo-right{
  padding:24px;
}

.demo-title{
  margin-bottom:24px;
  color:var(--purple);
  font-weight:700;
}

.demo-message{
  max-width:85%;
  margin-bottom:14px;
  padding:14px 18px;
  border-radius:20px;
  font-weight:700;
  line-height:1.7;
}

.demo-message.other{
  background:#f0eff5;
}

.demo-message.me{
  margin-left:auto;
  background:#dff7e8;
}

.demo-right h3{
  margin:18px 0 14px;
  font-size:30px;
  letter-spacing:-.03em;
}

.demo-right>p{
  color:var(--muted);
  line-height:1.95;
  font-weight:600;
}

.reply-suggestion{
  margin-top:26px;
  padding:22px;
  border-radius:20px;
  background:rgba(124,44,255,.06);
  border:1px solid rgba(124,44,255,.10);
}

.reply-suggestion span{
  display:block;
  color:var(--purple);
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
}

.reply-suggestion p{
  margin:0;
  line-height:1.9;
  font-weight:700;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.why-card{
  padding:38px 34px;
  border-radius:30px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(10px);
  border:1px solid rgba(124,44,255,.10);
  box-shadow:0 18px 46px rgba(52,37,108,.07);
  transition:.25s;
}

.why-card:hover{
  transform:translateY(-8px);
}

.why-card h3{
  margin:0 0 18px;
  font-size:28px;
  line-height:1.35;
  letter-spacing:-.03em;
}

.why-card p{
  margin:0;
  color:var(--muted);
  line-height:1.95;
  font-weight:600;
}

.desktop-why-content {
  display: none;
}

.faq-section{
  width:min(980px,calc(100% - 48px));
  margin:0 auto;
  padding:120px 0;
}

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

.faq-list details{
  overflow:hidden;
  border-radius:22px;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(10px);
  border:1px solid rgba(124,44,255,.10);
  box-shadow:0 16px 36px rgba(55,40,108,.06);
}

.faq-list summary{
  list-style:none;
  cursor:pointer;
  padding:28px 34px;
  font-size:20px;
  font-weight:700;
  position:relative;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list summary::after{
  content:"+";
  position:absolute;
  right:34px;
  top:24px;
  color:var(--purple);
  font-size:30px;
  font-weight:400;
  transition:.2s;
}

.faq-list details[open] summary::after{
  transform:rotate(45deg);
}

.faq-list p{
  margin:0;
  padding:0 34px 30px;
  color:var(--muted);
  line-height:1.9;
  font-weight:600;
}

.final-cta{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto 120px;
}

.cta-card{
  position:relative;
  overflow:hidden;
  padding:80px;
  border-radius:42px;
  text-align:center;
  background:
      radial-gradient(circle at top right,rgba(255,255,255,.18),transparent 30%),
      linear-gradient(135deg,#6d22ff,#7d39ff,#995eff);
  color:#fff;
  box-shadow:0 24px 60px rgba(85,36,188,.28);
}

.cta-card::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  top:-220px;
  right:-120px;
  filter:blur(18px);
}

.cta-card p{
  margin:0;
  opacity:.9;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:700;
}

.brand-image-cta {
  width: 156px;
  height: auto;
  margin: 0 auto;
}

.cta-card h2{
  margin:20px 0;
  font-size:clamp(42px,5vw,72px);
  line-height:1.12;
  letter-spacing:-.05em;
}

.cta-card span{
  display:block;
  max-width:700px;
  margin:0 auto;
  font-size:18px;
  line-height:2;
  opacity:.95;
}

.cta-card .primary-btn{
  margin-top:38px;
  background:#fff;
  color:var(--purple);
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.footer{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto 50px;
  padding-top:40px;
  border-top:1px solid rgba(124,44,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:26px;
}

.footer-links a{
  color:var(--muted);
  font-weight:700;
  transition:.2s;
}

.footer-links a:hover{
  color:var(--purple);
}

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:
      opacity .8s ease,
      transform .8s ease;
}

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

@media (min-width: 1101px) {
  .hero {
    min-height: 670px;
    padding: 46px 0 58px;
    grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr);
    gap: 68px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    margin: 22px 0 18px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(124,44,255,.14), rgba(255,107,214,.06) 52%, transparent 72%);
    filter: blur(2px);
    pointer-events: none;
  }

  .phone-wrap {
    width: 430px;
    transform: none;
  }

  .phone .line-header {
    display: none;
  }

  .phone .chat-area {
    padding-top: 54px;
    gap: 18px;
  }

  .phone .chat-bubble {
    display: none;
  }

  .phone .chat-placeholder {
    width: 78%;
    min-height: 78px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border-radius: 22px;
  }

  .phone .chat-placeholder span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: rgba(35,35,52,.12);
  }

  .phone .chat-placeholder span:first-child {
    width: 82%;
  }

  .phone .chat-placeholder span:last-child {
    width: 58%;
  }

  .phone .placeholder-other {
    align-self: flex-start;
    background: #f0eff5;
    border-bottom-left-radius: 8px;
  }

  .phone .placeholder-me {
    align-self: flex-end;
    background: #dff7e8;
    border-bottom-right-radius: 8px;
  }

  .phone .placeholder-me span {
    margin-left: auto;
    background: rgba(23,59,37,.15);
  }

  .phone .placeholder-short {
    width: 64%;
  }

  .video-demo-section {
    min-height: 820px;
    padding: 88px 0 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .video-demo-copy {
    max-width: 680px;
    margin-bottom: 36px;
  }

  .video-demo-copy h2 {
    font-size: 48px;
    line-height: 1.16;
    letter-spacing: -.045em;
  }

  .video-demo-copy > p:last-child {
    max-width: 620px;
    margin: 0 auto;
  }

  .video-frame {
    width: 318px;
    padding: 8px;
    border-radius: 34px;
  }

  .video-placeholder {
    border-radius: 27px;
  }

  #features {
    padding: 120px 0 130px;
  }

  .mobile-feature-content {
    display: none;
  }

  .desktop-feature-content {
    display: block;
  }

  .desktop-feature-head {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
  }

  .desktop-feature-head > p {
    margin: 0;
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .desktop-feature-head h2 {
    margin: 18px 0 16px;
    font-size: 48px;
    line-height: 1.16;
    letter-spacing: -.045em;
  }

  .desktop-feature-head > span {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
  }

  .feature-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    align-items: stretch;
    gap: 28px;
  }

  .feature-flow-card {
    min-height: 360px;
    padding: 42px 40px;
    position: relative;
    border-radius: 32px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(124,44,255,.11);
    box-shadow: 0 22px 54px rgba(53,38,105,.08);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .feature-flow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 68px rgba(53,38,105,.13);
  }

  .feature-flow-card h3 {
    margin: 28px 0 14px;
    font-size: 30px;
    letter-spacing: -.035em;
  }

  .feature-flow-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.95;
    font-weight: 600;
  }

  .mobile-why-content {
    display: none;
  }

  .desktop-why-content {
    display: block;
  }

  .desktop-why-head {
    max-width: 760px;
    margin: 0 auto 62px;
    text-align: center;
  }

  .desktop-why-head > p {
    margin: 0;
    color: var(--purple);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .desktop-why-head h2 {
    margin: 18px 0 0;
    font-size: 48px;
    line-height: 1.16;
    letter-spacing: -.045em;
  }

  .desktop-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 26px;
  }

  .desktop-why-card {
    min-height: 310px;
    padding: 36px 32px;
    border-radius: 30px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(124,44,255,.10);
    box-shadow: 0 20px 48px rgba(53,38,105,.07);
  }

  .desktop-why-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 28px;
    border-radius: 999px;
    color: var(--purple);
    background: var(--purple-soft);
    font-size: 12px;
    font-weight: 800;
  }

  .desktop-why-card h3 {
    margin: 26px 0 16px;
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: -.03em;
  }

  .desktop-why-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 600;
  }
}

@media (max-width:1100px){

.hero{
grid-template-columns:1fr;
padding-top:70px;
}

.hero-copy{
text-align:center;
}

.hero-lead{
margin:auto;
}

.hero-tags,
.hero-actions{
justify-content:center;
}


.feature-grid,
.why-grid,
.proof,
.demo-card{
grid-template-columns:1fr;
}

.footer{
flex-direction:column;
text-align:center;
}

}

/* ===== HERO RIGHT RESET - FINAL SINGLE SOURCE ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
  transform: none;
}

.phone-wrap {
  transform: translateX(4px);
  width: 520px;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 18px 0;
  overflow: visible;
}

.phone {
    margin: 0 auto;
  width:338px;
  height: 553px;
  margin: 0 auto;
  padding: 22px 20px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background: #fff;
  border: 6px solid #d7dbe2;
  box-shadow: 0 14px 28px rgba(20, 24, 38, 0.10);
  isolation: isolate;
}

.analysis-card {
  position: absolute;
  right: -18px;
  bottom: 76px;
  width: 210px;
  padding: 0;
  border-radius: 24px;
  background: transparent;
  border: none;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  z-index: 5;
  overflow: visible;
}

.analysis-card.image-card img,
.analysis-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.report-flow-label,
.report-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav { display: none; }

  .site-header {
    width: calc(100% - 24px);
    height: 72px;
    margin-top: 12px;
    padding: 0 14px;
    top: 12px;
  }

  .brand-image-header {
    height: 44px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

  /* Mobile Hero: single source of truth */
  .hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 12px 48px;
    text-align: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1 {
    max-width: 340px !important;
    margin: 18px auto 16px !important;
    font-size: 40px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
    font-weight: 700 !important;
    white-space: normal !important;
  }

  .hero-lead {
    max-width: 340px;
    margin: 0 auto 24px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 340px;
    margin: 0 auto 28px;
  }

  .hero-actions {
    display: none;
    flex-direction: column;
    gap: 16px;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-actions a { width: 100%; }

  .video-demo-section {
    width: 100%;
    padding: 88px 18px 100px;
  }

  .video-demo-copy {
    margin-bottom: 34px;
  }

  .video-demo-copy h2 {
    font-size: 36px;
  }

  .video-demo-copy > p:last-child {
    max-width: 340px;
    margin: 0 auto;
    font-size: 15px;
  }

  .video-frame {
    width: min(88vw, 340px);
  }

  .hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    overflow: visible;
  }

  .phone-wrap {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    transform: none;
  }

  .phone {
    width: min(86vw, 330px);
    height: auto;
    aspect-ratio: 9 / 15.72;
    margin: 0 auto;
    padding: 18px 14px 16px;
    border: 5px solid #d7dbe2;
    border-radius: 44px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(20,24,38,.14);
    overflow: hidden;
  }

  .analysis-card {
    position: relative;
    width: min(90vw, 360px);
    right: auto;
    bottom: auto;
    margin: 62px auto 0;
    padding: 10px 10px 12px;
    border-radius: 26px;
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(124,44,255,.14);
    box-shadow: 0 24px 60px rgba(62,35,128,.18);
    z-index: 5;
    overflow: visible;
  }

  .analysis-card.image-card img,
  .analysis-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
  }

  .report-flow-label {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: -43px;
    transform: translateX(-50%);
    min-width: 88px;
    height: 31px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    background: var(--purple-soft);
    border: 1px solid rgba(124,44,255,.14);
    white-space: nowrap;
  }

  .report-flow-label::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -27px;
    width: 1px;
    height: 26px;
    background: linear-gradient(var(--purple), rgba(124,44,255,.12));
  }

  .report-preview {
    position: relative;
    max-height: 430px;
    overflow: hidden;
    border-radius: 18px;
    transition: max-height .7s ease;
  }

  .report-preview::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    background: linear-gradient(transparent, rgba(255,255,255,.98));
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .analysis-card.report-open .report-preview {
    max-height: 2200px;
  }

  .analysis-card.report-open .report-preview::after {
    opacity: 0;
  }

  .report-toggle {
    width: calc(100% - 20px);
    min-height: 48px;
    margin: -30px 10px 0;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg,var(--purple),var(--violet));
    box-shadow: 0 12px 28px rgba(124,44,255,.28);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
  }

  .analysis-card.report-open .report-toggle {
    margin-top: 12px;
  }
}
