.scc-page {
  --scc-navy: #071a31;
  --scc-blue: #1f6feb;
  --scc-blue-dark: #1558bd;
  --scc-cyan: #29b8c8;
  --scc-yellow: #f7bf3c;
  --scc-ink: #122238;
  --scc-text: #4a5a70;
  --scc-muted: #78869a;
  --scc-line: #dce5ef;
  --scc-soft: #f5f8fc;
  padding: 76px 0 0 !important;
  overflow: hidden;
  color: var(--scc-text);
  background: #fff;
}

.scc-page *, .scc-page *::before, .scc-page *::after { box-sizing: border-box; }
.scc-page h1, .scc-page h2, .scc-page h3, .scc-page p { margin-top: 0; }
.scc-page a { text-decoration: none; }
.scc-container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }

.scc-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 8% 12%, rgba(41,184,200,.16), transparent 31%),
    radial-gradient(circle at 84% 18%, rgba(31,111,235,.15), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 56%, #f7fbfd 100%);
}

.scc-hero::before {
  content: "";
  position: absolute;
  inset: auto -130px -200px auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(31,111,235,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(31,111,235,.035), 0 0 0 136px rgba(31,111,235,.025);
}

.scc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}

.scc-eyebrow, .scc-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--scc-blue);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .12em;
}

.scc-eyebrow {
  padding: 9px 13px;
  color: #15529d;
  border: 1px solid rgba(31,111,235,.17);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 28px rgba(31,111,235,.07);
  letter-spacing: -.01em;
}

