*{box-sizing:border-box}
html,body{margin:0;padding:0;background:#05070a}
body{
  font-family:
    Inter,
    "Noto Sans TC",
    "PingFang TC",
    "Microsoft JhengHei",
    Arial,
    sans-serif;
  color:#f7f9fc;
}

.rock-hero{
  --bg:#05070a;
  --panel:#0b1018;
  --line:rgba(255,255,255,.12);
  --text:#f7f9fc;
  --muted:#aeb8c6;
  --blue:#49a8ff;
  --violet:#8a72ff;
  --cyan:#55e6ff;

  position:relative;
  overflow:hidden;
  min-height:680px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 15% 10%,rgba(73,168,255,.18),transparent 30%),
    radial-gradient(circle at 88% 18%,rgba(138,114,255,.18),transparent 34%),
    radial-gradient(circle at 70% 85%,rgba(85,230,255,.08),transparent 28%),
    linear-gradient(145deg,#05070a 0%,#080b11 48%,#05070a 100%);
  isolation:isolate;
}

.rock-hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:54px 54px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.8),transparent 90%);
  z-index:-1;
}

.rock-hero::after{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  right:-170px;
  bottom:-180px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(73,168,255,.18),rgba(138,114,255,.12));
  filter:blur(12px);
  z-index:-1;
}

.rock-hero__inner{
  width:min(1180px,calc(100% - 36px));
  margin:auto;
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(330px,.85fr);
  gap:56px;
  align-items:center;
  padding:72px 0;
}

.rock-hero__brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:36px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  color:#cdd6e2;
  font-size:13px;
  font-weight:750;
  letter-spacing:.08em;
}

.rock-hero__dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--cyan),var(--violet));
  box-shadow:0 0 18px rgba(85,230,255,.6);
}

.rock-hero h1{
  max-width:760px;
  margin:24px 0 16px;
  font-size:clamp(46px,7vw,82px);
  line-height:1.04;
  letter-spacing:-.045em;
  font-weight:900;
}

