@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --bg-color: #050505;
  --surface-color: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  
  /* Brand Colors */
  --brand-purple: #C330DD;
  --brand-orange: #FF9F43;
  --blob-1-color: rgba(195, 48, 221, 0.4);
  --blob-2-color: rgba(255, 159, 67, 0.45);
  --accent-gradient: linear-gradient(135deg, var(--brand-purple), #e056fd);
  --orange-gradient: linear-gradient(135deg, var(--brand-orange), #ffca85);
  --blue-gradient: linear-gradient(135deg, var(--brand-blue), #38bdf8);
  --green-gradient: linear-gradient(135deg, var(--brand-green), #48b885);
  
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-blur: 12px;
  
  --container-width: 1100px;
  --section-spacing: 120px;
}

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

html {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-color);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: transparent;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  min-height: 100dvh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism Utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 24px;
}

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

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.secondary-gradient-text {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Header/Nav */
header {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

header .container {
  height: 100%;
  display: flex;
  align-items: center;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
  white-space: nowrap;
}

.logo-main {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: white;
  transition: opacity 0.2s ease;
}

.logo-main:hover {
  opacity: 0.8;
}

.logo-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em; 
  text-transform: none;
  color: rgba(255, 255, 255, 0.4); /* Slightly lighter base */
  margin: 0;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.logo-subtitle:hover {
  color: rgba(255, 255, 255, 0.8);
}

.logo-subtitle span:not(.secondary-gradient-text) {
  color: rgba(255, 255, 255, 0.9); /* Subdued white for 'hyperfixation' */
  transition: color 0.2s ease;
}

.logo-subtitle:hover span:not(.secondary-gradient-text) {
  color: #FFFFFF !important;
}

.logo-subtitle .secondary-gradient-text {
  font-weight: 700;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.logo-subtitle:hover .secondary-gradient-text {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.inter-black-italic {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  font-size: 48px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--blob-1-color) 0%, transparent 70%);
  filter: blur(80px);
  top: -200px;
  left: -200px;
  animation: float-slow 20s ease-in-out infinite alternate;
}

.hero-blob-2 {
  position: absolute;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, var(--blob-2-color) 0%, transparent 70%);
  filter: blur(100px);
  top: auto;
  left: auto;
  bottom: -300px;
  right: -200px;
  animation: float-slow 25s ease-in-out infinite alternate-reverse;
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(150px, 100px) scale(1.1) rotate(5deg); }
  100% { transform: translate(-50px, 200px) scale(1) rotate(-5deg); }
}

.hero-content {
  max-width: 700px;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-purple);
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.2;
  margin-bottom: 24px;
  padding-bottom: 10px; /* Extra space for descenders */
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent-gradient);
  border-radius: 30px;
  font-weight: 600;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(140, 61, 218, 0.3);
}

/* Sections */
section {
  padding: var(--section-spacing) 0;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 18px;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
  gap: 32px;
}

.project-card {
  height: 500px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

.uplifting-card {
  box-shadow: 0 10px 40px rgba(140, 61, 218, 0.05);
}

.headsup-card {
  box-shadow: 0 10px 40px rgba(228, 116, 24, 0.05);
}

.project-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.25);
}

.uplifting-card:hover {
  box-shadow: 0 20px 60px rgba(140, 61, 218, 0.2);
}

.headsup-card:hover {
  box-shadow: 0 20px 60px rgba(228, 116, 24, 0.15);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.project-title-meta {
  display: flex;
  flex-direction: column;
}

.project-card h3 {
  font-size: 28px;
  line-height: 1.2;
}

.project-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.project-links {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: auto;
  padding-top: 24px;
}

.project-link {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.project-tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  width: fit-content;
  margin-bottom: 16px;
}

/* Specific Project Accents */
.uplifting-card .gradient-text { background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; }
.headsup-card .gradient-text { background: var(--blue-gradient); -webkit-background-clip: text; background-clip: text; }

/* Hazard Tape Styling */
.hazard-tape {
  position: absolute;
  bottom: 10%;
  left: -20%;
  width: 140%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

/* Back Tape (No Text) */
.hazard-tape::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #d48c00,
    #d48c00 20px,
    #000000 20px,
    #000000 40px
  );
  transform: rotate(4deg);
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Front Tape (With Text) */
.hazard-tape::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    #d48c00,
    #d48c00 20px,
    #000000 20px,
    #000000 40px
  );
  transform: rotate(-2deg);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.android-card {
  text-align: center;
  padding: 60px 40px 100px !important;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: auto;
  justify-content: center;
}

.android-card .section-title {
  margin-bottom: 24px;
}

