@font-face {
  font-family: "DIN Black";
  src: url("./font/DIN-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #003087;
  --primary-blue-dark: #001c5e;
  --accent-blue: #0070e0;
  --light-blue: #e6f0fa;
  --text-dark: #1a1a1a;
  --text-gray: #5a5a5a;
  --text-light: #888;
  --bg-light: #f7f9fc;
  --white: #ffffff;
  --border: #e0e4e8;
  --success: #00a650;
  --gradient-blue: linear-gradient(135deg, #003087 0%, #0070e0 100%);
}

body {
  font-family: "DIN Black", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-blue);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-primary {
  background: var(--gradient-blue);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 48, 135, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 48, 135, 0.4);
}

.btn-white {
  background: white;
  color: var(--primary-blue);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.hero-centered .hero-content {
  max-width: 920px;
}

.hero-content h1 {
  font-family: "DIN Black", sans-serif;
  font-size: clamp(5.2rem, 11vw, 9.4rem);
  font-weight: 800;
  color: white;
  line-height: 0.9;
  letter-spacing: -0.075em;
  white-space: nowrap;
  margin-bottom: 22px;
}

.hero-positioning {
  font-family: "DIN Black", sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 auto 34px;
  line-height: 1.6;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  gap: 50px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  color: white;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.card-subtitle {
  font-size: 0.85rem;
  opacity: 0.7;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.feature-list li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-label {
  display: inline-block;
  padding: 8px 20px;
  background: var(--light-blue);
  color: var(--accent-blue);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Core Philosophy */
.philosophy-section {
  min-height: 520px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(90, 180, 255, 0.28),
      transparent 34%
    ),
    linear-gradient(135deg, #00216f 0%, #003087 48%, #00164f 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.philosophy-section::before,
.philosophy-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.philosophy-section::before {
  width: 520px;
  height: 520px;
  top: -220px;
  left: -120px;
  background: rgba(255, 255, 255, 0.06);
  animation: brandOrbDrift 16s ease-in-out infinite;
}

.philosophy-section::after {
  width: 420px;
  height: 420px;
  right: -150px;
  bottom: -210px;
  background: rgba(0, 112, 224, 0.24);
  animation: brandOrbDrift 20s ease-in-out infinite reverse;
}

.brand-value-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  color: white;
}

.brand-lockup {
  display: grid;
  width: fit-content;
  max-width: 100%;
  position: relative;
  isolation: isolate;
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  filter: blur(8px);
  will-change: transform, opacity, filter;
}

.brand-lockup.is-inview {
  animation: brandCinematicEnter 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand-animation {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
  animation: brandTitleDrift 7s ease-in-out infinite;
}

.brand-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.32em;
  width: 100%;
  text-align: center;
}

.brand-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.15em);
  filter: blur(10px);
}

.brand-lockup.is-inview .brand-word {
  animation: brandWordReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.35s + var(--word-index) * 0.09s);
}

.brand-animation {
  font-family: "DIN Black", sans-serif;
  font-size: clamp(3.8rem, 8vw, 7.6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.brand-highlight {
  color: inherit;
}

.brand-tagline {
  margin-top: 0;
  font-family: "DIN Black", sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.04em;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.brand-accent-line {
  width: 0;
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(141, 224, 255, 0.15) 15%,
    rgba(141, 224, 255, 0.85) 50%,
    rgba(141, 224, 255, 0.15) 85%,
    transparent
  );
  opacity: 0;
  transform-origin: center;
}

.brand-lockup.is-inview .brand-accent-line {
  animation: brandLineExpand 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.78s both;
}

.brand-description {
  margin-top: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  clip-path: inset(0 0 100% 0);
}

.brand-lockup.is-inview .brand-description {
  animation: brandDescReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
}

.brand-tagline .brand-highlight {
  color: #ffffff;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

#solutions {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.onboarding-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 64px;
  align-items: center;
  padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(0, 48, 135, 0.08);
}

.onboarding-panel {
  padding: 32px 28px 32px 0;
}

.panel-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.onboarding-panel h3 {
  max-width: 420px;
  margin-bottom: 18px;
  color: var(--text-dark);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.onboarding-panel p {
  max-width: 440px;
  margin-bottom: 34px;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.75;
}

.advantage-list {
  display: grid;
  gap: 12px;
}

.advantage-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: var(--text-dark);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
  transition: all 0.25s ease;
}

.advantage-item i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-blue);
  background: var(--light-blue);
  border-radius: 12px;
}

.advantage-item:hover,
.advantage-item.active {
  color: var(--primary-blue);
  background: #f6faff;
  border-color: rgba(0, 112, 224, 0.35);
  transform: translateX(4px);
}

.advantage-item:focus-visible {
  outline: 3px solid rgba(0, 112, 224, 0.24);
  outline-offset: 3px;
}

.feature-card {
  display: flex;
  gap: 30px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-blue);
}

.feature-icon-wrap {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--gradient-blue);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.feature-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.tag {
  padding: 5px 14px;
  background: var(--light-blue);
  color: var(--accent-blue);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.feature-visual {
  position: relative;
  min-height: 540px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--primary-blue-dark);
  box-shadow: none;
}

.feature-visual-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  pointer-events: none;
}

