@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,300,0,0');

:root {
  --primary: #2a609d;
  --primary-dark: #4b49c9;
  --secondary: #32d74b;
  --bg-dark: #000000;
  --bg-card: #1c1c1e;
  --text-light: #ffffff;
  --text-gray: #8e8e93;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: #02021c;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: clip;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.rotating-text {
  display: inline-block;
  color: #46a4f8;
  -webkit-text-fill-color: #46a4f8;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  white-space: nowrap;
}

.rotating-text.typewriter-caret::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 2px;
  background: #46a4f8;
  vertical-align: -0.12em;
  animation: caretBlink 0.8s steps(1) infinite;
}

@keyframes caretBlink {
  50% { opacity: 0; }
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  color: #bdbdbd;
  margin-bottom: 1.5rem;
}

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

.animate {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-cta {
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.nav-cta img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.nav-cta:hover {
  transform: scale(1.05);
}

.nav-cta:hover img {
  opacity: 0.9;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
  align-items: center;
  z-index: 2;
}

.hero-text {
  padding-right: 1rem;
  max-width: 550px;
}

.hero-badges {
  margin-top: 2rem;
}

.hero-badges img {
  height: 50px;
  transition: var(--transition);
}

.hero-badges img:hover {
  transform: scale(1.05);
}

/* Devices Wrapper */
.devices-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  width: 100%;
  perspective: 1000px;
}

/* Device Containers */
.device-container {
  position: relative;
  transform-style: preserve-3d;
}

.watch-container {
  width: 225px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  margin-left: -75px;
}

.phone-container {
  width: 300px;
  animation: float-delayed 7s ease-in-out infinite;
  margin-top: 25px;
  z-index: 1;
  transform: rotate(-12deg);
}

.watch-image, .phone-image {
  width: 100%;
  height: auto;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-delayed {
  0% { transform: translateY(0px) rotate(-12deg); }
  50% { transform: translateY(-15px) rotate(-13deg); }
  100% { transform: translateY(0px) rotate(-12deg); }
}

/* Watch Overlay */
.watch-overlay {
  position: absolute;
  top: 41.5%;
  left: 65.5%;
  transform: translate3d(-50%, -50%, 35px) rotateY(20deg) rotateX(14deg) rotateZ(9deg);
  transform-style: preserve-3d;
  width: 62%;
  height: 62%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 3;
  margin-top: -5%;
}

/* Phone Overlay */
.phone-overlay {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.phone-status-bar {
  position: absolute;
  top: -128px;
  left: -55px;
  width: 60px;
  text-align: center;
}

.phone-status-bar .time-display {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 1;
  color: black;
}

.widget-box {
  background: linear-gradient(to bottom, #5393d3 0%, #255488 100%);
  min-height: 120px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.201);
  padding: 1rem;
  width: 100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.widget-box::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: -8px;
  width: 42px;
  height: 42px;
  background: url("images/plain-eyes-open.png") no-repeat center / contain;
  transform: rotate(-4deg);
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
}

.widget-box .word-display,
.widget-box .translation-display {
  position: relative;
  z-index: 2;
}

/* Shared Display Styles */
.time-display {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.watch-container .time-display {
  background: linear-gradient(to bottom, #fff, #ddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.word-display {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #fff;
  will-change: opacity;
  backface-visibility: hidden;
}

.translation-display {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  will-change: opacity;
  backface-visibility: hidden;
}

/* Background Parallax Elements */
.bg-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(101 181 251 / 40%) 0%, rgba(0, 0, 0, 0) 70%);
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* Features Grid */
.features-section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: #09111b;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgb(52 52 52 / 50%);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.card-image {
  height: 100px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

/* Parallax Scroll Section */
.parallax-scroll h2,
.parallax-scroll > .container > p {
  color: #ffffff;
}

.parallax-scroll {
  padding: 8rem 2rem;
  background: var(--bg-card);
  text-align: center;
  position: relative;
}

/* Pack chips */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.pack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
  justify-content: center;
}

.pack-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: default;
  transition: transform 0.2s ease;
}
.pack-chip:hover { transform: scale(1.04); }
.pack-chip .material-symbols-outlined { font-size: 1.2rem; color: inherit; }

.pc-blue   { background: rgba(26,111,168,0.25); border: 1px solid rgba(26,111,168,0.5);  color: #7ec8f4; }
.pc-orange { background: rgba(196,72,11,0.2);   border: 1px solid rgba(196,72,11,0.45); color: #f4966a; }
.pc-purple { background: rgba(122,58,154,0.2);  border: 1px solid rgba(122,58,154,0.4); color: #c890f0; }
.pc-green  { background: rgba(26,122,74,0.2);   border: 1px solid rgba(26,122,74,0.4);  color: #7ae8a8; }
.pc-teal   { background: rgba(26,138,138,0.2);  border: 1px solid rgba(26,138,138,0.4); color: #7ae8e8; }
.pc-red    { background: rgba(154,32,64,0.2);   border: 1px solid rgba(154,32,64,0.4);  color: #f090a8; }
.pc-dim    { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.45); }
.pc-dim .material-symbols-outlined { color: rgba(255,255,255,0.45); }

.stat-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

/* Flag Scroller */
.scroller {
  overflow: hidden;
  padding: 2rem 0;
  white-space: nowrap;
  position: relative;
}

.scroller-inner {
  display: inline-block;
}

.flag {
  height: 25px;
  width: auto;
  margin: 0 1.5rem;
  border-radius: 4px;
  vertical-align: middle;
}

.scroller-inner {
  will-change: transform;
}

/* Import Section */
.horizontal-card {
  flex-direction: row !important;
  align-items: center;
  gap: 1rem;
}

.horizontal-card .card-content {
  flex: 1.5;
}

.card-image-side {
  flex: 1;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: var(--transition);
}

@media (max-width: 768px) {
  nav {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  nav.nav-scrolled {
    transform: translateY(0);
    opacity: 1;
  }

  .horizontal-card {
    flex-direction: column-reverse !important;
  }
  
  .card-image-side {
    width: 100%;
    height: 100px;
  }
}

/* ── Import Section (Proposal A) ── */

/* Panel system */
.im-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.im-panel.active { opacity: 1; pointer-events: auto; }

/* Static word tags (AI Photo panel — no animation) */
.im-wtag-static {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
  animation: none !important;
}

/* Done counter variant */
.im-cam-done {
  background: rgba(70,164,248,0.2) !important;
  border-color: rgba(70,164,248,0.4) !important;
  color: rgba(70,164,248,1) !important;
}
.im-cam-done::before { background: rgba(70,164,248,1) !important; animation: none !important; }

/* CSV phone screen */
.im-csv-screen {
  position: absolute;
  inset: 0;
  background: #f8f8fa;
  display: flex;
  flex-direction: column;
  padding-top: 28px;
}
.im-csv-nav {
  height: 36px;
  background: linear-gradient(to bottom, #5566ff, #4455ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
  letter-spacing: 0.3px;
}
.im-csv-table { flex: 1; overflow: hidden; padding: 4px 0; }
.im-csv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid #e0e0e8;
  padding: 4px 8px;
  font-size: 8px;
}
.im-csv-row.im-csv-header {
  background: #eeeef8;
  font-weight: 700;
  color: #555;
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.im-c1 { color: #1a1a2e; font-weight: 600; }
.im-c2 { color: rgba(70,164,248,0.9); }
.im-csv-btn {
  margin: 6px 10px 10px;
  background: linear-gradient(135deg, #4455ee, #3344cc);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

/* Active card state */
.import-card { cursor: pointer; }
.import-card.ic-active {
  border-color: rgba(70,164,248,0.4) !important;
  background: rgba(70,164,248,0.06) !important;
}
.import-card.ic-active.ic-green {
  border-color: rgba(52,199,89,0.5) !important;
  background: rgba(52,199,89,0.08) !important;
}
.import-card.ic-active.ic-purple {
  border-color: rgba(122,58,154,0.4) !important;
  background: rgba(122,58,154,0.06) !important;
}

.import-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.im-phone {
  width: 200px;
  height: 400px;
  border-radius: 36px;
  border: 7px solid #1e1e2e;
  box-shadow: 0 0 0 1px #333, 0 24px 60px rgba(0,0,0,0.7);
  overflow: hidden;
  position: relative;
  background: #000;
  flex-shrink: 0;
}
.im-island {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 14px;
  background: #000;
  border-radius: 8px;
  z-index: 50;
}
.im-cam-bg {
  position: absolute;
  inset: 0;
  background: #e8e0d4;
  overflow: hidden;
}
.im-text-lines {
  position: absolute;
  inset: 0;
  padding: 30px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.im-tl { height: 7px; border-radius: 3px; background: rgba(60,40,20,0.18); }
.im-tl.bold  { background: rgba(60,40,20,0.32); }
.im-tl.short { width: 55%; }
.im-tl.med   { width: 78%; }
.im-tl.full  { width: 100%; }

.im-scan-zone { position: absolute; inset: 0; z-index: 10; }
.im-corner { position: absolute; width: 20px; height: 20px; }
.im-c-tl { top: 18%; left: 8%;  border-top: 2px solid #34c759; border-left: 2px solid #34c759; }
.im-c-tr { top: 18%; right: 8%; border-top: 2px solid #34c759; border-right: 2px solid #34c759; }
.im-c-bl { bottom: 24%; left: 8%;  border-bottom: 2px solid #34c759; border-left: 2px solid #34c759; }
.im-c-br { bottom: 24%; right: 8%; border-bottom: 2px solid #34c759; border-right: 2px solid #34c759; }

.im-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52,199,89,0.6) 15%, #34c759 50%, rgba(52,199,89,0.6) 85%, transparent);
  box-shadow: 0 0 10px 3px rgba(52,199,89,0.45), 0 0 20px 6px rgba(52,199,89,0.18);
  animation: imScanMove 2.8s cubic-bezier(0.4,0,0.6,1) infinite;
  z-index: 11;
}
@keyframes imScanMove {
  0%  { top: 18%; } 44% { top: 75%; } 50% { top: 75%; } 94% { top: 18%; } 100% { top: 18%; }
}
.im-scan-swept {
  position: absolute;
  left: 0; right: 0; top: 18%;
  background: rgba(52,199,89,0.06);
  animation: imSweepGrow 2.8s cubic-bezier(0.4,0,0.6,1) infinite;
  z-index: 9;
}
@keyframes imSweepGrow {
  0%  { height: 0; } 44% { height: 57%; } 50% { height: 57%; } 94% { height: 0; } 100% { height: 0; }
}

.im-wtag {
  position: absolute;
  background: rgba(0,0,0,0.78);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 3px 8px 3px 5px;
  font-size: 9.5px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: scale(0.75) translateY(5px);
  transform-origin: left center;
}
.im-wtag::before { content:''; width:5px; height:5px; border-radius:50%; background:#34c759; flex-shrink:0; }
.im-wtag .im-trans { color: rgba(70,164,248,0.9); font-weight: 500; }
.im-panel-scan .im-wtag:nth-child(1) { animation: imTagPop 2.8s ease-out 0.4s infinite; top:26%; left:10%; }
.im-panel-scan .im-wtag:nth-child(2) { animation: imTagPop 2.8s ease-out 0.9s infinite; top:36%; right:6%; }
.im-panel-scan .im-wtag:nth-child(3) { animation: imTagPop 2.8s ease-out 1.4s infinite; top:47%; left:8%; }
.im-panel-scan .im-wtag:nth-child(4) { animation: imTagPop 2.8s ease-out 1.9s infinite; top:57%; right:5%; }
.im-panel-scan .im-wtag:nth-child(5) { animation: imTagPop 2.8s ease-out 2.4s infinite; top:65%; left:12%; }
@keyframes imTagPop {
  0%  { opacity:0; transform:scale(0.75) translateY(5px); }
  6%  { opacity:1; transform:scale(1) translateY(0); }
  70% { opacity:1; }
  85% { opacity:0; }
  100%{ opacity:0; }
}

.im-cam-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 52px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
}
.im-cam-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 60%, transparent);
  z-index: 30;
  padding: 20px 12px 14px;
  text-align: center;
}
.im-cam-counter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(52,199,89,0.2);
  border: 1px solid rgba(52,199,89,0.4);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  color: #34c759;
}
.im-cam-counter::before { content:''; width:5px; height:5px; border-radius:50%; background:#34c759; animation:imBlink 1s ease infinite; }
@keyframes imBlink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.im-progress { position:absolute; top:12px; right:12px; width:36px; height:36px; z-index:35; }
.im-progress svg { width:100%; height:100%; transform:rotate(-90deg); }
.im-sp-track { fill:none; stroke:rgba(255,255,255,0.12); stroke-width:3; }
.im-sp-fill  { fill:none; stroke:#34c759; stroke-width:3; stroke-linecap:round;
               stroke-dasharray:88; animation:imProgressFill 2.8s linear infinite; }
@keyframes imProgressFill { 0%{stroke-dashoffset:88} 44%{stroke-dashoffset:0} 50%{stroke-dashoffset:0} 94%{stroke-dashoffset:88} 100%{stroke-dashoffset:88} }

.import-content { flex: 1; }
.import-content > p { color: rgba(255,255,255,0.5); font-size: 1rem; margin-bottom: 0; }

.import-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 2rem; }
.import-card {
  background: #09111b;
  border: 1px solid rgba(52,52,52,0.5);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.import-card.ic-green { border-color: rgb(52 199 89 / 12%); background: rgba(52,199,89,0.04); }
.ic-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ic-icon .material-symbols-outlined { font-size: 1.3rem; color: white; }
.ic-green .ic-icon { background: linear-gradient(135deg, #1a7a4a, #0d4d2e); }
.ic-blue  .ic-icon { background: linear-gradient(135deg, #1a5f9a, #0d3d6b); }
.ic-purple .ic-icon { background: linear-gradient(135deg, #4a2a7a, #2d1555); }
.ic-text h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.ic-text p  { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; margin: 0; }
.ic-badge {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(52,199,89,0.15);
  color: #34c759;
  border: 1px solid rgba(52,199,89,0.3);
}

@media (max-width: 768px) {
  .import-layout { flex-direction: column; align-items: stretch; gap: 1rem; }
  .import-content { display: contents; }
  .import-content h2,
  .import-content > p { order: 1; }
  .im-phone { order: 2; align-self: center; }
  .import-cards { order: 3; }
}

/* Footer */
footer {
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card);
}

.footer-links {
  margin: 2rem 0;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  margin: 0 1rem;
  transition: var(--transition);
}

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

/* Mobile Responsive */
@media (max-width: 900px) {
  h1 { font-size: 2.25rem; }

  .bg-gradient {
    top: 40%;
    left: 50%;
  }

  .parallax-scroll {
    padding: 4rem 2rem;
  }

  .parallax-scroll .card h3 {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .parallax-scroll .grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }

  .parallax-scroll .card-content {
    padding: 1rem;
  }

  .parallax-scroll .card-content p {
    display: none;
  }

  .features-section .card-content {
    padding: 1rem;
    flex: 0;
  }

  .features-section .card-content p {
    margin-bottom: 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-text {
    padding-right: 0;
    margin: 0 auto;
    order: 2;
  }

  .devices-wrapper {
    order: 1;
    flex-direction: row; 
    transform: scale(0.8);
  }

  .phone-overlay {
    width: 130px;
  }

  .phone-status-bar {
    top: -70px;
    left: -10px;
  }
  
  .widget-box {
    padding: 0.25rem;
    min-height: 65px;
  }

  .widget-box::before {
    width: 36px;
    height: 36px;
    left: -6px;
    bottom: -12px;
  }

  .phone-status-bar .time-display {
    font-size: 0.45rem;
  }

  .watch-container {
    width: 150px;
    margin-left: -35px;
  }

  .watch-container .time-display {
    font-size: 1.45rem;
  }

  .word-display {
    font-size: .85rem;
    margin-left: 5px;
  }

  .translation-display {
    font-size: 0.65rem;
    margin-left: 5px;
    margin-top: -4px;
  }

  .phone-container {
    width: 160px;
  }
}