:root {
  --bg: #fafaf7;
  --bg-warm: #f5f2ed;
  --bg-card: #ffffff;
  --bg-cream: #f0ede6;
  --text-primary: #1a1a18;
  --text-secondary: #5c5a54;
  --text-tertiary: #9b978f;
  --text-light: #c4c0b8;
  --accent: #8b2d1a;
  --accent-light: #a83a24;
  --accent-warm: #c4512e;
  --accent-glow: rgba(139, 45, 26, 0.12);
  --accent-bg: rgba(139, 45, 26, 0.05);
  --forest: #2d5a3d;
  --forest-light: #3d7a52;
  --earth: #6b5b4d;
  --gold: #b8963e;
  --border: rgba(26, 26, 24, 0.08);
  --border-medium: rgba(26, 26, 24, 0.12);
  --border-strong: rgba(26, 26, 24, 0.2);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}
html::-webkit-scrollbar {
  width: 5px;
}
html::-webkit-scrollbar-track {
  background: var(--bg);
}
html::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* CURSOR */
.cring {
  position: fixed;
  width: 48px;
  height: 48px;
  border: none;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s var(--ease),
    height 0.4s var(--ease),
    opacity 0.4s;
  opacity: 1;
  object-fit: contain;
}
.cring.on {
  width: 72px;
  height: 72px;
  opacity: 1;
}
.cdot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .cring,
  .cdot {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 52px 80px;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
  background-image: radial-gradient(
    circle at 1px 1px,
    var(--border) 1px,
    transparent 0
  );
  background-size: 44px 44px;
}
.hero-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 50% 70% at 20% 50%,
      rgba(139, 45, 26, 0.035),
      transparent
    ),
    radial-gradient(
      ellipse 40% 50% at 80% 30%,
      rgba(45, 90, 61, 0.025),
      transparent
    ),
    linear-gradient(
      180deg,
      var(--bg) 0%,
      transparent 30%,
      transparent 70%,
      var(--bg) 100%
    );
}
.hero-boar-bg {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: 52vw;
  max-width: 700px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
.hero-boar-bg img {
  width: 100%;
  height: auto;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.06;
  font-weight: 400;
  margin-bottom: 26px;
  letter-spacing: -1px;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .li {
  display: block;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 40px;
}
.hero-sub-contact {
  color: var(--text-primary);
  font-weight: 400;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.4s var(--ease);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-p:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139, 45, 26, 0.2);
}
.btn-p .arr {
  transition: transform 0.3s var(--ease);
}
.btn-p:hover .arr {
  transform: translateX(4px);
}
.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--border-medium);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.btn-o:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-mouse {
  width: 22px;
  height: 36px;
  border-radius: 11px;
  border: 1.5px solid var(--border-strong);
  position: relative;
}
.hero-mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  animation: smouse 2s ease-in-out infinite;
}
@keyframes smouse {
  0% {
    top: 7px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
@media (max-width: 960px) {
  .hero {
    padding: 100px 32px 80px;
  }
  .hero-boar-bg {
    width: 40vw;
    opacity: 0.5;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 120px 24px 60px;
    min-height: auto;
  }
  .hero-boar-bg {
    width: 60vw;
    max-width: 260px;
    opacity: 0.18;
    right: -8%;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-p,
  .btn-o {
    justify-content: center;
    text-align: center;
  }
  .hero-scroll {
    display: none;
  }
}

/* OSHIRASE (ANNOUNCEMENT) */
.oshirase {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.oshirase-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 0% 50%,
      rgba(139, 45, 26, 0.03),
      transparent
    ),
    radial-gradient(
      ellipse 40% 60% at 100% 50%,
      rgba(45, 90, 61, 0.02),
      transparent
    );
  pointer-events: none;
}
.oshirase-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.oshirase-left {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--accent);
}
.oshirase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.oshirase-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: oshirase-pulse 2.4s ease-in-out infinite;
}
@keyframes oshirase-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(139, 45, 26, 0.35);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(139, 45, 26, 0);
  }
}
.oshirase-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.oshirase-title em {
  font-style: italic;
  color: var(--accent);
}
.oshirase-date {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
}
.oshirase-date span {
  font-size: 11px;
  margin-left: 2px;
  opacity: 0.7;
}

/* Right column */
.oshirase-right {
  padding-top: 6px;
}
.oshirase-msg {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.oshirase-schedule {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}
.oshirase-schedule-row {
  display: flex;
  align-items: baseline;
  padding: 20px 28px;
}
.oshirase-schedule-key {
  flex-shrink: 0;
  width: 90px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.oshirase-schedule-val {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}
.oshirase-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-tertiary);
  margin-left: 6px;
}
.oshirase-schedule-divider {
  height: 1px;
  background: var(--border);
  margin: 0 28px;
}
@media (max-width: 960px) {
  .oshirase {
    padding: 52px 0;
  }
  .oshirase-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .oshirase-left {
    padding-left: 22px;
  }
  .oshirase-title {
    margin-bottom: 10px;
  }
  .oshirase-msg {
    font-size: 14px;
  }
  .oshirase-schedule-row {
    flex-direction: column;
    gap: 6px;
    padding: 16px 22px;
  }
  .oshirase-schedule-key {
    width: auto;
  }
  .oshirase-schedule-divider {
    margin: 0 22px;
  }
}

/* SECTIONS COMMON */
.ctn {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 52px;
}
@media (max-width: 768px) {
  .ctn {
    padding: 0 24px;
  }
}
.label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.label::before {
  content: "";
  width: 32px;
  height: 1.5px;
  background: var(--accent);
}
.stitle {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.12;
  font-weight: 400;
  margin-bottom: 18px;
}
.stitle em {
  font-style: italic;
  color: var(--accent);
}
.cursive-j {
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
}
.ssub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
}

/* ABOUT */
.about {
  padding: 30px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-vis {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.about-text .quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.55;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
}
.about-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.astat {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  max-width: 170px;
}
.astat strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}
.astat span {
  font-size: 12px;
  color: var(--text-tertiary);
}
.about-history-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-medium);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.about-history-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.about-history-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(139, 45, 26, 0.12);
}
.about-history-btn:hover::before {
  opacity: 1;
}
.about-history-btn-text {
  position: relative;
  z-index: 1;
}
.about-history-btn-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  transition: all 0.4s var(--ease);
}
.about-history-btn:hover .about-history-btn-arrow {
  background: var(--accent-light);
  transform: translate(2px, -2px);
  box-shadow: 0 4px 12px rgba(139, 45, 26, 0.3);
}
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-vis {
    aspect-ratio: 16/10;
  }
}
@media (max-width: 600px) {
  .about {
    padding: 80px 0;
  }
}