.feature-visual-card.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.feature-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 20, 64, 0.02) 45%,
    rgba(0, 20, 64, 0.76) 100%
  );
}

.visual-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(18px);
}

.visual-caption span {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  color: var(--primary-blue);
  font-weight: 800;
}

.visual-caption strong {
  font-size: 1rem;
  line-height: 1.35;
}

/* Risk Framework */
/* Split content sections */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.split-content .section-label {
  margin-bottom: 18px;
}

.split-content .section-title {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.055em;
}

.split-content .section-desc {
  max-width: 560px;
}

.split-image {
  min-height: 480px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 48, 135, 0.08);
  box-shadow: 0 24px 70px rgba(0, 48, 135, 0.1);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.light-copy .section-title,
.light-copy .section-desc {
  color: white;
}

/* Risk Framework */
.risk-section {
  background: linear-gradient(135deg, #001c5e 0%, #003087 100%);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.risk-section::before {
  content: "";
  position: absolute;
  inset: auto -160px -220px auto;
  width: 460px;
  height: 460px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.risk-section .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.risk-overview {
  position: relative;
  z-index: 1;
}

.risk-layers {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.compact-layers {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.risk-layer {
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  transition: all 0.25s ease;
}

.risk-layer:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.layer-number {
  color: #75c8ff;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.layer-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.layer-desc {
  font-size: 0.85rem;
  opacity: 0.72;
  line-height: 1.6;
}

/* Operations */
.operations-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef3f9 100%);
  border-top: 1px solid rgba(0, 48, 135, 0.1);
  border-bottom: 1px solid var(--border);
}

.protection-section {
  background: #f4f8ff;
  border-bottom: 1px solid var(--border);
}

.simple-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.simple-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  color: var(--text-dark);
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-weight: 700;
}

.simple-list i {
  color: var(--accent-blue);
}

.operations-section .simple-list div {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 48, 135, 0.06);
}

.two-column-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Security Section */
.security-section {
  background: linear-gradient(135deg, #c5d8ed 0%, #b0c9e4 100%);
  border-top: 1px solid rgba(0, 48, 135, 0.14);
  border-bottom: 1px solid rgba(0, 48, 135, 0.12);
}

.clean-card-section {
  padding: 54px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(0, 48, 135, 0.08);
}

.compact-header {
  max-width: 760px;
  margin-bottom: 48px;
}

.security-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: stretch;
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.badge-card {
  padding: 28px;
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: 22px;
  transition: all 0.25s ease;
}

.badge-card:hover {
  border-color: rgba(0, 112, 224, 0.35);
  transform: translateY(-3px);
}

.badge-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-blue);
  background: var(--light-blue);
  border-radius: 14px;
  font-size: 1.15rem;
}

.badge-card h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.badge-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

.security-note,
.protection-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  background: var(--primary-blue-dark);
  color: white;
  border-radius: 24px;
}

.security-note h3 {
  margin-bottom: 16px;
  font-size: 1.65rem;
  line-height: 1.18;
}

.security-note p,
.protection-panel p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