.rock-hero h1 .grad{
  display:block;
  margin-top:8px;
  background:linear-gradient(100deg,#ffffff 10%,#8fd0ff 48%,#a78cff 88%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.rock-hero__sub{
  max-width:760px;
  margin:0;
  color:var(--muted);
  font-size:clamp(16px,2vw,20px);
  line-height:1.85;
  font-weight:500;
}

.rock-hero__tags{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:24px;
}

.rock-hero__tag{
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  color:#d9e0ea;
  font-size:13px;
  font-weight:700;
}

.rock-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.rock-btn{
  min-height:54px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-radius:15px;
  text-decoration:none;
  font-size:15px;
  font-weight:850;
  transition:.22s ease;
}

.rock-btn--primary{
  color:#041019;
  background:linear-gradient(110deg,#5ce8ff 0%,#59b8ff 52%,#8a72ff 100%);
  box-shadow:0 12px 34px rgba(73,168,255,.2);
}

.rock-btn--secondary{
  color:#f4f7fb;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.045);
}

.rock-btn:hover{transform:translateY(-2px)}

.rock-hero__quick{
  display:flex;
  flex-wrap:wrap;
  gap:14px 22px;
  margin-top:24px;
  color:#8793a3;
  font-size:12px;
}

.rock-hero__visual{
  position:relative;
  min-height:480px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.rock-hero__panel{
  position:relative;
  width:100%;
  max-width:430px;
  padding:24px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:28px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025)),
    rgba(8,12,18,.78);
  box-shadow:0 34px 90px rgba(0,0,0,.42);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
}

.rock-hero__panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:28px;
  padding:1px;
  background:linear-gradient(145deg,rgba(85,230,255,.65),rgba(255,255,255,.05),rgba(138,114,255,.5));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.rock-hero__mini{
  color:#8fd0ff;
  font-size:11px;
  font-weight:850;
  letter-spacing:.16em;
}

.rock-hero__panel h2{
  margin:8px 0 6px;
  font-size:29px;
  line-height:1.25;
  letter-spacing:-.02em;
}

.rock-hero__panel p{
  margin:0 0 20px;
  color:#99a5b4;
  font-size:14px;
  line-height:1.7;
}

.rock-price{
  display:grid;
  gap:10px;
}

.rock-price__item{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  align-items:center;
  padding:16px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  background:rgba(255,255,255,.025);
}

.rock-price__item strong{
  display:block;
  font-size:15px;
}

.rock-price__item span{
  display:block;
  margin-top:2px;
  color:#8793a3;
  font-size:12px;
}

.rock-price__value{
  font-size:18px;
  font-weight:900;
  color:#f5f8fc;
}

.rock-price__value em{
  font-style:normal;
  background:linear-gradient(90deg,#72e9ff,#9b84ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.rock-service-area{
  margin-top:14px;
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(135deg,rgba(73,168,255,.06),rgba(138,114,255,.05));
}

.rock-service-area b{
  display:block;
  margin-bottom:6px;
  font-size:13px;
  color:#dce6f2;
}

.rock-service-area span{
  color:#8f9baa;
  font-size:12px;
  line-height:1.7;
}

@media(max-width:900px){
  .rock-hero{min-height:auto}
  .rock-hero__inner{
    grid-template-columns:1fr;
    gap:32px;
    padding:48px 0 56px;
  }
  .rock-hero__visual{min-height:auto}
  .rock-hero__panel{max-width:none}
}

@media(max-width:600px){
  .rock-hero__inner{
    width:min(100% - 22px,1180px);
    padding-top:26px;
  }
  .rock-hero h1{
    font-size:clamp(42px,13vw,60px);
    line-height:1.06;
  }
  .rock-hero__sub{font-size:16px}
  .rock-hero__actions{display:grid;grid-template-columns:1fr}
  .rock-btn{width:100%}
  .rock-hero__panel{padding:18px;border-radius:22px}
  .rock-price__item{padding:14px}
}

.rock-section{
  --line:rgba(255,255,255,.11);
  --muted:#aeb8c6;
  --blue:#49a8ff;
  --violet:#8a72ff;
  --cyan:#55e6ff;
  background:#05070a;
  color:#f7f9fc;
  padding:72px 0 0;
}
.rock-section__inner{
  width:min(1180px,calc(100% - 36px));
  margin:auto;
}
.rock-section__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:12px;
  color:#89d7ff;
  font-size:12px;
  font-weight:850;
  letter-spacing:.14em;
}
.rock-section h2{
  margin:0;
  font-size:clamp(32px,5vw,52px);
  line-height:1.18;
  letter-spacing:-.035em;
  font-weight:900;
}
.rock-section__desc{
  max-width:880px;
  margin:14px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.85;
}
.rock-section__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}
.rock-card{
  min-width:0;
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018)),
    #090d13;
}
.rock-card--accent{
  border-color:rgba(73,168,255,.28);
  background:
    radial-gradient(circle at 100% 0,rgba(73,168,255,.11),transparent 44%),
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018)),
    #090d13;
}
.rock-card--violet{
  border-color:rgba(138,114,255,.26);
  background:
    radial-gradient(circle at 100% 0,rgba(138,114,255,.12),transparent 44%),
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018)),
    #090d13;
}
.rock-card__kicker{
  color:#89d7ff;
  font-size:11px;
  font-weight:850;
  letter-spacing:.13em;
}
.rock-card h3{
  margin:8px 0 8px;
  font-size:24px;
  line-height:1.35;
  letter-spacing:-.02em;
}
.rock-card p{
  margin:0;
  color:#9da8b7;
  font-size:14px;
  line-height:1.8;
}
.rock-card__price{
  margin:18px 0 6px;
  font-size:36px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
}
.rock-card__price span{
  background:linear-gradient(95deg,#6deaff,#67b8ff,#9d85ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.rock-card__note{
  color:#7f8b9b!important;
  font-size:12px!important;
}
.rock-feature-list{
  display:grid;
  gap:10px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
}
.rock-feature-list li{
  position:relative;
  padding-left:18px;
  color:#bdc6d2;
  font-size:13px;
}
.rock-feature-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg,#5ce8ff,#8a72ff);
}
.rock-speed{
  margin-top:28px;
  padding:22px 24px;
  border:1px solid rgba(85,230,255,.2);
  border-radius:20px;
  background:linear-gradient(110deg,rgba(85,230,255,.07),rgba(138,114,255,.06));
}
.rock-speed strong{
  display:block;
  margin-bottom:6px;
  font-size:20px;
}
.rock-speed span{
  color:#98a4b3;
  font-size:13px;
  line-height:1.75;
}
.rock-route-card__icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:13px;
  background:rgba(255,255,255,.035);
  font-size:19px;
}
.rock-section--last{
  padding-bottom:82px;
}
@media(max-width:900px){
  .rock-section__grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .rock-section{
    padding-top:52px;
  }
  .rock-section__inner{
    width:min(100% - 22px,1180px);
  }
  .rock-card{
    padding:20px;
  }
}