/* GIBIER ADVOCACY */
.gibier {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gibier-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 50% at 10% 40%,
      rgba(45, 90, 61, 0.04),
      transparent
    ),
    radial-gradient(
      ellipse 50% 60% at 90% 60%,
      rgba(139, 45, 26, 0.03),
      transparent
    ),
    radial-gradient(
      ellipse 40% 40% at 50% 20%,
      rgba(184, 150, 62, 0.025),
      transparent
    );
  pointer-events: none;
}
.gibier-dots {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(
    circle at 1px 1px,
    var(--border) 1px,
    transparent 0
  );
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    black,
    transparent
  );
  pointer-events: none;
}
.gibier-grain {
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.gibier-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.gibier-visual {
  position: relative;
}
.gibier-visual-frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
}
.gibier-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.gibier-content {
  position: relative;
}
.gibier-divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--forest));
  border-radius: 2px;
  margin-bottom: 32px;
}
.gibier-body p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 18px;
  max-width: 560px;
}
.gibier-body p:last-child {
  margin-bottom: 0;
}
.gibier-cta {
  margin-top: 40px;
}
.gibier-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 80px;
  background: linear-gradient(
    135deg,
    var(--forest) 0%,
    var(--forest-light) 100%
  );
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.5s var(--ease);
  box-shadow: 0 4px 24px rgba(45, 90, 61, 0.15);
  position: relative;
  overflow: hidden;
}
.gibier-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  border-radius: inherit;
  pointer-events: none;
}
.gibier-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(45, 90, 61, 0.25);
}
.gibier-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}
.gibier-btn:hover .gibier-btn-icon {
  transform: translate(3px, -3px);
}

/* ── Gold Seal Info ── */
.gseal-layout {
  display: flex;
  align-items: center;
  gap: 120px;
  position: relative;
  margin-top: 80px;
  padding-top: 30px;
}
.gseal-content {
  position: relative;
  max-width: 600px;
}
.gseal-visual {
  position: relative;
  flex-shrink: 0;
  width: 260px;
}
.gseal-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.gseal-visual-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: inherit;
}
.gseal-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, #c4a243 100%);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.5s var(--ease);
  box-shadow: 0 4px 24px rgba(184, 150, 62, 0.2);
  position: relative;
  overflow: hidden;
}
.gseal-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 50%
  );
  border-radius: inherit;
  pointer-events: none;
}
.gseal-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(184, 150, 62, 0.3);
}

/* ── Gibier responsive ── */
@media (max-width: 960px) {
  .gibier {
    padding: 100px 0;
  }
  .gibier-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .gibier-visual {
    max-width: 300px;
    margin: 0 auto;
  }
  .gseal-layout {
    flex-direction: column;
    gap: 48px;
    margin-top: 64px;
    padding-top: 64px;
  }
  .gseal-visual {
    max-width: 300px;
    margin: 0 auto;
    order: -1;
  }
}
@media (max-width: 600px) {
  .gibier {
    padding: 64px 0;
  }
  .gibier-layout {
    gap: 36px;
  }
  .gibier-visual {
    max-width: none;
  }
  .gibier-body p {
    font-size: 14px;
  }
  .gibier-btn {
    padding: 14px 28px;
    font-size: 13px;
  }
  .gseal-layout {
    gap: 36px;
    margin-top: 44px;
    padding-top: 44px;
  }
  .gseal-cta-btn {
    padding: 14px 28px;
    font-size: 13px;
  }
}

/* MACHIOKOSHI PROJECT */
.machi {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: var(--bg);
}
.machi-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 30%,
      rgba(45, 90, 61, 0.045),
      transparent
    ),
    radial-gradient(
      ellipse 50% 60% at 80% 70%,
      rgba(139, 45, 26, 0.035),
      transparent
    ),
    radial-gradient(
      ellipse 45% 40% at 50% 50%,
      rgba(184, 150, 62, 0.03),
      transparent
    );
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
}
.machi-dots {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(
    circle at 1px 1px,
    var(--border) 1px,
    transparent 0
  );
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    black,
    transparent
  );
  pointer-events: none;
  transform: translateZ(0);
}
.machi-grain {
  display: none;
}

/* Houses background on machi section */
.machi::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/outline_houses.webp") center center / contain
    no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
}

.machi-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.machi-divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  border-radius: 2px;
  margin: 0 auto 0;
}

/* Lead quote */
.machi-quote {
  text-align: center;
  position: relative;
  margin-bottom: 72px;
  z-index: 1;
}
.machi-quote-mark {
  width: 36px;
  height: 28px;
  color: var(--forest);
  opacity: 0.15;
  margin-bottom: 16px;
}
.machi-quote-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Two-column intro */
.machi-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.machi-intro-col {
  padding: 44px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
  transform: translateZ(0);
  backface-visibility: hidden;
}
.machi-intro-bg-img {
  position: absolute;
  top: 01px;
  right: 7px;
  width: 230px;
  border-radius: 25px;
  height: auto;
  opacity: 2.06;
  pointer-events: none;
  object-fit: contain;
}
.machi-intro-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(139, 45, 26, 0.02), transparent 60%);
  pointer-events: none;
}
.machi-intro-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}
.machi-intro-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--accent-bg),
    rgba(139, 45, 26, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}
.machi-intro-icon svg {
  width: 24px;
  height: 24px;
}
.machi-intro-icon--forest {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 61, 0.06),
    rgba(45, 90, 61, 0.12)
  );
  color: var(--forest);
}
.machi-intro-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.machi-intro-col p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-secondary);
  font-weight: 500;
}
.machi-intro-col p em {
  font-style: italic;
  color: var(--text-primary);
  font-weight: 500;
}
.machi-intro-col p strong {
  color: var(--accent);
  font-weight: 500;
}

/* Stats banner */
.machi-stats {
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.machi-stats-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 0px 48px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
.machi-stats-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
  pointer-events: none;
}
.machi-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.machi-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-bg), rgba(139, 45, 26, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.machi-stat-icon svg {
  width: 20px;
  height: 20px;
}
.machi-stat-icon--gold {
  background: linear-gradient(
    135deg,
    rgba(184, 150, 62, 0.08),
    rgba(184, 150, 62, 0.15)
  );
  color: var(--gold);
}
.machi-stat-icon--forest {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 61, 0.06),
    rgba(45, 90, 61, 0.12)
  );
  color: var(--forest);
}
.machi-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1px;
}
.machi-stat-unit {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.machi-stat-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-tertiary);
  margin-top: 12px;
  font-weight: 400;
}
.machi-stat-divider {
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--border-medium),
    transparent
  );
  align-self: stretch;
}

/* Mission block */
.machi-mission {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  padding: 52px 56px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.machi-mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(45, 90, 61, 0.025), transparent 40%),
    linear-gradient(315deg, rgba(184, 150, 62, 0.025), transparent 40%);
  pointer-events: none;
}
.machi-mission-accent {
  width: 4px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--forest), var(--gold));
}
.machi-mission-body {
  position: relative;
  flex: 1;
}
.machi-mission-highlight {
  font-size: 16px;
  line-height: 2;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 20px;
}
.machi-mission-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
  margin-bottom: 20px;
}
.machi-mission-body p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-secondary);
  font-weight: 300;
}
.machi-mission-body p:last-child {
  margin-bottom: 0;
}
.machi-mission-body strong {
  color: var(--accent);
  font-weight: 600;
}