/* Partner Section */
.partner-section {
  background: #f0f4f8;
  border-top: 1px solid rgba(0, 48, 135, 0.06);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.partner-section .clean-card-section {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.partner-card {
  padding: 30px 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 48, 135, 0.06);
  transition: all 0.25s ease;
}

.partner-card:hover {
  border-color: rgba(0, 112, 224, 0.35);
  transform: translateY(-3px);
}

.partner-icon {
  margin-bottom: 16px;
  color: var(--accent-blue);
  font-size: 1.8rem;
}

.partner-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.partner-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.protection-panel span {
  margin-bottom: 16px;
  color: #75c8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.protection-panel strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-blue);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-section::before {
  top: -140px;
  left: -120px;
  width: 420px;
  height: 420px;
}

.cta-section::after {
  right: -120px;
  bottom: -160px;
  width: 340px;
  height: 340px;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-section h2 {
  color: white;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

.cta-buttons {
  justify-content: center;
  margin-bottom: 0;
}

.btn-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-blue);
}

/* Footer */
.footer {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--primary-blue-dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--accent-blue);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-container,
  .hero-container,
  .section-container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-links {
    gap: 24px;
  }

  .hero-container {
    gap: 48px;
  }

  .risk-layers {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid,
  .philosophy-grid,
  .onboarding-showcase,
  .split-section,
  .security-showcase {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 36px;
  }

  .reverse-on-mobile .split-image {
    order: -1;
  }

  .split-image {
    min-height: 380px;
  }

  .clean-card-section {
    padding: 36px;
  }

  .security-badges,
  .compact-layers {
    grid-template-columns: repeat(2, 1fr);
  }

  .onboarding-showcase {
    gap: 32px;
  }

  .onboarding-panel {
    padding: 0 16px 18px;
  }

  .feature-visual {
    min-height: 440px;
  }

  .risk-layers {
    grid-template-columns: repeat(2, 1fr);
  }

  .supply-chain {
    flex-direction: column;
    gap: 40px;
  }

  .security-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container,
  .hero-container,
  .section-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-container {
    height: 64px;
  }

  .logo {
    font-size: 1.15rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 1rem;
  }

  .nav-cta {
    gap: 8px;
  }

  .nav-cta .btn {
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 104px 0 64px;
  }

  .hero::before,
  .hero::after,
  .cta-section::before,
  .cta-section::after,
  .risk-section::before {
    transform: scale(0.65);
  }

  .hero-content h1 {
    font-size: clamp(3.45rem, 13.5vw, 5.2rem);
    line-height: 0.94;
    white-space: normal;
  }

  .hero-positioning {
    font-size: clamp(1.35rem, 6.4vw, 2.2rem);
  }

  .brand-lockup {
    width: min(100%, 620px);
  }

  .brand-animation {
    font-size: clamp(2.9rem, 12vw, 4.8rem);
  }

  .brand-tagline {
    font-size: clamp(1.85rem, 7vw, 3.2rem);
  }

  .brand-description {
    margin-top: 20px;
    font-size: clamp(0.95rem, 3.6vw, 1.12rem);
  }

  .hero-content p,
  .section-desc,
  .cta-section p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 40px;
  }

  .hero-buttons .btn,
  .cta-section .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 320px;
    margin: 0 auto;
  }

  .stat-item {
    text-align: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
  }

  .stat-number {
    font-size: 2rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 42px;
  }

  .section-title,
  .cta-section h2 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

  .philosophy-card,
  .feature-card,
  .badge-card,
  .partner-card {
    padding: 26px;
    border-radius: 18px;
  }

  .feature-card {
    flex-direction: column;
    gap: 20px;
  }

  .onboarding-showcase {
    padding: 14px;
    border-radius: 24px;
  }

  .onboarding-panel {
    padding: 4px 6px 10px;
  }

  .onboarding-panel p {
    margin-bottom: 24px;
  }

  .advantage-item {
    padding: 14px 16px;
  }

  .feature-visual {
    min-height: 300px;
    border-radius: 18px;
  }

  .visual-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .feature-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 1.4rem;
  }

  .risk-layers,
  .partner-grid,
  .security-badges,
  .compact-layers,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 260px;
    border-radius: 20px;
  }

  .clean-card-section {
    padding: 24px;
    border-radius: 24px;
  }

  .security-note,
  .protection-panel {
    padding: 26px;
    border-radius: 20px;
  }

  .simple-list div {
    padding: 14px 16px;
  }

  .chain-step {
    align-items: flex-start;
    padding: 22px;
  }

  .chain-step:hover {
    transform: none;
  }

  .supply-content .section-header {
    text-align: center;
  }

  .cta-section {
    padding: 72px 0;
  }

  .footer {
    padding-top: 60px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 44px;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-brand p {
    max-width: 340px;
    margin: 0 auto;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

  .footer-col li {
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .nav-container,
  .hero-container,
  .section-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar .nav-cta .btn-outline {
    display: none;
  }

  .btn {
    padding: 12px 20px;
  }

  .section-label {
    font-size: 0.75rem;
    padding: 7px 14px;
  }

  .brand-animation {
    font-size: clamp(2.35rem, 11.8vw, 3.15rem);
  }

  .brand-tagline {
    font-size: clamp(1.5rem, 6.8vw, 2.2rem);
  }

  .brand-description {
    margin-top: 16px;
    font-size: clamp(0.88rem, 3.8vw, 1rem);
  }

  .philosophy-card,
  .feature-card,
  .badge-card,
  .partner-card,
  .risk-layer {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .philosophy-section::before,
  .philosophy-section::after,
  .brand-lockup,
  .brand-lockup.is-inview,
  .brand-word,
  .brand-lockup.is-inview .brand-word,
  .brand-accent-line,
  .brand-lockup.is-inview .brand-accent-line,
  .brand-description,
  .brand-lockup.is-inview .brand-description,
  .brand-animation,
  .brand-tagline,
  .brand-tagline .brand-highlight {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .brand-tagline .brand-highlight {
    color: #ffffff;
  }
}

/* Animations */
@keyframes brandCinematicEnter {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes brandWordReveal {
  from {
    opacity: 0;
    transform: translateY(1.15em);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes brandLineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: min(280px, 60%);
    opacity: 1;
  }
}

@keyframes brandDescReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes brandOrbDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(28px, -18px, 0) scale(1.04);
  }
  66% {
    transform: translate3d(-16px, 22px, 0) scale(0.98);
  }
}

@keyframes brandGlow {
  0%,
  100% {
    filter: brightness(1);
    transform: translateY(0);
  }
  50% {
    filter: brightness(1.3);
    transform: translateY(-2px);
  }
}

@keyframes brandTitleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes brandTaglineRise {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 4px;
}