.rock-card__cta{
  margin-top:20px;
}
.rock-card__cta a{
  width:100%;
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 16px;
  border-radius:14px;
  text-decoration:none;
  font-size:14px;
  font-weight:850;
  color:#041019;
  background:linear-gradient(110deg,#5ce8ff 0%,#59b8ff 52%,#8a72ff 100%);
  box-shadow:0 10px 28px rgba(73,168,255,.16);
  transition:.2s ease;
}
.rock-card__cta a:hover{
  transform:translateY(-1px);
}


#rock-intercity .rock-section__grid{
  display:flex;
  gap:16px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  padding:2px 2px 14px;
  scrollbar-width:thin;
  scrollbar-color:rgba(120,160,210,.45) rgba(255,255,255,.04);
}
#rock-intercity .rock-section__grid::-webkit-scrollbar{
  height:8px;
}
#rock-intercity .rock-section__grid::-webkit-scrollbar-track{
  background:rgba(255,255,255,.04);
  border-radius:999px;
}
#rock-intercity .rock-section__grid::-webkit-scrollbar-thumb{
  background:linear-gradient(90deg,rgba(92,232,255,.72),rgba(138,114,255,.72));
  border-radius:999px;
}
#rock-intercity .rock-card{
  flex:0 0 calc((100% - 32px)/3);
  scroll-snap-align:start;
}
#rock-intercity .rock-slider-hint{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
  color:#7f8b9b;
  font-size:12px;
}
#rock-intercity .rock-slider-hint::before{
  content:"↔";
  color:#77dfff;
  font-size:16px;
}
@media(max-width:900px){
  #rock-intercity .rock-card{
    flex:0 0 78%;
  }
}
@media(max-width:600px){
  #rock-intercity .rock-card{
    flex:0 0 88%;
  }
}