/* Machiokoshi responsive */
@media (max-width: 960px) {
  .machi {
    padding: 100px 0;
  }
  .machi-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .machi-stats-inner {
    flex-direction: column;
    gap: 36px;
    padding: 40px 32px;
  }
  .machi-stat-divider {
    width: 80%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(
      90deg,
      transparent,
      var(--border-medium),
      transparent
    );
  }
  .machi-mission {
    padding: 40px 36px;
  }
}
@media (max-width: 600px) {
  .machi {
    padding: 64px 0;
  }
  .machi-header {
    margin-bottom: 32px;
  }
  .machi-quote {
    margin-bottom: 48px;
  }
  .machi-quote-text {
    font-size: 22px;
  }
  .machi-intro {
    gap: 20px;
    margin-bottom: 48px;
  }
  .machi-intro-col {
    padding: 28px;
    border-radius: 16px;
  }
  .machi-intro-col p {
    font-size: 14px;
  }
  .machi-stats-inner {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .machi-stat-num {
    font-size: 40px;
  }
  .machi-stats {
    margin-bottom: 48px;
  }
  .machi-mission {
    padding: 28px 24px;
    gap: 20px;
    border-radius: 16px;
  }
  .machi-mission-highlight {
    font-size: 14px;
  }
  .machi-mission-body p {
    font-size: 14px;
  }
}

/* USE CASES */
.usecases {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.usecases-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 40% at 15% 20%,
      rgba(139, 45, 26, 0.03),
      transparent
    ),
    radial-gradient(
      ellipse 40% 50% at 85% 80%,
      rgba(45, 90, 61, 0.025),
      transparent
    ),
    radial-gradient(
      ellipse 45% 35% at 50% 50%,
      rgba(184, 150, 62, 0.02),
      transparent
    );
  pointer-events: none;
}
.usecases-dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(
    circle at 1px 1px,
    var(--border) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    black,
    transparent
  );
  pointer-events: none;
}
.usecases-header {
  text-align: center;
  margin-bottom: 72px;
}

/* Pillars Row */
.uc-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
}
.uc-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.uc-pillar-orb {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s var(--ease);
}
.uc-pillar-orb img {
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 1;
  object-fit: contain;
}
.uc-pillar-orb::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  opacity: 0.12;
  transition: all 0.5s var(--ease);
}
.uc-pillar-orb::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s var(--ease);
}
.uc-pillar:hover .uc-pillar-orb {
  transform: translateY(-5px);
}
.uc-pillar:hover .uc-pillar-orb::after {
  opacity: 0.06;
}

/* Time Pillar */
.uc-pillar--time {
  background: none;
  border: none;
  box-shadow: none;
}
.uc-pillar--time::before,
.uc-pillar--time::after {
  display: none;
}
.uc-pillar--time img {
  width: 90px;
  height: 90px;
}

/* People Pillar */
.uc-pillar--people {
  background: none;
  border: none;
  box-shadow: none;
}
.uc-pillar--people::before,
.uc-pillar--people::after {
  display: none;
}
.uc-pillar--people img {
  width: 120px;
  height: 120px;
}

/* Capacity Pillar */
.uc-pillar--capacity {
  background: none;
  border: none;
  box-shadow: none;
}
.uc-pillar--capacity::before,
.uc-pillar--capacity::after {
  display: none;
}
.uc-pillar--capacity img {
  width: 120px;
  height: 120px;
}

.uc-pillar-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* Connector Lines */
.uc-pillar-connector {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 38px;
}
.uc-pillar-line {
  width: 100%;
  height: 1px;
  position: relative;
  background: linear-gradient(
    90deg,
    var(--border-strong),
    var(--border),
    var(--border-strong)
  );
}
.uc-pillar-line::before,
.uc-pillar-line::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-strong);
}
.uc-pillar-line::before {
  left: -2px;
}
.uc-pillar-line::after {
  right: -2px;
}

/* Card Grid */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card Base */
.uc-card {
  position: relative;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(245, 242, 237, 0.45) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px 32px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  cursor: default;
}
.uc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.uc-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.04);
}
.uc-card:hover::before {
  opacity: 1;
}

/* Card Glow */
.uc-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}
.uc-card:hover .uc-card-glow {
  opacity: 1;
}

/* Card Bottom Accent */
.uc-card-accent {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: all 0.5s var(--ease);
}
.uc-card:hover .uc-card-accent {
  opacity: 0.5;
}

/* --- Time Cards --- */
.uc-card--time::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}
.uc-card--time:hover {
  border-color: rgba(139, 45, 26, 0.18);
}
.uc-card--time .uc-card-glow {
  background: radial-gradient(circle, rgba(139, 45, 26, 0.06), transparent 70%);
}
.uc-card--time .uc-card-num {
  color: var(--accent);
}
.uc-card--time .uc-card-badge {
  background: rgba(139, 45, 26, 0.04);
  border-color: rgba(139, 45, 26, 0.1);
  color: var(--accent);
}
.uc-card--time .uc-card-accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}

/* --- People Cards --- */
.uc-card--people::before {
  background: linear-gradient(90deg, var(--forest), var(--forest-light));
}
.uc-card--people:hover {
  border-color: rgba(45, 90, 61, 0.18);
}
.uc-card--people .uc-card-glow {
  background: radial-gradient(circle, rgba(45, 90, 61, 0.06), transparent 70%);
}
.uc-card--people .uc-card-num {
  color: var(--forest);
}
.uc-card--people .uc-card-badge {
  background: rgba(45, 90, 61, 0.04);
  border-color: rgba(45, 90, 61, 0.1);
  color: var(--forest);
}
.uc-card--people .uc-card-accent {
  background: linear-gradient(90deg, var(--forest), var(--forest-light));
}

/* --- Capacity Cards --- */
.uc-card--capacity::before {
  background: linear-gradient(90deg, var(--gold), #d4ad4a);
}
.uc-card--capacity:hover {
  border-color: rgba(184, 150, 62, 0.18);
}
.uc-card--capacity .uc-card-glow {
  background: radial-gradient(
    circle,
    rgba(184, 150, 62, 0.06),
    transparent 70%
  );
}
.uc-card--capacity .uc-card-num {
  color: var(--gold);
}
.uc-card--capacity .uc-card-badge {
  background: rgba(184, 150, 62, 0.04);
  border-color: rgba(184, 150, 62, 0.1);
  color: var(--gold);
}
.uc-card--capacity .uc-card-accent {
  background: linear-gradient(90deg, var(--gold), #d4ad4a);
}

/* Card Inner Elements */
.uc-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.uc-card-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  opacity: 0.14;
  line-height: 1;
  letter-spacing: -1px;
}
.uc-card-badge {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.uc-card-badge svg {
  width: 20px;
  height: 20px;
}
.uc-card:hover .uc-card-badge {
  transform: scale(1.1) rotate(2deg);
}
.uc-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 14px;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}
.uc-card-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-secondary);
  font-weight: 300;
}

