/* =========================================
   CSS Variables & Theming
========================================= */
:root {
  --color-nanjo-deepblue: #0A192F;
  --color-tide-low: #0C2B47;
  --color-tide-high: #061121;
  
  --color-accent-orange: #FF5A00;
  --color-limestone-white: #F4F4F0;
  --color-text-light: #E0E0E0;
  --color-text-dark: #1A1A1A;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =========================================
   Reset & Base Styles
========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: var(--font-body);
  color: var(--color-limestone-white);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--color-nanjo-deepblue);
  cursor: none;
}

/* Custom Cursor */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--color-accent-orange);
  border-radius: 50%; pointer-events: none;
  z-index: 9999; transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  border: 2px solid rgba(255, 90, 0, 0.5);
  border-radius: 50%; pointer-events: none;
  z-index: 9998; transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.hovered {
  width: 60px; height: 60px;
  background: rgba(255, 255, 255, 0.1);
  mix-blend-mode: color-dodge; backdrop-filter: blur(2px);
}
.cursor-follower.hovered {
  width: 80px; height: 80px;
  border-color: rgba(255, 255, 255, 0.8);
}

/* Tide & Parallax Backgrounds */
.tide-background {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -3; transition: background-color 3s ease;
  background-color: var(--color-nanjo-deepblue);
}

#wave-canvas {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -2; pointer-events: none;
}

.bg-typography {
  position: fixed;
  top: 50%; left: 0;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 25vw;
  font-weight: 900;
  color: var(--color-limestone-white);
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  z-index: -2;
  letter-spacing: -0.05em;
  will-change: transform;
}

h1, h2, h3, h4 { font-family: var(--font-heading); letter-spacing: 0.05em; }
a { text-decoration: none; color: inherit; cursor: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 5%; position: relative; }
.section { padding: 7rem 0; position: relative; z-index: 1; }
.text-center { text-align: center; }

/* =========================================
   Typography & Vertical Text
========================================= */
.vertical-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-body);
  line-height: 1.2;
}

.text-glow {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.text-glow-hover {
  transition: text-shadow 0.3s ease, color 0.3s ease;
}
.text-glow-hover:hover {
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
  color: #fff;
}

/* =========================================
   Buttons
========================================= */
.btn {
  display: inline-block; padding: 1rem 2.5rem; font-size: 1.1rem;
  font-weight: bold; border-radius: 50px; cursor: none;
  transition: all 0.3s var(--ease-out-expo); text-transform: uppercase;
  font-family: var(--font-heading); position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--color-accent-orange); color: var(--color-limestone-white);
  border: 2px solid transparent; box-shadow: 0 4px 15px rgba(255, 90, 0, 0.4);
}
.btn-primary::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 300%; height: 300%; background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(0); border-radius: 50%;
  transition: transform 0.6s var(--ease-out-expo);
}
.btn-primary:hover::after { transform: translate(-50%, -50%) scale(1); }
.btn-primary:hover {
  background: var(--color-accent-orange); color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 90, 0, 0.8), 0 0 20px rgba(255, 90, 0, 0.5);
}

/* =========================================
   Hero Section Layout
========================================= */
.vertical-hero {
  height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 0; overflow: hidden; position: relative; perspective: 1000px;
}
.hero-bg-wrapper {
  position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
  z-index: -1; transform-origin: center center;
}
.hero-image { width: 100%; height: 100%; object-fit: cover; }

/* Grid Overlay Background */
.grid-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1; pointer-events: none;
}
.overlay.gradient-dark {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.5) 100%);
  z-index: 0;
}
#particles-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; }
.hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; }

/* Asymmetric Hero Typography */
.hero-title-group {
  display: flex; flex-direction: row-reverse; align-items: center;
  gap: 0.5rem; margin-bottom: 1rem;
  position: relative; right: 0;
}
.hero-title-vertical {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--color-limestone-white);
  text-shadow: 
    0 15px 40px rgba(0,0,0,0.9),
    0 0 25px rgba(255, 90, 0, 1);
  z-index: 10;
  position: relative;
  letter-spacing: 0.1em;
  transform: translateY(55px);
}
.hero-title-horizontal {
  font-size: clamp(1.5rem, 6vw, 4.5rem);
  font-weight: 900;
  white-space: normal;
  word-break: keep-all;
}
@keyframes float-sway {
  0% { transform: rotate(-3deg) translateY(20px); }
  50% { transform: rotate(-1deg) translateY(10px); }
  100% { transform: rotate(-3deg) translateY(20px); }
}
.tilt-dynamic {
  animation: float-sway 4s ease-in-out infinite;
}