.rock-flow{
  --line:rgba(255,255,255,.11);
  --muted:#aeb8c6;
  --blue:#49a8ff;
  --violet:#8a72ff;
  --cyan:#55e6ff;
  background:#05070a;
  color:#f7f9fc;
  padding:72px 0 0;
}
.rock-flow__inner{
  width:min(1180px,calc(100% - 36px));
  margin:auto;
}
.rock-flow__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:12px;
  color:#89d7ff;
  font-size:12px;
  font-weight:850;
  letter-spacing:.14em;
}
.rock-flow h2{
  margin:0;
  font-size:clamp(32px,5vw,52px);
  line-height:1.18;
  letter-spacing:-.035em;
  font-weight:900;
}
.rock-flow__desc{
  max-width:880px;
  margin:14px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.85;
}
.rock-flow__steps{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:30px;
}
.rock-flow__step{
  position:relative;
  min-width:0;
  padding:26px 24px 24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018)),
    #090d13;
}
.rock-flow__step:not(:last-child)::after{
  content:"›";
  position:absolute;
  top:50%;
  right:-17px;
  transform:translateY(-50%);
  z-index:2;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.1);
  border-radius:50%;
  background:#080c12;
  color:#7fdfff;
  font-size:26px;
  line-height:1;
  font-weight:500;
}
.rock-flow__num{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:14px;
  background:linear-gradient(135deg,rgba(92,232,255,.14),rgba(138,114,255,.15));
  border:1px solid rgba(92,232,255,.18);
  color:#dff9ff;
  font-size:18px;
  font-weight:900;
}
.rock-flow__step h3{
  margin:0 0 8px;
  font-size:23px;
  line-height:1.35;
  letter-spacing:-.02em;
}
.rock-flow__step p{
  margin:0;
  color:#9da8b7;
  font-size:14px;
  line-height:1.8;
}
.rock-flow__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}
.rock-flow__meta span{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.025);
  color:#93a0af;
  font-size:11px;
  font-weight:700;
}
.rock-flow__cta{
  margin-top:22px;
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border:1px solid rgba(85,230,255,.19);
  border-radius:20px;
  background:linear-gradient(110deg,rgba(85,230,255,.07),rgba(138,114,255,.06));
}
.rock-flow__cta strong{
  display:block;
  margin-bottom:4px;
  font-size:19px;
}
.rock-flow__cta span{
  color:#98a4b3;
  font-size:13px;
  line-height:1.7;
}
.rock-flow__cta a{
  flex:0 0 auto;
  min-height:48px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  text-decoration:none;
  color:#041019;
  background:linear-gradient(110deg,#5ce8ff 0%,#59b8ff 52%,#8a72ff 100%);
  font-size:14px;
  font-weight:850;
}
@media(max-width:900px){
  .rock-flow__steps{grid-template-columns:1fr}
  .rock-flow__step:not(:last-child)::after{
    content:"↓";
    top:auto;
    right:50%;
    bottom:-26px;
    transform:translateX(50%);
  }
  .rock-flow__cta{
    align-items:flex-start;
    flex-direction:column;
  }
  .rock-flow__cta a{width:100%}
}
@media(max-width:600px){
  .rock-flow{padding-top:52px}
  .rock-flow__inner{width:min(100% - 22px,1180px)}
  .rock-flow__step{padding:22px 20px}
}


.rock-brand-story{
  background:#05070a;
  color:#f7f9fc;
  padding:72px 0 0;
}
.rock-brand-story__inner{
  width:min(1180px,calc(100% - 36px));
  margin:auto;
}
.rock-brand-story__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:12px;
  color:#89d7ff;
  font-size:12px;
  font-weight:850;
  letter-spacing:.14em;
}
.rock-brand-story h2{
  margin:0;
  font-size:clamp(32px,5vw,52px);
  line-height:1.18;
  letter-spacing:-.035em;
  font-weight:900;
}
.rock-brand-story__lead{
  max-width:920px;
  margin:16px 0 0;
  color:#b2bdca;
  font-size:16px;
  line-height:1.9;
}
.rock-brand-story__grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  margin-top:28px;
}
.rock-brand-story__main{
  padding:28px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:24px;
  background:
    radial-gradient(circle at 100% 0,rgba(73,168,255,.10),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018)),
    #090d13;
}
.rock-brand-story__main p{
  margin:0;
  color:#aeb8c6;
  font-size:15px;
  line-height:1.95;
}
.rock-brand-story__trust{
  display:grid;
  gap:12px;
}
.rock-brand-story__trust-card{
  padding:20px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  background:#090d13;
}
.rock-brand-story__trust-card strong{
  display:block;
  margin-bottom:5px;
  color:#f7f9fc;
  font-size:16px;
}
.rock-brand-story__trust-card span{
  display:block;
  color:#909cab;
  font-size:13px;
  line-height:1.7;
}
.rock-brand-story__trust-card b{
  display:inline-block;
  margin-right:7px;
  background:linear-gradient(95deg,#6deaff,#67b8ff,#9d85ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  font-size:20px;
}
@media(max-width:900px){
  .rock-brand-story__grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .rock-brand-story{padding-top:52px}
  .rock-brand-story__inner{width:min(100% - 22px,1180px)}
  .rock-brand-story__main{padding:22px}
}


.rock-faq{
  background:#05070a;
  color:#f7f9fc;
  padding:72px 0 82px;
}
.rock-faq__inner{
  width:min(1180px,calc(100% - 36px));
  margin:auto;
}
.rock-faq__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:12px;
  color:#89d7ff;
  font-size:12px;
  font-weight:850;
  letter-spacing:.14em;
}
.rock-faq h2{
  margin:0;
  font-size:clamp(32px,5vw,52px);
  line-height:1.18;
  letter-spacing:-.035em;
  font-weight:900;
}
.rock-faq__desc{
  max-width:880px;
  margin:14px 0 0;
  color:#aeb8c6;
  font-size:16px;
  line-height:1.85;
}
.rock-faq__list{
  display:grid;
  gap:12px;
  margin-top:28px;
}
.rock-faq details{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  border-radius:18px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.015)),
    #090d13;
}
.rock-faq summary{
  position:relative;
  list-style:none;
  cursor:pointer;
  padding:19px 54px 19px 20px;
  color:#f4f7fb;
  font-size:16px;
  font-weight:800;
  line-height:1.55;
}
.rock-faq summary::-webkit-details-marker{display:none}
.rock-faq summary::after{
  content:"+";
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:linear-gradient(135deg,rgba(92,232,255,.12),rgba(138,114,255,.13));
  color:#83dfff;
  font-size:20px;
  line-height:1;
}
.rock-faq details[open] summary::after{content:"−"}
.rock-faq__answer{
  padding:0 20px 20px;
  color:#9da8b7;
  font-size:14px;
  line-height:1.85;
}
.rock-faq__cta{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px;
  border:1px solid rgba(85,230,255,.18);
  border-radius:18px;
  background:linear-gradient(110deg,rgba(85,230,255,.06),rgba(138,114,255,.06));
}
.rock-faq__cta strong{
  display:block;
  margin-bottom:4px;
  font-size:18px;
}
.rock-faq__cta span{
  color:#96a2b1;
  font-size:13px;
}
.rock-faq__cta a{
  flex:0 0 auto;
  min-height:46px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  text-decoration:none;
  color:#041019;
  background:linear-gradient(110deg,#5ce8ff 0%,#59b8ff 52%,#8a72ff 100%);
  font-size:14px;
  font-weight:850;
}
@media(max-width:700px){
  .rock-faq{padding-top:52px}
  .rock-faq__inner{width:min(100% - 22px,1180px)}
  .rock-faq__cta{align-items:flex-start;flex-direction:column}
  .rock-faq__cta a{width:100%}
}



.rock-safety-warning{
  background:linear-gradient(180deg,#06090e 0%,#070c14 100%);
  color:#f7f9fc;
  padding:72px 0 10px;
}
.rock-safety-warning__inner{
  width:min(1180px,calc(100% - 36px));
  margin:auto;
}
.rock-safety-warning__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:12px;
  color:#ff9dc9;
  font-size:12px;
  font-weight:850;
  letter-spacing:.14em;
}
.rock-safety-warning h2{
  margin:0;
  font-size:clamp(30px,5vw,50px);
  line-height:1.18;
  letter-spacing:-.035em;
  font-weight:900;
}
.rock-safety-warning__desc{
  max-width:920px;
  margin:14px 0 0;
  color:#aeb8c6;
  font-size:16px;
  line-height:1.9;
}
.rock-safety-warning__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:28px;
}
.rock-safety-warning__card{
  min-height:100%;
  padding:22px 20px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.015)),
    #0a1018;
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}
.rock-safety-warning__icon{
  width:52px;
  height:52px;
  margin-bottom:16px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(135deg,rgba(255,143,196,.18),rgba(84,178,255,.14));
  color:#ffd2ea;
  font-size:24px;
  font-weight:900;
}
.rock-safety-warning__card h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.35;
  font-weight:850;
}
.rock-safety-warning__card p{
  margin:0;
  color:#aeb8c6;
  font-size:14px;
  line-height:1.85;
}
.rock-safety-warning__tip{
  margin-top:22px;
  padding:20px 22px;
  border:1px solid rgba(255,157,201,.2);
  border-radius:18px;
  background:linear-gradient(110deg,rgba(255,157,201,.08),rgba(84,178,255,.06));
}
.rock-safety-warning__tip strong{
  display:block;
  margin-bottom:8px;
  font-size:18px;
}
.rock-safety-warning__tip p{
  margin:0;
  color:#c6d0dc;
  font-size:14px;
  line-height:1.85;
}
@media(max-width:900px){
  .rock-safety-warning__grid{grid-template-columns:1fr}
}
@media(max-width:700px){
  .rock-safety-warning{padding-top:52px}
  .rock-safety-warning__inner{width:min(100% - 22px,1180px)}
}