/* Responsive */
@media (max-width: 960px) {
  .usecases {
    padding: 100px 0;
  }
  .usecases-header {
    margin-bottom: 56px;
  }
  .uc-pillars {
    margin-bottom: 48px;
  }
  .uc-pillar-connector {
    width: 48px;
  }
  .uc-pillar-orb {
    width: 68px;
    height: 68px;
  }
  .uc-pillar-orb img {
    width: 26px;
    height: 26px;
  }
  .uc-pillar--time img {
    width: 72px;
    height: 72px;
  }
  .uc-pillar--people img {
    width: 90px;
    height: 90px;
  }
  .uc-pillar--capacity img {
    width: 90px;
    height: 90px;
  }
  .uc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .usecases {
    padding: 80px 0;
  }
  .usecases-header {
    margin-bottom: 44px;
  }
  .uc-pillars {
    gap: 8px;
    margin-bottom: 40px;
  }
  .uc-pillar-connector {
    width: 28px;
    padding-bottom: 0;
  }
  .uc-pillar-orb {
    width: 56px;
    height: 56px;
  }
  .uc-pillar-orb img {
    width: 22px;
    height: 22px;
  }
  .uc-pillar--time img {
    width: 56px;
    height: 56px;
  }
  .uc-pillar--people img {
    width: 70px;
    height: 70px;
  }
  .uc-pillar--capacity img {
    width: 70px;
    height: 70px;
  }
  .uc-pillar-orb::before {
    inset: -4px;
  }
  .uc-pillar-tag {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .uc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .uc-card {
    padding: 30px 26px 26px;
    border-radius: 18px;
  }
  .uc-card-num {
    font-size: 34px;
  }
  .uc-card-badge {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  .uc-card-badge svg {
    width: 18px;
    height: 18px;
  }
  .uc-card-title {
    font-size: 19px;
  }
  .uc-card-accent {
    left: 26px;
    right: 26px;
  }
}

/* Bsec — Online Meeting Notice */
.bsec-notice {
  margin-top: 72px;
  padding: 0 24px;
}
.bsec-notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

/* Decorative lines extending outward */
.bsec-notice-line {
  flex: 1;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--border-strong));
}
.bsec-notice-line--r {
  background: linear-gradient(90deg, var(--border-strong), transparent);
}

/* Icon badge with pulse ring */
.bsec-notice-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(139, 45, 26, 0.08),
    rgba(139, 45, 26, 0.16)
  );
  border: 1px solid rgba(139, 45, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow:
    0 4px 16px rgba(139, 45, 26, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.bsec-notice-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  border: 1.5px solid rgba(139, 45, 26, 0.15);
  animation: bsec-pulse 3s ease-in-out infinite;
}
@keyframes bsec-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.12);
    opacity: 0;
  }
}
.bsec-notice-icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

/* Text content */
.bsec-notice-content {
  text-align: left;
}
.bsec-notice-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  display: block;
  margin-bottom: 4px;
}
.bsec-notice-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .bsec-notice {
    margin-top: 48px;
  }
  .bsec-notice-line {
    display: none;
  }
  .bsec-notice-inner {
    gap: 16px;
  }
  .bsec-notice-badge {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .bsec-notice-icon {
    width: 20px;
    height: 20px;
  }
  .bsec-notice-label {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .bsec-notice-text {
    font-size: 14px;
  }
}

/* Contact strip — mirrors bsec-notice, single row */
.bsec-contact {
  margin-top: 20px;
  padding: 0 24px;
}
.bsec-cstrip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.bsec-cstrip-line {
  flex: 1;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--border-strong));
}
.bsec-cstrip-line--r {
  background: linear-gradient(90deg, var(--border-strong), transparent);
}
.bsec-cstrip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  border-radius: 10px;

  transition: background 0.3s var(--ease);
}
.bsec-cstrip-item:hover {
  background: var(--accent-bg);
}
.bsec-cstrip-badge {
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.bsec-cstrip-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  border: 1.5px solid rgba(139, 45, 26, 0.15);
  animation: bsec-pulse 3s ease-in-out infinite;
}
.bsec-cstrip-icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}
.bsec-cstrip-content {
  text-align: left;
}
.bsec-cstrip-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  display: block;
  margin-bottom: 4px;
}
.bsec-cstrip-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  margin: 0;
  white-space: nowrap;
  font-variant-numeric: lining-nums;
}
.bsec-cstrip-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
  flex-shrink: 0;
}
@media (max-width: 660px) {
  .bsec-cstrip-line {
    display: none;
  }
  .bsec-cstrip {
    gap: 8px;
  }
  .bsec-cstrip-badge {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .bsec-cstrip-icon {
    width: 20px;
    height: 20px;
  }
  .bsec-cstrip-label {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .bsec-cstrip-text {
    font-size: 13px;
  }
}

/* FEATURES — Premium Cards */
.features {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}
.features-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 10% 30%,
      rgba(139, 45, 26, 0.03),
      transparent
    ),
    radial-gradient(
      ellipse 50% 60% at 90% 70%,
      rgba(45, 90, 61, 0.025),
      transparent
    ),
    radial-gradient(
      ellipse 40% 40% at 50% 50%,
      rgba(184, 150, 62, 0.018),
      transparent
    );
  pointer-events: none;
}
.features .features-header {
  margin-bottom: 80px;
}

/* Grid */
.ft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card Wrapper — gradient border technique */
.ft-item {
  position: relative;
  border-radius: 24px;
  padding: 1.5px;
  background: var(--border);
  transition: all 0.6s var(--ease);
}
.ft-item:hover {
  transform: translateY(-8px);
}

/* Animated gradient border overlay */
.ft-item-border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.ft-item:hover .ft-item-border {
  opacity: 1;
}
.ft-item--1 .ft-item-border {
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-warm),
    rgba(184, 150, 62, 0.4)
  );
}
.ft-item--2 .ft-item-border {
  background: linear-gradient(
    135deg,
    var(--forest),
    var(--forest-light),
    rgba(45, 90, 61, 0.4)
  );
}
.ft-item--3 .ft-item-border {
  background: linear-gradient(
    135deg,
    var(--accent-warm),
    var(--accent),
    rgba(139, 45, 26, 0.4)
  );
}
.ft-item--4 .ft-item-border {
  background: linear-gradient(
    135deg,
    var(--gold),
    #d4ad4a,
    rgba(184, 150, 62, 0.4)
  );
}

/* Inner card surface */
.ft-item-inner {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--bg-card) 0%,
    rgba(250, 248, 245, 0.95) 100%
  );
  border-radius: 22.5px;
  padding: 44px 32px 36px;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Decorative background SVG per card */