.android-card .cta-group {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 20px;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h3 {
  font-size: 32px;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tag {
  padding: 8px 16px;
  background: var(--surface-color);
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid var(--border-color);
  margin-bottom: 4px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* Footer */
footer {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.social-links a {
  color: var(--text-secondary);
  font-size: 20px;
}

.social-links a:hover {
  color: var(--text-primary);
}

.copyright {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.legal-links {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 40px; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { height: auto; min-height: 400px; padding: 32px; }
  .container { padding: 0 20px; }

  /* Mobile Nav */
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  /* Scale blobs for mobile */
  .hero-blob {
    width: 300px;
    height: 300px;
    filter: blur(40px);
    top: -150px;
    left: -150px;
  }

  .hero-blob-2 {
    width: 400px;
    height: 400px;
    filter: blur(50px);
    top: 50%;
    left: auto;
    bottom: auto;
    right: -150px;
    margin-top: -200px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
}

/* Subpage Styles */
.headsupmate-page .gradient-text {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.headsupmate-page .secondary-gradient-text {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.headsupmate-page .cta-button {
  background: var(--blue-gradient);
}

.uplifting-page .gradient-text {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.uplifting-page .secondary-gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.uplifting-page .cta-button {
  background: var(--orange-gradient);
}

.subpage-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  isolation: isolate;
}

.app-header-large {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.app-icon-large {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.icon-floating-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.app-icon-large.floating {
  animation: float 4s ease-in-out infinite;
  will-change: transform;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.beta-tag {
  display: inline-block;
  font-size: 14px;
  color: var(--text-secondary);
  background: var(--surface-color);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.hero-visual {
  margin-top: 80px;
}

.screenshot-container {
  padding: 12px;
  border-radius: 24px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.main-screenshot {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.screenshot-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* Problem Section */
.centered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.problem-card {
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-8px);
}

.problem-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

/* Feature Rows */
.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(6, 158, 252, 0.1);
  color: var(--brand-blue);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-row.reverse .feature-badge {
  background: rgba(95, 214, 157, 0.1);
  color: var(--brand-green);
}

.glass-bg-section {
  padding: 100px 0;
}

.privacy-box {
  padding: 60px;
  text-align: center;
}

.privacy-item {
  margin-top: 20px;
}

.privacy-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.final-cta {
  text-align: center;
  padding: 120px 0;
}

.final-cta .cta-button.large {
  padding: 20px 48px;
  font-size: 20px;
}

@media (max-width: 900px) {
  .centered-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-row, .feature-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.secondary-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.secondary-link:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

/* Secondary Button Style */
.cta-button.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: var(--text-primary);
}

.cta-group.centered {
  justify-content: center;
  margin-top: 40px;
}

/* Screenshot Carousel */
.carousel-section {
  padding: 40px 0;
  overflow: hidden;
}

.container.expanded {
  max-width: 1400px;
}

.carousel-wrapper {
  overflow-x: auto;
  padding-bottom: 20px; /* Space for scrollbar */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.carousel-wrapper::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.carousel-track {
  display: flex;
  gap: 32px;
  padding: 0 40px;
}

.carousel-item {
  flex: 0 0 auto;
  width: 280px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.carousel-item:hover {
  transform: translateY(-8px);
}

.carousel-item img {
  width: 100%;
  display: block;
}

/* Carousel Controls & Hero placement */
.carousel-container-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 56px;
  height: 56px;
  min-width: 56px; /* Prevent squashing */
  min-height: 56px; /* Prevent squashing */
  flex-shrink: 0;   /* Prevent squashing */
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* Narrative Section */
.narrative-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  text-align: left;
  line-height: 1.8;
  border-radius: 24px;
}

/* Fix alignment when nested in feature-row */
.feature-text .narrative-content {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.visual-constrained {
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

.narrative-content p {
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--text-secondary);
}

.narrative-content p:last-child {
  margin-bottom: 0;
}

/* Grids */
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.feature-card {
  padding: 32px;
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Scoped Feature Badges */
.uplifting-page .feature-badge {
  background: rgba(195, 48, 221, 0.1);
  color: var(--brand-purple);
}

.uplifting-page .feature-row.reverse .feature-badge {
  background: rgba(255, 159, 67, 0.1);
  color: var(--brand-orange);
}

@media (max-width: 768px) {
  .grid-2-col {
    grid-template-columns: 1fr;
  }
  .carousel-btn {
    display: none; /* Hide buttons on mobile, rely on touch scroll */
  }
}

/* Stacked Screenshots */
.stacked-screenshots {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.stacked-screenshots .screenshot-container {
  width: 90%;
  transition: transform 0.3s ease;
}

.stacked-screenshots .screenshot-container:hover {
  transform: scale(1.02);
  z-index: 10;
}

@media (max-width: 768px) {
  .stacked-screenshots .screenshot-container:last-child {
    margin: 24px auto 0 !important;
  }
}

/* Share Gallery */
.share-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.share-item {
  width: 280px;
  padding: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  cursor: pointer;
}

.share-item img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Playful rotation */
.share-item:nth-child(odd) {
  transform: rotate(-3deg);
}

.share-item:nth-child(even) {
  transform: rotate(3deg);
}

.share-item:hover {
  transform: rotate(0) scale(1.05) translateY(-10px);
  z-index: 10;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .share-gallery {
    gap: 20px;
  }
  
  .share-item {
    width: 220px;
  }
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.compact-card {
  padding: 24px;
}

.compact-card .feature-icon {
  margin-bottom: 12px;
  font-size: 28px;
}
