*{box-sizing:border-box}
:root{
  --navy:#0d2f52;
  --navy2:#173e67;
  --orange:#ff641d;
  --orange2:#ff7a2f;
  --cream:#fbf8f2;
  --paper:#f5efe7;
  --ink:#12263c;
  --muted:#6e7781;
  --line:#e5ded4;
  --white:#fff;
}
html,body{
  margin:0;
  padding:0;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans TC","PingFang TC","Microsoft JhengHei",Arial,sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.5;
  padding-bottom:88px;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.page{
  width:100%;
  max-width:760px;
  margin:0 auto;
  padding:12px;
}
.card-shell{
  width:100%;
  border-radius:24px;
}
.hero{
  background:linear-gradient(180deg,#fff 0%,#fcfaf6 100%);
  padding:20px 16px 24px;
  text-align:center;
}
.inline-logo{
  width:100%;
  max-width:560px;
  margin:0 auto 8px;
}
.inline-logo svg{
  display:block;
  width:100%;
  height:auto;
}
h1{
  margin:8px 0 0;
  font-size:clamp(38px,11vw,66px);
  line-height:1.06;
  letter-spacing:-.05em;
  word-break:keep-all;
}
.subline{
  margin:18px auto 0;
  font-size:clamp(15px,4.2vw,21px);
  color:var(--muted);
  white-space:normal;
  overflow-wrap:anywhere;
}
.cta{
  width:100%;
  min-height:64px;
  padding:0 18px;
  margin-top:24px;
  border-radius:22px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:12px;
  font-size:clamp(18px,5vw,24px);
  font-weight:950;
}
.primary{
  background:linear-gradient(90deg,var(--orange),var(--orange2));
  color:#fff;
  box-shadow:0 18px 38px rgba(255,100,29,.28);
  animation:pulse 1.6s ease-in-out infinite;
}
.line-badge{
  width:48px;
  height:36px;
  border-radius:18px;
  background:#fff;
  color:var(--orange);
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:950;
}
.arrow{font-size:34px;line-height:1}
.micro{
  margin:14px 0 0;
  color:#34495d;
  font-size:14px;
}
.panel{
  margin-top:14px;
  padding:20px 14px;
  background:#fff;
  border:1px solid var(--line);
}
.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.section-title span{
  flex:0 0 34px;
  height:2px;
  background:var(--orange);
}
.section-title h2{
  margin:0;
  text-align:center;
  font-size:clamp(22px,6.4vw,32px);
  line-height:1.2;
}
.benefits,.services{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:22px;
}
.benefits article,.services article{
  min-width:0;
  padding:14px 10px;
  text-align:center;
  border-radius:16px;
  background:#fbfaf7;
  border:1px solid #eee7dd;
}
.icon,.service-icon{
  min-height:46px;
  display:grid;
  place-items:center;
  font-size:34px;
  color:var(--navy);
}
.benefits h3,.services h3{
  margin:9px 0 4px;
  font-size:clamp(17px,4.7vw,22px);
  line-height:1.25;
  word-break:keep-all;
}
.benefits p,.services p{
  margin:0;
  color:var(--muted);
  font-size:clamp(13px,3.7vw,16px);
  line-height:1.5;
}
.risk{
  margin-top:14px;
  padding:18px;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  align-items:start;
}
.risk-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:var(--orange);
  background:rgba(255,255,255,.08);
  font-size:28px;
}
.risk h2{
  margin:0;
  font-size:22px;
}
.risk p{
  margin:6px 0 0;
  color:#dbe5ef;
  font-size:14px;
}
.bottom-cta-wrap{
  padding:0 0 12px;
}
.bottom-cta-wrap .cta{
  margin-top:14px;
}
.sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:50;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.96);
  border-top:1px solid var(--line);
  backdrop-filter:blur(12px);
}
.sticky-cta a{
  width:min(100%,760px);
  min-height:60px;
  margin:0 auto;
  padding:0 18px;
  border-radius:20px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:12px;
  background:linear-gradient(90deg,var(--orange),var(--orange2));
  color:#fff;
  font-size:18px;
  font-weight:950;
  animation:pulse 1.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(255,100,29,.28)}
  50%{transform:scale(1.025);box-shadow:0 0 0 9px rgba(255,100,29,0),0 0 24px rgba(255,100,29,.3)}
}
@media(min-width:700px){
  body{padding-bottom:0}
  .page{padding:24px}
  .hero{padding:30px 28px 34px}
  .panel{padding:28px}
  .benefits,.services{grid-template-columns:repeat(4,minmax(0,1fr))}
  .sticky-cta{display:none}
  .bottom-cta-wrap{padding-bottom:24px}
}
@media(max-width:360px){
  .page{padding:8px}
  .hero{padding-left:12px;padding-right:12px}
  .cta,.sticky-cta a{padding-left:12px;padding-right:12px;gap:8px}
  .line-badge{width:42px}
  .benefits,.services{gap:8px}
  .benefits article,.services article{padding:12px 7px}
}

/* iPhone / in-app browser hardening */
.page, .hero, .panel, .risk, .bottom-cta-wrap,
.hero-copy, .benefits article, .services article, .risk > * {
  min-width:0;
  max-width:100%;
}
h1,h2,h3,p,strong,span{
  overflow-wrap:break-word;
}
@media(max-width:480px){
  .page{padding:8px}
  .hero{padding:14px 12px 20px}
  .inline-logo{max-width:330px;margin-bottom:4px}
  h1{font-size:40px;line-height:1.08;margin-top:4px}
  .subline{font-size:14px;line-height:1.45;margin-top:14px}
  .cta{min-height:58px;margin-top:18px;font-size:17px;border-radius:18px}
  .line-badge{width:42px;height:32px;font-size:11px}
  .micro{font-size:12px;margin-top:10px}
  .panel{padding:17px 10px}
  .section-title{gap:8px}
  .section-title span{flex-basis:24px}
  .section-title h2{font-size:22px}
  .benefits,.services{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:16px}
  .benefits article,.services article{padding:11px 6px;border-radius:13px}
  .icon,.service-icon{min-height:38px;font-size:27px}
  .benefits h3,.services h3{font-size:16px;margin-top:6px}
  .benefits p,.services p{font-size:12px;line-height:1.4}
  .risk{padding:15px;grid-template-columns:40px 1fr;gap:10px}
  .risk-icon{width:40px;height:40px;font-size:23px}
  .risk h2{font-size:19px}
  .risk p{font-size:12px;line-height:1.45}
  .sticky-cta a{min-height:56px;font-size:17px}
}

/* V8 domain consistency hardening */
:root{
  color-scheme: light;
}
html{
  background:#fbf8f2;
}
body{
  min-width:320px;
  font-size:16px;
}
.page{
  box-sizing:border-box;
  margin-inline:auto !important;
}
.card-shell,
.hero,
.panel,
.risk,
.bottom-cta-wrap{
  width:100% !important;
}
@media (min-width:761px){
  .page{
    max-width:760px !important;
  }
}
@supports (-webkit-touch-callout:none){
  body{
    -webkit-text-size-adjust:100% !important;
  }
}