.ft-item-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  height: 88%;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.ft-item:hover .ft-item-bg {
  opacity: 0.13;
  transform: translate(-50%, -50%) scale(1.04);
}
.ft-item--1 .ft-item-bg {
  color: var(--accent);
}
.ft-item--2 .ft-item-bg {
  color: var(--forest);
}
.ft-item--3 .ft-item-bg {
  color: var(--accent-warm);
}
.ft-item--4 .ft-item-bg {
  color: var(--gold);
}

/* Shine sweep on hover */
.ft-item-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%
  );
  transition: left 0.8s var(--ease);
  pointer-events: none;
  z-index: 10;
}
.ft-item:hover .ft-item-shine {
  left: 150%;
}

/* Watermark number */
.ft-item-watermark {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 400;
  color: var(--text-primary);
  opacity: 0.035;
  line-height: 1;
  z-index: 0;
  letter-spacing: -2px;
  transition: all 0.6s var(--ease);
  user-select: none;
}
.ft-item:hover .ft-item-watermark {
  opacity: 0.065;
  transform: translateY(-4px) scale(1.03);
}

/* Icon container */
.ft-item-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease);
}
.ft-item:hover .ft-item-icon {
  transform: scale(1.1);
}

/* Per-card icon themes */
.ft-item--1 .ft-item-icon {
  background: linear-gradient(
    140deg,
    rgba(139, 45, 26, 0.06),
    rgba(139, 45, 26, 0.15)
  );
  border: 1px solid rgba(139, 45, 26, 0.08);
  box-shadow: 0 4px 16px rgba(139, 45, 26, 0.05);
}
.ft-item--1:hover .ft-item-icon {
  box-shadow: 0 8px 32px rgba(139, 45, 26, 0.14);
}
.ft-item--2 .ft-item-icon {
  background: linear-gradient(
    140deg,
    rgba(45, 90, 61, 0.06),
    rgba(45, 90, 61, 0.15)
  );
  border: 1px solid rgba(45, 90, 61, 0.08);
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.05);
}
.ft-item--2:hover .ft-item-icon {
  box-shadow: 0 8px 32px rgba(45, 90, 61, 0.14);
}
.ft-item--3 .ft-item-icon {
  background: linear-gradient(
    140deg,
    rgba(168, 58, 36, 0.06),
    rgba(168, 58, 36, 0.15)
  );
  border: 1px solid rgba(168, 58, 36, 0.08);
  box-shadow: 0 4px 16px rgba(168, 58, 36, 0.05);
}
.ft-item--3:hover .ft-item-icon {
  box-shadow: 0 8px 32px rgba(168, 58, 36, 0.14);
}
.ft-item--4 .ft-item-icon {
  background: linear-gradient(
    140deg,
    rgba(184, 150, 62, 0.06),
    rgba(184, 150, 62, 0.15)
  );
  border: 1px solid rgba(184, 150, 62, 0.08);
  box-shadow: 0 4px 16px rgba(184, 150, 62, 0.05);
}
.ft-item--4:hover .ft-item-icon {
  box-shadow: 0 8px 32px rgba(184, 150, 62, 0.14);
}

/* Title */
.ft-item-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

/* Description */
.ft-item-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* Bottom accent bar */
.ft-item-bar {
  margin-top: 28px;
  height: 2px;
  border-radius: 2px;
  opacity: 0.15;
  transition: all 0.5s var(--ease);
  position: relative;
  z-index: 1;
}
.ft-item:hover .ft-item-bar {
  opacity: 0.6;
}
.ft-item--1 .ft-item-bar {
  background: linear-gradient(90deg, var(--accent), transparent);
}
.ft-item--2 .ft-item-bar {
  background: linear-gradient(90deg, var(--forest), transparent);
}
.ft-item--3 .ft-item-bar {
  background: linear-gradient(90deg, var(--accent-warm), transparent);
}
.ft-item--4 .ft-item-bar {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Per-card hover shadows */
.ft-item--1:hover {
  box-shadow:
    0 24px 64px rgba(139, 45, 26, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.04);
}
.ft-item--2:hover {
  box-shadow:
    0 24px 64px rgba(45, 90, 61, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.04);
}
.ft-item--3:hover {
  box-shadow:
    0 24px 64px rgba(168, 58, 36, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04);
}
.ft-item--4:hover {
  box-shadow:
    0 24px 64px rgba(184, 150, 62, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Features V2 Responsive */
@media (max-width: 960px) {
  .features {
    padding: 100px 0;
  }
  .features .features-header {
    margin-bottom: 56px;
  }
  .ft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .features {
    padding: 80px 0;
  }
  .features .features-header {
    margin-bottom: 44px;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ft-item-inner {
    padding: 36px 26px 30px;
  }
  .ft-item-watermark {
    font-size: 56px;
  }
  .ft-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    margin-bottom: 24px;
  }
  .ft-item-title {
    font-size: 19px;
  }
}

/* PROCESS */
.process {
  padding: 130px 0 130px;
}
.process-hdr {
  padding-bottom: 64px;
}
.pwrap {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}
.parrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border-medium);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}
.parrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: scale(1.08);
}
.parrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.ptrack {
  flex: 1;
  overflow: hidden;
  transition:
    mask-image 0.4s,
    --webkit-mask-image 0.4s;
}
.ptrack.fade-right {
  -webkit-mask-image: linear-gradient(
    to right,
    black calc(100% - 160px),
    transparent
  );
  mask-image: linear-gradient(to right, black calc(100% - 160px), transparent);
}
.ptrack.fade-left {
  -webkit-mask-image: linear-gradient(to right, transparent, black 160px);
  mask-image: linear-gradient(to right, transparent, black 160px);
}
.ptrack.fade-left.fade-right {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 160px,
    black calc(100% - 160px),
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 160px,
    black calc(100% - 160px),
    transparent
  );
}
.pslider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease);
}
.pc {
  flex-shrink: 0;
  min-height: 480px;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.5s,
    box-shadow 0.5s;
}
.pc:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.pc-step {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc-step::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.pc-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-bg);
  border: 1px solid rgba(139, 45, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pc-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pc h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 400;
}
.pc p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
  flex: 1;
}
.pc-tag {
  margin-top: 24px;
  padding: 7px 14px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-tertiary);
  letter-spacing: 1.5px;
  align-self: flex-start;
  text-transform: uppercase;
}
.pc > *:not(.pc-bbg) {
  position: relative;
  z-index: 1;
}
.pc-bbg {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 160px;
  height: 160px;
  opacity: 0.45;
  pointer-events: none;
  overflow: hidden;
  border-radius: 50%;
  z-index: 0;
}
.pc-bbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 960px) {
  .pwrap {
    gap: 14px;
    padding: 0 16px;
  }
  .parrow {
    width: 44px;
    height: 44px;
  }
  .pc {
    min-height: 420px;
    padding: 30px;
  }
}
@media (max-width: 600px) {
  .process {
    padding: 80px 0;
  }
  .process-hdr {
    padding-bottom: 40px;
  }
  .pwrap {
    gap: 10px;
    padding: 0 10px;
  }
  .parrow {
    width: 38px;
    height: 38px;
  }
  .pc {
    min-height: 460px;
    padding: 28px 24px 110px;
    border-radius: 18px;
  }
  .pc-step {
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    gap: 10px;
  }
  .pc-ico {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 14px;
  }
  .pc-ico svg {
    width: 22px;
    height: 22px;
  }
  .pc h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .pc p {
    font-size: 13px;
    line-height: 1.8;
  }
  .pc-tag {
    margin-top: 20px;
    padding: 6px 12px;
    font-size: 9px;
    border-radius: 6px;
    letter-spacing: 1.2px;
  }
  .pc-bbg {
    width: 100px;
    height: 100px;
    bottom: 12px;
    right: 12px;
    opacity: 0.3;
  }
}