.text-reveal { display: inline-flex; overflow: hidden; position: relative; }
.text-reveal .reveal-text { opacity: 0; animation: revealTextAlpha 0s 0.5s forwards; }
.text-reveal::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--color-accent-orange); transform: translateX(-101%);
  animation: revealBlock 1s var(--ease-bounce) forwards; z-index: 2;
}
@keyframes revealTextAlpha { 100% { opacity: 1; } }
@keyframes revealBlock { 0% { transform: translateX(-101%); } 50% { transform: translateX(0); } 100% { transform: translateX(101%); } }

.hero-bottom { text-align: center; margin-top: -4rem; position: relative; z-index: 10; transform: translateY(-3rem); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.5rem); font-weight: bold; margin-bottom: 1.5rem; color: var(--color-text-light); line-height: 1.8; }

/* =========================================
   Dynamic Word Effects (書き換える/壊す/変える/バグ)
========================================= */
#dynamic-word { display: inline-block; white-space: nowrap; font-family: var(--font-heading); min-width: 6.5em; text-align: left; }
.effect-write { animation: writeIn 0.5s ease forwards; }
@keyframes writeIn { 0% { transform: translateY(10px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

/* 2. Break (Shatter + Fire) Mild */
.effect-break {
  position: relative; color: #fff;
  text-shadow: 0 -1px 2px rgba(255,255,0,0.8), 1px -3px 3px rgba(253,58,0,0.8), -1px -5px 5px rgba(255,136,0,0.8);
  animation: breakShatter 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}
.effect-break::before {
  content: attr(data-text); position: absolute; top: 0; left: 0; color: transparent;
  background: linear-gradient(135deg, transparent 49%, rgba(30,30,30,0.7) 49.5%, rgba(20,20,20,0.7) 50.5%, transparent 51%);
  -webkit-background-clip: text; background-clip: text; z-index: 2; transform: translate(1px, -1px) skew(-2deg);
}
.effect-break::after {
  content: attr(data-text); position: absolute; top: 0; left: 0; color: rgba(255, 90, 0, 0.8);
  transform: translate(-2px, 2px) skew(3deg) scale(1.02); opacity: 0; z-index: 1;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.5); animation: dropPiece 2s ease-in forwards;
}
@keyframes breakShatter {
  0% { transform: scale(1.2) rotate(-5deg); opacity: 0; filter: blur(2px); }
  20% { transform: scale(0.95) rotate(2deg); opacity: 1; filter: blur(0); }
  30% { transform: scale(1) rotate(0); text-shadow: 0 -1px 2px rgba(255,255,0,0.8), 1px -3px 3px rgba(253,58,0,0.8); }
  100% { transform: scale(1.01) rotate(0); text-shadow: 0 -3px 4px rgba(255,255,0,0.8), 2px -6px 6px rgba(253,58,0,0.8), -2px -9px 11px rgba(255,136,0,0.8); }
}
@keyframes dropPiece { 0% { opacity: 0; } 15% { opacity: 0.6; transform: translate(-1px, 1px) skew(1deg); } 100% { opacity: 0; transform: translate(-5px, 20px) rotate(-10deg); } }

/* 3. Change (Pixelated) Mild */
.effect-change {
  position: relative; background: linear-gradient(90deg, #48CAE4, #FF5A00);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: pixelateIn 2s steps(6) forwards;
}
.effect-change::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(10,25,47,0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(10,25,47,0.3) 1px, transparent 1px);
  background-size: 6px 6px; mix-blend-mode: overlay; animation: gridFadeOut 2s steps(3) forwards;
}
@keyframes pixelateIn { 0% { filter: blur(3px) contrast(1.2); transform: scale(0.95); } 50% { filter: blur(1px) contrast(1.1); transform: scale(1); } 100% { filter: blur(0) contrast(1); transform: scale(1); } }
@keyframes gridFadeOut { 0% { opacity: 0.8; background-size: 10px 10px; } 100% { opacity: 0; background-size: 2px 2px; } }

/* 4. Glitch */
.effect-glitch {
  position: relative; color: var(--color-limestone-white); font-family: var(--font-mono);
  animation: glitch-anim-main 0.1s infinite; transform: skewX(-15deg); text-shadow: -2px 0 0 #f00, 2px 0 0 #00f;
}
.effect-glitch::before, .effect-glitch::after {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; white-space: nowrap; mix-blend-mode: screen; font-family: var(--font-mono);
}
.effect-glitch::before { color: #0ff; left: 4px; animation: glitch-anim-1 0.1s infinite linear alternate-reverse; }
.effect-glitch::after { color: #f0f; left: -4px; animation: glitch-anim-2 0.15s infinite linear alternate-reverse; }
@keyframes glitch-anim-main { 0% { transform: skewX(-10deg) translate(0); text-shadow: -4px 0 0 #f00, 4px 0 0 #0f0; } 50% { transform: skewX(10deg) translate(-3px, 3px); text-shadow: 4px 0 0 #f00, -4px 0 0 #0f0; } 100% { transform: skewX(-5deg) translate(3px, -3px); filter: invert(30%) hue-rotate(90deg); } }
@keyframes glitch-anim-1 { 0% { clip-path: inset(20% 0 80% 0); transform: translate(-4px, 1px); } 20% { clip-path: inset(60% 0 10% 0); transform: translate(4px, -1px); } 40% { clip-path: inset(40% 0 50% 0); transform: translate(4px, 1px); } 60% { clip-path: inset(80% 0 5% 0); transform: translate(-4px, -1px); } 80% { clip-path: inset(10% 0 70% 0); transform: translate(4px, 1px); } 100% { clip-path: inset(30% 0 50% 0); transform: translate(-4px, -1px); } }
@keyframes glitch-anim-2 { 0% { clip-path: inset(10% 0 60% 0); transform: translate(4px, -1px); } 20% { clip-path: inset(30% 0 20% 0); transform: translate(-4px, 1px); } 40% { clip-path: inset(70% 0 10% 0); transform: translate(4px, 1px); } 60% { clip-path: inset(20% 0 50% 0); transform: translate(-4px, -1px); } 80% { clip-path: inset(50% 0 30% 0); transform: translate(4px, -1px); } 100% { clip-path: inset(5% 0 80% 0); transform: translate(-4px, 1px); } }


/* =========================================
   Concept: Next Door Gov
========================================= */
.next-door-gov { padding-top: 9rem; background-color: transparent; }
.grid-free {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative;
}
.grid-free .text-block { z-index: 5; }
.grid-free .section-title { font-size: 4rem; margin-bottom: 1rem; color: var(--color-limestone-white); }
.grid-free .sub-copy { font-size: 1.1rem; color: var(--color-text-light); line-height: 2; margin-top: 1.5rem; }

.visual-block { position: relative; width: 100%; padding-top: 2rem; z-index: 2; }
.map-minecraft-overlay {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.map-container { width: 100%; height: 500px; }
.map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(50%) contrast(1.2); }
.mc-grid-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(rgba(0,0,0,0.2) 20%, transparent 20%) 0 0;
  background-size: 10px 10px; pointer-events: none; mix-blend-mode: overlay;
}

/* =========================================
   The Laboratory (Programs)
========================================= */
.laboratory {
  padding-top: 7rem;
}
.overlap-title-right { font-size: clamp(2.5rem, 6vw, 5rem); position: absolute; top: -2rem; right: 5%; text-align: right; white-space: nowrap; pointer-events: none; z-index: 10; }
.asymmetric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-top: 3rem; }
.mt-offset { margin-top: 5rem; } /* staggered layout */

/* Blueprint Cards */
.blueprint-card {
  background: rgba(10, 25, 47, 0.6); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 10px;
  padding: 4rem 3rem; text-align: left; position: relative; overflow: hidden;
  transform-style: preserve-3d;
}
.card-glow {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,90,0,0.15) 0%, rgba(255,255,255,0) 70%);
  opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
}
.blueprint-card:hover .card-glow { opacity: 1; }

.blueprint-lines {
  position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px dashed rgba(255, 90, 0, 0.8);
  border-radius: 6px;
  opacity: 0; transform: scale(0.9);
  transition: all 0.4s var(--ease-out-expo);
  pointer-events: none;
}
.blueprint-card:hover .blueprint-lines { opacity: 1; transform: scale(1); }

.card-icon { font-size: 4rem; margin-bottom: 2rem; transform: translateZ(30px); }
.card-title { font-size: 2rem; margin-bottom: 1rem; color: var(--color-limestone-white); transform: translateZ(20px); border-bottom: 2px solid var(--color-accent-orange); display: inline-block; padding-bottom: 0.5rem; }
.card-text { color: var(--color-text-light); font-size: 1.1rem; line-height: 1.8; transform: translateZ(10px); }

/* =========================================
   Voice of Creators
========================================= */
.voice-of-creators { padding-top: 8rem; padding-bottom: 8rem; }
.grid-free-reverse { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; position: relative; }
.overlap-title { position: absolute; left: 0; top: -6rem; font-size: 5rem; color: var(--color-accent-orange); opacity: 0.1; z-index: 0; pointer-events: none; }

.quote-block { position: relative; z-index: 2; background: rgba(255,255,255,0.02); padding: 4rem; border-radius: 20px; border-left: 4px solid var(--color-accent-orange); }
.quote-sub { margin-top: 5rem; border-left: none; border-right: 4px solid var(--color-accent-orange); text-align: right; }

.quote-mark { font-size: 10rem; color: var(--color-accent-orange); opacity: 0.1; position: absolute; top: -3rem; left: 1rem; font-family: 'Times New Roman', serif; line-height: 1; pointer-events: none; }
.quote-sub .quote-mark { left: auto; right: 1rem; }

.quote-text { font-size: 1.4rem; font-weight: bold; line-height: 1.8; margin-bottom: 3rem; }
.creator-info { display: flex; align-items: center; gap: 1.5rem; }
.quote-sub .creator-info { flex-direction: row-reverse; }
.mentor-avatar { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--color-limestone-white); }
.bg-gradient { background: linear-gradient(135deg, #FF5A00, #ff9ba4); }
.bg-gradient-2 { background: linear-gradient(135deg, #0A192F, #48CAE4); }
.creator-name h3 { font-size: 1.2rem; }
.creator-name .role { color: var(--color-accent-orange); font-size: 0.9rem; }

/* Image polygon masks */
.mask-polygon-scroll {
  width: 100%; height: 500px;
  z-index: 1;
}
.life-image { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }

/* =========================================
   News (お知らせ)
========================================= */
.news-list { list-style: none; padding: 0; }
.news-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}
.news-item:hover {
  background: rgba(255, 90, 0, 0.05);
}
.news-item a {
  display: flex; gap: 2rem; padding: 2.5rem 2rem; align-items: center; color: var(--color-limestone-white);
  transition: transform 0.3s ease;
}
.news-date {
  font-family: var(--font-mono); font-size: 1.1rem; color: var(--color-accent-orange); width: 120px;
}
.news-category {
  padding: 0.3rem 1.2rem; border-radius: 20px; font-size: 0.85rem; font-weight: bold; width: 100px; text-align: center;
}
.cat-event { background: rgba(255,90,0,0.1); color: var(--color-accent-orange); border: 1px solid rgba(255,90,0,0.3); }
.cat-info { background: rgba(72,202,228,0.1); color: #48CAE4; border: 1px solid rgba(72,202,228,0.3); }
.cat-report { background: rgba(255,255,255,0.1); color: #ccc; border: 1px solid rgba(255,255,255,0.2); }
.news-title {
  font-size: 1.2rem; font-weight: bold; margin: 0; flex: 1; transition: color 0.3s ease;
}
.news-item a:hover .news-title { color: var(--color-accent-orange); }

/* =========================================
   Utilities & Animations
========================================= */
.animate-pop { animation: popIn 1s var(--ease-out-expo) forwards; }
.animate-fade-in { opacity: 0; animation: fadeIn 1s ease forwards; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
@keyframes popIn { 0% { transform: scale(0.9); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes fadeIn { to { opacity: 1; } }

.reveal-slide-up { opacity: 0; transform: translateY(60px); transition: opacity 1s ease, transform 1s var(--ease-out-expo); }
.reveal-slide-up.active { opacity: 1; transform: translateY(0); }

/* Hover Float & Pulse */
.hover-float { transition: transform 0.5s var(--ease-bounce); }
.hover-float:hover { transform: translateY(-15px); }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(255, 90, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 90, 0, 0); } }
.magnetic:hover .pulse { animation: pulseGlow 1.5s infinite; }

/* Footer */
.footer { background-color: var(--color-nanjo-deepblue); color: #888; padding: 4rem 0; border-top: 1px solid rgba(255,255,255,0.1); }

/* Responsive adjustments */
@media (max-width: 900px) {
  .grid-free, .grid-free-reverse, .asymmetric-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mt-offset, .quote-sub { margin-top: 2rem; }
  .grid-free .sub-copy { margin-top: 0; }
  .hero-title-group { flex-direction: column; right: 0; gap: 1rem; }
  .hero-title-vertical { writing-mode: horizontal-tb; text-orientation: initial; font-size: clamp(2rem, 8vw, 3.5rem); transform: none; }
  .vertical-title { writing-mode: horizontal-tb; }
  .bg-typography { font-size: 15vw; }
  .news-item a { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem !important; }
}

/* =========================================
   Forms (Registration)
========================================= */
.glass-form {
  background: rgba(10, 25, 47, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 3rem;
}
.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: bold;
  color: var(--color-limestone-white);
  font-size: 1.1rem;
}
.form-group .required {
  background: rgba(255, 90, 0, 0.2);
  color: var(--color-accent-orange);
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  border: 1px solid rgba(255, 90, 0, 0.5);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--color-limestone-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent-orange);
  box-shadow: 0 0 10px rgba(255, 90, 0, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.btn-back:hover {
  border-color: var(--color-accent-orange);
  text-shadow: 0 0 10px rgba(255, 90, 0, 0.8);
}