.scc-hero h1 {
  margin: 24px 0 22px;
  color: var(--scc-navy);
  font-size: clamp(42px, 4.3vw, 66px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -.055em;
}

.scc-hero h1 strong { color: var(--scc-blue); font-weight: 800; }
.scc-hero-description { max-width: 610px; margin-bottom: 23px; font-size: 18px; line-height: 1.8; word-break: keep-all; }
.scc-hero-points { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 32px; }
.scc-hero-points span { display: inline-flex; align-items: center; gap: 7px; color: #2d425c; font-size: 14px; font-weight: 700; }
.scc-hero-points i { color: var(--scc-cyan); }
.scc-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.scc-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.scc-button:hover { transform: translateY(-2px); text-decoration: none; }
.scc-button-primary { color: #fff !important; background: linear-gradient(135deg, var(--scc-blue), var(--scc-blue-dark)); box-shadow: 0 14px 30px rgba(31,111,235,.23); }
.scc-button-primary:hover { color: #fff !important; box-shadow: 0 18px 36px rgba(31,111,235,.29); }
.scc-button-secondary { color: var(--scc-navy) !important; border-color: #cfdbea; background: rgba(255,255,255,.8); }
.scc-button-secondary:hover { color: var(--scc-blue) !important; background: #fff; box-shadow: 0 12px 30px rgba(8,27,51,.08); }
.scc-button-light { color: var(--scc-navy) !important; background: #fff; box-shadow: 0 12px 28px rgba(2,19,41,.18); }

.scc-image-frame {
  position: relative;
  min-height: 430px;
  border: 10px solid rgba(255,255,255,.88);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8,27,51,.2);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
}
.scc-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(4,19,39,.18), transparent 52%); pointer-events: none; }
.scc-image-frame > img { width: 100%; height: 430px; display: block; object-fit: cover; object-position: center; filter: saturate(.9) contrast(1.04) brightness(1.08); }
.scc-live-card, .scc-log-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 16px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 14px 34px rgba(8,27,51,.18);
  backdrop-filter: blur(10px);
}
.scc-live-card { top: 22px; right: 22px; }
.scc-log-card { left: 22px; bottom: 22px; }
.scc-live-card small, .scc-log-card small { display: block; margin-bottom: 2px; color: var(--scc-muted); font-size: 11px; font-weight: 700; }
.scc-live-card strong, .scc-log-card strong { display: block; color: var(--scc-ink); font-size: 14px; font-weight: 800; }
.scc-live-dot { width: 12px; height: 12px; border-radius: 50%; background: #22bd83; box-shadow: 0 0 0 6px rgba(34,189,131,.13); }
.scc-log-card i { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; border-radius: 12px; background: linear-gradient(135deg, var(--scc-blue), var(--scc-cyan)); }

.scc-summary { position: relative; z-index: 3; margin-top: -52px; }
.scc-summary-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.scc-summary article {
  position: relative;
  min-height: 205px;
  padding: 32px;
  border: 1px solid rgba(220,229,239,.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(8,27,51,.10);
  overflow: hidden;
}
.scc-summary article > i { margin-bottom: 24px; color: var(--scc-blue); font-size: 27px; }
.scc-summary h2 { margin-bottom: 10px; color: var(--scc-ink); font-size: 20px; line-height: 1.4; font-weight: 800; letter-spacing: -.035em; }
.scc-summary p { margin-bottom: 0; font-size: 14px; line-height: 1.75; word-break: keep-all; }
.scc-card-number { position: absolute; top: 22px; right: 24px; color: #e6edf6; font-family: Inter, sans-serif; font-size: 34px; font-weight: 800; }

.scc-section { padding: 110px 0; }
.scc-safety-section { background: #fff; }
.scc-split { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 84px; }
.scc-photo-card { position: relative; min-height: 500px; border-radius: 28px; overflow: hidden; box-shadow: 0 30px 70px rgba(8,27,51,.16); }
.scc-photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,22,44,.84), rgba(5,22,44,0) 60%); }
.scc-photo-card img { width: 100%; height: 500px; display: block; object-fit: cover; }
.scc-photo-caption { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 32px; color: #fff; }
.scc-photo-caption span { display: block; margin-bottom: 10px; color: #aee9ef; font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.scc-photo-caption strong { font-size: 22px; line-height: 1.55; font-weight: 800; letter-spacing: -.035em; }
.scc-section-copy h2, .scc-section-heading h2 { color: var(--scc-ink); font-size: clamp(32px,3.5vw,48px); line-height: 1.28; font-weight: 800; letter-spacing: -.05em; }
.scc-section-copy h2 { margin: 15px 0 22px; }
.scc-section-copy > p { margin-bottom: 30px; font-size: 16px; line-height: 1.85; word-break: keep-all; }
.scc-check-list { display: grid; gap: 18px; }
.scc-check-list > div { display: flex; align-items: flex-start; gap: 14px; }
.scc-check-list i { margin-top: 3px; color: var(--scc-blue); font-size: 20px; }
.scc-check-list span { display: grid; gap: 4px; }
.scc-check-list strong { color: var(--scc-ink); font-size: 15px; font-weight: 800; }
.scc-check-list small { color: var(--scc-muted); font-size: 13px; line-height: 1.6; }

.scc-system-section { background: var(--scc-soft); }
.scc-section-heading { max-width: 800px; margin: 0 auto 56px; text-align: center; }
.scc-section-heading h2 { margin: 15px 0 18px; }
.scc-section-heading p { margin: 0; font-size: 16px; line-height: 1.8; word-break: keep-all; }
.scc-flow { display: grid; grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr; align-items: stretch; }
.scc-flow article { position: relative; min-height: 270px; padding: 28px 24px; border: 1px solid var(--scc-line); border-radius: 22px; background: #fff; box-shadow: 0 14px 38px rgba(8,27,51,.06); }
.scc-flow-step { display: block; color: var(--scc-blue); font-family: Inter,sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.scc-flow-icon { width: 54px; height: 54px; display: grid; place-items: center; margin: 24px 0 20px; color: #fff; border-radius: 17px; background: linear-gradient(135deg, var(--scc-blue), var(--scc-cyan)); box-shadow: 0 10px 24px rgba(31,111,235,.22); font-size: 21px; }
.scc-flow h3 { margin-bottom: 10px; color: var(--scc-ink); font-size: 18px; line-height: 1.4; font-weight: 800; letter-spacing: -.035em; }
.scc-flow p { margin: 0; font-size: 13px; line-height: 1.75; word-break: keep-all; }
.scc-flow-arrow { display: grid; place-items: center; color: #9aabba; }

.scc-video-section { background: #fff; }
.scc-heading-left { max-width: 760px; margin-left: 0; text-align: left; }
.scc-video-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.scc-video-card { border: 1px solid var(--scc-line); border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 18px 48px rgba(8,27,51,.08); }
.scc-video-wrap { position: relative; padding-top: 56.25%; background: #081b33; }
.scc-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.scc-video-copy { padding: 23px 26px 27px; }
.scc-video-copy span { color: var(--scc-blue); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.scc-video-copy h3 { margin: 7px 0 0; color: var(--scc-ink); font-size: 20px; line-height: 1.45; font-weight: 800; }

.scc-info-section { background: var(--scc-soft); }
.scc-link-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.scc-link-grid a { position: relative; min-height: 116px; display: grid; grid-template-columns: 70px 1fr 24px; align-items: center; gap: 16px; padding: 20px 24px; color: var(--scc-ink) !important; border: 1px solid var(--scc-line); border-radius: 18px; background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.scc-link-grid a:hover { transform: translateY(-2px); border-color: #b8d1ef; box-shadow: 0 14px 34px rgba(8,27,51,.08); }
.scc-link-grid a > span { width: 54px; height: 34px; display: grid; place-items: center; color: var(--scc-blue); border-radius: 10px; background: #edf5ff; font-size: 12px; font-weight: 800; }
.scc-link-grid strong { font-size: 15px; line-height: 1.55; font-weight: 750; word-break: keep-all; }
.scc-link-grid i { color: #9aa9ba; font-size: 13px; }

.scc-cta-section { padding: 0 0 110px; background: var(--scc-soft); }
.scc-cta-box { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 48px 54px; color: rgba(255,255,255,.75); border-radius: 28px; background: linear-gradient(135deg, #071a31, #123e6f 62%, #176a8a); box-shadow: 0 24px 60px rgba(8,27,51,.2); }
.scc-cta-box .scc-section-label { color: #8ee3ea; }
.scc-cta-box h2 { margin: 12px 0 10px; color: #fff; font-size: 29px; line-height: 1.4; font-weight: 800; letter-spacing: -.04em; }
.scc-cta-box p { margin: 0; font-size: 14px; line-height: 1.7; }
.scc-cta-box .scc-actions { flex: 0 0 auto; }

@media (max-width: 1080px) {
  .scc-hero-grid { gap: 40px; }
  .scc-flow { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .scc-flow-arrow { display: none; }
  .scc-split { gap: 50px; }
}

@media (max-width: 820px) {
  .scc-page { padding-top: 70px !important; }
  .scc-container { width: min(100% - 36px, 720px); }
  .scc-hero { min-height: 0; }
  .scc-hero-grid { grid-template-columns: 1fr; padding: 68px 0 92px; }
  .scc-hero-copy { text-align: center; }
  .scc-hero-description { margin-left: auto; margin-right: auto; }
  .scc-hero-points, .scc-actions { justify-content: center; }
  .scc-image-frame { min-height: 380px; transform: none; }
  .scc-image-frame > img { height: 380px; }
  .scc-summary-grid { grid-template-columns: 1fr; }
  .scc-summary { margin-top: -42px; }
  .scc-summary article { min-height: 0; }
  .scc-section { padding: 86px 0; }
  .scc-split { grid-template-columns: 1fr; }
  .scc-photo-card, .scc-photo-card img { min-height: 430px; height: 430px; }
  .scc-video-grid, .scc-link-grid { grid-template-columns: 1fr; }
  .scc-cta-box { align-items: flex-start; flex-direction: column; padding: 40px; }
}

@media (max-width: 560px) {
  .scc-container { width: calc(100% - 28px); }
  .scc-hero-grid { padding: 52px 0 76px; gap: 38px; }
  .scc-hero h1 { margin-top: 20px; font-size: 38px; line-height: 1.2; }
  .scc-hero-description { font-size: 15px; line-height: 1.75; }
  .scc-hero-points { display: grid; justify-content: flex-start; max-width: 230px; margin-left: auto; margin-right: auto; text-align: left; }
  .scc-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .scc-button { width: 100%; }
  .scc-image-frame { min-height: 310px; border-width: 7px; border-radius: 23px; }
  .scc-image-frame > img { height: 310px; }
  .scc-live-card { top: 14px; right: 14px; }
  .scc-log-card { left: 14px; bottom: 14px; }
  .scc-live-card, .scc-log-card { padding: 11px 13px; }
  .scc-log-card i { width: 32px; height: 32px; }
  .scc-summary article { padding: 27px; }
  .scc-section { padding: 72px 0; }
  .scc-photo-card, .scc-photo-card img { min-height: 360px; height: 360px; }
  .scc-photo-caption { left: 24px; right: 24px; bottom: 24px; }
  .scc-photo-caption strong { font-size: 18px; }
  .scc-section-copy h2, .scc-section-heading h2 { font-size: 31px; }
  .scc-flow { grid-template-columns: 1fr; }
  .scc-flow article { min-height: 0; }
  .scc-link-grid a { grid-template-columns: 58px 1fr 16px; gap: 10px; padding: 18px; }
  .scc-link-grid a > span { width: 48px; }
  .scc-cta-section { padding-bottom: 72px; }
  .scc-cta-box { padding: 32px 26px; border-radius: 22px; }
  .scc-cta-box h2 { font-size: 24px; }
}