/* BOAR GALLERY */
.bsec {
  padding: 110px 0;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}
.bsec-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 30% 50%,
      rgba(139, 45, 26, 0.025),
      transparent
    ),
    radial-gradient(
      ellipse 40% 60% at 70% 40%,
      rgba(45, 90, 61, 0.02),
      transparent
    );
}
/* FLOW STEPS */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.flow-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.flow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.flow-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.flow-card:hover::before {
  opacity: 1;
}
.flow-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 20px;
}
.flow-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
  object-fit: cover;
}
.flow-t {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}
.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.flow-list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.85;
  padding-left: 16px;
  position: relative;
}
.flow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
}
.flow-card--accent {
  background: var(--accent);
  border-color: var(--accent);
}
.flow-card--accent::before {
  background: white;
}
.flow-card--accent:hover {
  border-color: var(--accent-light);
  background: var(--accent-light);
}
.flow-card--accent .flow-num {
  color: white;
  opacity: 0.25;
}
.flow-card--accent .flow-t {
  color: white;
}
.flow-go {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
}
@media (max-width: 960px) {
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media (max-width: 600px) {
  .bsec {
    padding: 70px 0;
  }
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* TECH */
.tech {
  padding: 70px 0;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.tech-sticky {
  position: sticky;
  top: 110px;
}
.tcards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.tc {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  transition: all 0.5s var(--ease);
  box-shadow: var(--shadow-sm);
}
.tc:hover {
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.tc-h {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.tc-i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-i svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}
.tc h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
}
.tc p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
}
@media (max-width: 960px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .tech-sticky {
    position: relative;
    top: 0;
  }
}
@media (max-width: 600px) {
  .tech {
    padding: 80px 0;
  }
}

/* NETWORK & EMERGENCY RESPONSE */
.network-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.network-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 40%, rgba(139, 45, 26, 0.04), transparent),
    radial-gradient(ellipse 45% 55% at 85% 60%, rgba(45, 90, 61, 0.03), transparent),
    radial-gradient(ellipse 60% 40% at 50% 10%, rgba(184, 150, 62, 0.02), transparent);
  pointer-events: none;
}
.network-dots {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}
.network-header {
  text-align: center;
  margin-bottom: 72px;
}
.network-header .label {
  justify-content: center;
}
.network-header .ssub {
  margin: 0 auto;
}
.network-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.network-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.network-card {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 28px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.network-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 45, 26, 0.02), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.network-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.network-card:hover::before {
  opacity: 1;
}
.network-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.network-card:hover .network-card-icon {
  background: var(--accent);
  transform: scale(1.05);
}
.network-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  transition: color 0.4s var(--ease);
}
.network-card:hover .network-card-icon svg {
  color: white;
}
.network-card-icon.emergency {
  background: rgba(200, 60, 30, 0.08);
}
.network-card-emergency:hover .network-card-icon.emergency {
  background: #c83c1e;
}
.network-card-icon.emergency svg {
  color: #c83c1e;
}
.network-card-emergency:hover .network-card-icon.emergency svg {
  color: white;
}
.network-card-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text-primary);
  position: relative;
}
.network-card-body p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-secondary);
  font-weight: 300;
  position: relative;
}
.network-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--forest));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  border-radius: 0 0 18px 18px;
}
.network-card:hover .network-card-accent {
  transform: scaleX(1);
}
.network-card-accent.emergency {
  background: linear-gradient(90deg, #c83c1e, #e8553a);
}
.network-card-emergency {
  border-left: 3px solid rgba(200, 60, 30, 0.3);
}
.network-card-emergency:hover {
  border-color: #c83c1e;
  border-left-color: #c83c1e;
}

/* Network Stats */
.network-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 0;
  margin-top: 8px;
}
.network-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.network-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.network-stat-unit {
  font-size: 16px;
  opacity: 0.7;
}
.network-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-tertiary);
}
.network-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-medium);
  flex-shrink: 0;
}

/* Network Map */
.network-map-wrap {
  position: sticky;
  top: 100px;
}
.network-map-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 24px;
  background: linear-gradient(145deg, rgba(245, 242, 237, 0.6), rgba(240, 237, 230, 0.3));
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.network-map-container svg {
  width: 100%;
  height: auto;
  display: block;
}
.network-map-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.network-map-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: network-pulse 2s ease-in-out infinite;
}
@keyframes network-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 45, 26, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(139, 45, 26, 0); }
}
.network-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.3px;
}
.network-map-badge svg {
  color: var(--forest);
}

/* Network prefecture nodes on map */
.network-pref {
  fill: #ebe6dc;
  stroke: #d0c9be;
  stroke-width: 0.8;
  transition: all 0.35s var(--ease);
}
.network-pref.source-pref {
  fill: #ebe6dc;
  stroke: #d0c9be;
  stroke-width: 0.8;
}
.network-pref.tokyo-pref {
  fill: #ebe6dc;
  stroke: #d0c9be;
  stroke-width: 0.8;
  filter: drop-shadow(0 2px 6px rgba(45, 90, 61, 0.3));
}

/* Animated arrow paths */
.network-arrow {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 0;
}
.network-arrow.animated {
  opacity: 0.6;
  stroke-dasharray: 8 6;
  animation: network-flow 1.5s linear infinite;
}
@keyframes network-flow {
  to { stroke-dashoffset: -28; }
}
.network-arrow-head {
  fill: var(--accent);
  opacity: 0;
}
.network-arrow-head.animated {
  opacity: 0.7;
}

/* Tokyo target pulse */
.tokyo-pulse-ring {
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.5;
  opacity: 0;
}
.tokyo-pulse-ring.animated {
  animation: tokyo-ring-pulse 2.5s ease-out infinite;
}
@keyframes tokyo-ring-pulse {
  0% { r: 5; opacity: 0.7; stroke-width: 2; }
  100% { r: 22; opacity: 0; stroke-width: 0.5; }
}
.tokyo-center-dot {
  fill: var(--forest);
  opacity: 0;
}
.tokyo-center-dot.animated {
  opacity: 1;
}
.tokyo-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  fill: var(--forest);
  letter-spacing: 1.5px;
  text-anchor: middle;
  opacity: 0;
}
.tokyo-label.animated {
  opacity: 1;
}


/* Network responsive */
@media (max-width: 960px) {
  .network-section {
    padding: 80px 0;
  }
  .network-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .network-map-wrap {
    position: relative;
    top: 0;
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .network-header {
    margin-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .network-section {
    padding: 64px 0;
  }
  .network-card {
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px;
  }
  .network-card-icon {
    width: 42px;
    height: 42px;
  }
  .network-card-body h3 {
    font-size: 16px;
  }
  .network-card-body p {
    font-size: 13px;
  }
  .network-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .network-stat-divider {
    width: 60%;
    height: 1px;
  }
  .network-stat-num {
    font-size: 24px;
  }
  .network-header {
    margin-bottom: 36px;
  }
}

/* SURVEILLANCE BANNER */
.surv-banner {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.surv-trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.surv-print {
  position: absolute;
  width: 24px;
  height: 30px;
  color: var(--accent);
  opacity: 0.25;
}
.surv-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  gap: 12px;
}
.surv-inner p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 46px);
  color: var(--text-primary);
  white-space: nowrap;
}
.surv-sub {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px) !important;
  color: var(--text-secondary) !important;
  white-space: normal !important;
  text-align: center;
}
.surv-consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(184, 150, 62, 0.3);
  margin-top: 8px;
}
.surv-consult-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184, 150, 62, 0.35);
}
@media (max-width: 600px) {
  .surv-inner p {
    font-size: 18px;
    white-space: normal;
    text-align: center;
  }
}

/* JAPAN MAP SECTION */
.japan-map-section {
  padding: 130px 0;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.japan-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 45% at 20% 55%,
      rgba(58, 122, 79, 0.035),
      transparent
    ),
    radial-gradient(
      ellipse 45% 50% at 80% 35%,
      rgba(196, 148, 56, 0.03),
      transparent
    ),
    radial-gradient(
      ellipse 60% 60% at 50% 80%,
      rgba(139, 45, 26, 0.015),
      transparent
    );
  pointer-events: none;
}
.japan-map-section .stitle {
  margin-bottom: 8px;
}
.japan-map-section .ssub {
  max-width: 580px;
  margin-bottom: 56px;
}
.map-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
  position: relative;
}
.map-svg-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 28px;
  background: linear-gradient(
    145deg,
    rgba(245, 242, 237, 0.6),
    rgba(240, 237, 230, 0.3)
  );
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.map-svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(139, 45, 26, 0.04));
}
.jp-pref {
  fill: #ebe6dc;
  stroke: #d0c9be;
  stroke-width: 0.8;
  transition: all 0.35s var(--ease);
  cursor: default;
}
.jp-pref[data-category] {
  cursor: pointer;
}
.jp-pref.cat-certified {
  fill: #3a7a4f;
  stroke: #2a5f3a;
  stroke-width: 1;
}
.jp-pref.cat-preparing {
  fill: #c49438;
  stroke: #a07a25;
  stroke-width: 1;
}
.jp-pref[data-category]:hover {
  filter: brightness(1.12) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
  stroke-width: 1.8;
  transform-origin: center;
}
.jp-pref.cat-certified:hover {
  fill: #48905e;
}
.jp-pref.cat-preparing:hover {
  fill: #d4a448;
}
.jp-pref.map-dim {
  fill: #ebe6dc;
  stroke: #d0c9be;
  opacity: 0.35;
}
.jp-pref.map-dim[data-category] {
  opacity: 0.35;
}
.map-tooltip {
  position: fixed;
  padding: 8px 16px;
  background: rgba(26, 26, 24, 0.92);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 8px;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.2s,
    transform 0.2s;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}
.map-tooltip-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
}
.map-legend {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.map-legend-card {
  padding: 22px 24px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
/* Left accent bar */
.map-legend-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 3px 0 0 3px;
  transition: all 0.4s var(--ease);
}
/* Ambient glow overlay */
.map-legend-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.map-legend-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
}
.map-legend-card:hover::before {
  width: 5px;
}
.map-legend-card:hover::after {
  opacity: 1;
}

/* --- Certified --- */
.map-legend-card.cat-certified {
  background: linear-gradient(135deg, #ffffff, rgba(58, 122, 79, 0.025));
}
.map-legend-card.cat-certified::before {
  background: linear-gradient(180deg, #48905e, #2d6040);
}
.map-legend-card.cat-certified::after {
  background: radial-gradient(
    ellipse at 0% 0%,
    rgba(58, 122, 79, 0.06),
    transparent 65%
  );
}
.map-legend-card.cat-certified:hover {
  box-shadow:
    0 8px 32px rgba(58, 122, 79, 0.14),
    0 2px 6px rgba(0, 0, 0, 0.03);
}

/* --- Preparing --- */
.map-legend-card.cat-preparing {
  background: linear-gradient(135deg, #ffffff, rgba(196, 148, 56, 0.025));
}
.map-legend-card.cat-preparing::before {
  background: linear-gradient(180deg, #d4a448, #a67c28);
}
.map-legend-card.cat-preparing::after {
  background: radial-gradient(
    ellipse at 0% 0%,
    rgba(196, 148, 56, 0.06),
    transparent 65%
  );
}
.map-legend-card.cat-preparing:hover {
  box-shadow:
    0 8px 32px rgba(196, 148, 56, 0.14),
    0 2px 6px rgba(0, 0, 0, 0.03);
}

/* --- Considering --- */
.map-legend-card.cat-considering {
  background: linear-gradient(135deg, #ffffff, rgba(160, 136, 120, 0.035));
  padding: 12px 10px 10px;
}
.map-legend-card.cat-considering::before {
  background: linear-gradient(180deg, #b49e90, #876e60);
}
.map-legend-card.cat-considering::after {
  background: radial-gradient(
    ellipse at 0% 0%,
    rgba(160, 136, 120, 0.06),
    transparent 65%
  );
}
.map-legend-card.cat-considering:hover {
  box-shadow:
    0 8px 32px rgba(160, 136, 120, 0.14),
    0 2px 6px rgba(0, 0, 0, 0.03);
}

/* Active state */
.map-legend-card.active {
  border-color: transparent;
}
.map-legend-card.active::before {
  width: 5px;
}
.map-legend-card.active::after {
  opacity: 1;
}
.map-legend-card.cat-certified.active {
  box-shadow:
    0 8px 32px rgba(58, 122, 79, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.03);
}
.map-legend-card.cat-preparing.active {
  box-shadow:
    0 8px 32px rgba(196, 148, 56, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.03);
}

/* Header */
.map-legend-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* Status dot with glow */
.map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.cat-certified .map-legend-dot {
  background: #3a7a4f;
  box-shadow:
    0 0 0 3px rgba(58, 122, 79, 0.12),
    0 0 10px rgba(58, 122, 79, 0.2);
}
.cat-preparing .map-legend-dot {
  background: #c49438;
  box-shadow:
    0 0 0 3px rgba(196, 148, 56, 0.12),
    0 0 10px rgba(196, 148, 56, 0.2);
}
.cat-considering .map-legend-header {
  margin-bottom: 6px;
}
.cat-considering .map-legend-dot.considering-img {
  width: 47px;
  height: 47px;
  object-fit: contain;
  background: none;
  box-shadow: none;
}

/* Pulse ring for certified only */
.cat-certified .map-legend-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(58, 122, 79, 0.35);
  animation: legendPulse 2.5s ease-in-out infinite;
}
@keyframes legendPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Count badge (header right) */
.map-legend-badge {
  margin-left: auto;
  min-width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: all 0.35s var(--ease);
}
.cat-certified .map-legend-badge {
  background: rgba(58, 122, 79, 0.08);
  color: #3a7a4f;
}
.cat-preparing .map-legend-badge {
  background: rgba(196, 148, 56, 0.08);
  color: #c49438;
}
.cat-considering .map-legend-badge {
  background: rgba(160, 136, 120, 0.08);
  color: #a08878;
}
.map-legend-card:hover .map-legend-badge,
.map-legend-card.active .map-legend-badge {
  transform: scale(1.1);
}
.cat-certified:hover .map-legend-badge,
.cat-certified.active .map-legend-badge {
  background: rgba(58, 122, 79, 0.14);
}
.cat-preparing:hover .map-legend-badge,
.cat-preparing.active .map-legend-badge {
  background: rgba(196, 148, 56, 0.14);
}
.cat-considering:hover .map-legend-badge {
  background: rgba(160, 136, 120, 0.14);
}

/* Title */
.map-legend-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* Tags — pre-tinted by category */
.map-legend-prefs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.map-legend-tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: all 0.3s var(--ease);
}
.cat-certified .map-legend-tag {
  background: rgba(58, 122, 79, 0.05);
  border: 1px solid rgba(58, 122, 79, 0.1);
  color: #3a6b45;
}
.cat-preparing .map-legend-tag {
  background: rgba(196, 148, 56, 0.05);
  border: 1px solid rgba(196, 148, 56, 0.1);
  color: #9a7a28;
}
.cat-considering .map-legend-tag {
  background: rgba(160, 136, 120, 0.05);
  border: 1px solid rgba(160, 136, 120, 0.1);
  color: #7a6858;
}
.cat-certified:hover .map-legend-tag,
.cat-certified.active .map-legend-tag {
  background: rgba(58, 122, 79, 0.1);
  border-color: rgba(58, 122, 79, 0.22);
  color: #2a5f3a;
}
.cat-preparing:hover .map-legend-tag,
.cat-preparing.active .map-legend-tag {
  background: rgba(196, 148, 56, 0.1);
  border-color: rgba(196, 148, 56, 0.28);
  color: #8a6e1a;
}
.cat-considering:hover .map-legend-tag {
  background: rgba(160, 136, 120, 0.1);
  border-color: rgba(160, 136, 120, 0.28);
  color: #6b5b4d;
}

@media (max-width: 960px) {
  .map-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-svg-wrap {
    max-width: 420px;
  }
  .map-legend {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .japan-map-section {
    padding: 80px 0;
  }
  .japan-map-section .ssub {
    margin-bottom: 36px;
  }
  .map-legend-card {
    padding: 18px 20px 16px;
  }
  .map-legend-title {
    font-size: 15px;
  }
  .map-legend-badge {
    width: 28px;
    height: 28px;
    font-size: 13px;
    border-radius: 8px;
  }
}

/* CTA */
.cta-s {
  padding: 0 52px 70px;
}
.cta-box {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 90px 52px;
  text-align: center;
  background: var(--bg-warm);
  border: 1px solid var(--border);
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 50%, var(--accent-glow), transparent 50%),
    radial-gradient(circle at 75% 50%, rgba(45, 90, 61, 0.05), transparent 50%);
}
.cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 55% 55% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(
    ellipse 55% 55% at 50% 50%,
    black,
    transparent
  );
}
.cta-boar {
  position: absolute;
  bottom: -25px;
  right: 36px;
  width: 200px;
  opacity: 0.18;
  pointer-events: none;
}
.cta-boar.cta-boar-left {
  right: auto;
  left: 36px;
  opacity: 0.45;
}
.cta-boar img {
  width: 100%;
  height: auto;
}
.cta-box .stitle {
  position: relative;
}
.cta-contact {
  position: relative;
  margin-top: 40px;
}
.cta-contact .bsec-cstrip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  gap: 0;
}
.cta-contact .bsec-cstrip-item {
  justify-self: center;
}
.cta-contact .bsec-cstrip-divider {
  height: 44px;
}
.cta-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(240, 237, 230, 0.65) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  padding: 48px 32px 40px;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.cta-card:first-child::before {
  background: linear-gradient(90deg, var(--forest), var(--forest-light));
}
.cta-card:last-child::before {
  background: linear-gradient(90deg, var(--gold), #d4ad4a);
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.cta-card:first-child::after {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(45, 90, 61, 0.06),
    transparent 70%
  );
}
.cta-card:last-child::after {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(184, 150, 62, 0.06),
    transparent 70%
  );
}
.cta-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.04);
  border-color: rgba(255, 255, 255, 0.6);
}
.cta-card:hover::before,
.cta-card:hover::after {
  opacity: 1;
}
.cta-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.cta-card-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0.15;
}
.cta-card-icon svg {
  width: 28px;
  height: 28px;
}
.cta-card-icon--general {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 6px 20px rgba(45, 90, 61, 0.3);
}
.cta-card-icon--general::after {
  border: 2px solid var(--forest);
}
.cta-card-icon--business {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 20px rgba(184, 150, 62, 0.3);
}
.cta-card-icon--business::after {
  border: 2px solid var(--gold);
}
.cta-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.cta-card-desc {
  font-size: clamp(13px, 1vw, 14px);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cta-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--forest);
  color: #fff;
  position: relative;
  z-index: 1;
  transition:
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.cta-card:hover .cta-card-btn {
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.35);
}
.cta-card-btn .arr {
  transition: transform 0.35s var(--ease);
}
.cta-card:hover .cta-card-btn .arr {
  transform: translateX(4px);
}
.cta-card-btn--gold {
  background: var(--gold);
}
.cta-card:hover .cta-card-btn--gold {
  box-shadow: 0 4px 16px rgba(184, 150, 62, 0.35);
}
@media (max-width: 768px) {
  .cta-s {
    padding: 0 24px 100px;
  }
  .cta-box {
    padding: 56px 24px;
  }
  .cta-boar {
    width: 90px;
    bottom: -10px;
  }
  .cta-cards {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
}
