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

:root {
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  --color-bg: #FAFAFA;
  --color-text: #111827;
  --color-text-light: #6B7280;
  --color-white: #FFFFFF;
  --color-border: #F3F4F6;
  
  --color-primary: #111827;
  --color-primary-hover: #374151;
  --color-accent: #6366F1;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 20px 40px -10px rgba(0,0,0,0.05);
  
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.login-link {
  font-weight: 500;
  color: var(--color-text-light);
  transition: var(--transition);
}

.login-link:hover {
  color: var(--color-text);
}

/* Hero Section */
.hero {
  padding: 160px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.hero-title {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  color: #111;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: #4B5563;
  margin-bottom: 48px;
  line-height: 1.5;
}

/* Claim Form */
.claim-form {
  display: flex;
  align-items: center;
  max-width: 460px;
  background: white;
  border-radius: 16px;
  padding: 6px;
  border: 1px solid #E5E7EB;
  border-left: 4px solid #FF5A5F;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.claim-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.claim-prefix {
  font-weight: 600;
  color: #111;
  font-size: 18px;
}

.claim-input {
  border: none;
  outline: none;
  font-size: 18px;
  color: #9CA3AF;
  width: 100%;
  padding-left: 2px;
  background: transparent;
}

.btn-gradient {
  background: linear-gradient(135deg, #FF5A5F 0%, #D939CD 100%);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 15px;
  white-space: nowrap;
}

/* Hero Visuals */
.hero-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Floating Elements */
.floating-socials {
  position: absolute;
  left: 0px;
  top: 15%;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border: 2px solid white;
  background: #75E2FF;
}

/* Phone Mockup Update */
.phone-mockup {
  width: 320px;
  height: 660px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dark-theme-mockup {
  background: #0D1117;
  border: 12px solid #2d3139;
  color: white;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  padding-top: 54px;
  padding-left: 20px;
  padding-right: 20px;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 28px;
  background: #2d3139;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 10;
}

.phone-bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(46,160,67,0.2) 0%, rgba(0,0,0,0) 60%),
              radial-gradient(circle at bottom right, rgba(46,160,67,0.15) 0%, rgba(0,0,0,0) 60%);
  z-index: 0;
}

.profile-preview {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 2px solid #2d3139;
  object-fit: cover;
}

.profile-username {
  color: white;
  margin-bottom: 2px;
  font-size: 18px;
}

.profile-bio {
  color: #8b949e;
  margin-bottom: 24px;
  font-size: 13px;
}

.profile-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.green-btn {
  display: block;
  width: 100%;
  background: #0f4a25;
  border: none;
  color: white;
  border-radius: 24px;
  padding: 14px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  text-align: center;
}

.green-btn:hover {
  background: #196b37;
  transform: scale(1.02);
}

/* Chat Input */
.phone-chat-input {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 16px;
  z-index: 10;
}

.phone-chat-input input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  color: #111;
  background: transparent;
}

.chat-send {
  background: #6B7280;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
}

/* Floating Widget */
.floating-widget {
  position: absolute;
  bottom: 15%;
  right: -20px;
  background: #75E2FF;
  border-radius: 20px;
  display: flex;
  padding: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  z-index: 10;
  width: 240px;
}

.widget-left {
  position: relative;
  margin-right: 12px;
}

.widget-cover {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  display: none; /* We use a pseudo text overlay instead */
}

.widget-cover-text {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #111;
  background: white;
  border-radius: 12px;
  text-align: center;
}

.widget-cover-text strong {
  font-size: 11px;
  font-weight: 800;
  color: #E1306C;
  line-height: 1;
  margin-bottom: 2px;
}

.widget-cover-text span {
  font-size: 8px;
  font-weight: 600;
}

.widget-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}

.widget-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #111;
}

.widget-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.widget-time {
  font-size: 11px;
  font-weight: 600;
  color: #111;
}

.widget-play {
  background: none;
  border: none;
  font-size: 28px;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Themes Section */
.themes-section {
  padding: 120px 0;
  background: white;
  overflow: hidden;
}

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

.themes-header {
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #111;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.themes-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.themes-subtitle {
  font-size: 16px;
  color: #4B5563;
  margin-bottom: 32px;
  line-height: 1.5;
}

.btn-black {
  background: #111;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-black:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Themes Showcase */
.themes-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  padding: 40px 20px;
  overflow-x: auto;
}

.theme-phone {
  position: relative;
  width: 260px;
  height: 540px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.phone-inner {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  border: 8px solid #222;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 16px 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  background: white; /* default */
}

.phone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 10;
}

.theme-profile {
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.theme-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 8px;
  object-fit: cover;
}

.theme-profile h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.theme-profile p {
  font-size: 11px;
  opacity: 0.9;
}

.theme-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.theme-socials i {
  font-size: 16px;
}

.theme-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theme-btn {
  width: 100%;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* Phone Variants */
.phone-summer {
  transform: scale(1.08); /* slightly larger as per image */
  transform-origin: bottom;
  margin: 0 10px;
}
.phone-summer .phone-inner { background: #17A9FD; }
.phone-summer .theme-profile { color: white; }
.phone-summer .wavy-btn {
  background: #FFE600;
  color: #111;
  border-radius: 8px;
  position: relative;
}

.badge-float {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  color: #17A9FD;
  font-weight: 800;
  font-size: 12px;
  font-style: italic;
  white-space: nowrap;
}

.phone-beige .phone-inner { background: #F4EFE6; }
.phone-beige .theme-profile { color: #111; }
.phone-beige .outline-btn {
  background: transparent;
  border: 1.5px solid #111;
  border-radius: 8px;
  color: #111;
}

.phone-xmas .phone-inner {
  background: #133924; /* Add a pattern or gradient for xmas */
  background-image: radial-gradient(#1e5837 20%, transparent 20%), radial-gradient(#1e5837 20%, transparent 20%);
  background-position: 0 0, 50px 50px;
  background-size: 100px 100px;
}
.phone-xmas .dark-green-btn {
  background: #1B5E3A;
  border-radius: 20px;
  color: white;
}

.phone-light .phone-inner { background: #FAFAFA; }
.phone-light .theme-profile { color: #111; }
.phone-light .soft-white-btn {
  background: white;
  border-radius: 20px;
  color: #111;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.phone-glass .phone-inner {
  background: linear-gradient(to bottom, #1B2838, #0B111A);
}
.phone-glass .glass-btn {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  color: white;
  border: 1px solid rgba(255,255,255,0.05);
}

.phone-pink .phone-inner {
  background: #FF338D;
  background-image: radial-gradient(rgba(255,255,255,0.2) 20%, transparent 20%);
  background-size: 20px 20px;
}
.phone-pink .white-btn {
  background: white;
  border-radius: 8px;
  color: #FF338D;
}

/* How It Works */
.how-it-works {
  padding: 120px 0;
  background: var(--color-white);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 64px;
}

.step {
  padding: 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-bg);
  color: var(--color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 24px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 140px 24px;
  text-align: center;
  background: var(--color-bg);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 40px;
}

/* Footer */
.footer {
  padding: 48px 24px;
  background: var(--color-white);
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.02);
}

.footer .logo {
  font-size: 20px;
  color: #D1D5DB;
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--color-text-light);
  font-size: 14px;
}

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

.footer-copy {
  color: #9CA3AF;
  font-size: 13px;
}

/* --------------------------------- */
/* PROFILE PAGE STYLES */
/* --------------------------------- */

.profile-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 64px 24px;
}

.theme-gradient-bg {
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.profile-container {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-header {
  text-align: center;
  margin-bottom: 32px;
}

.profile-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--color-white);
}

.profile-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.profile-description {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
}

/* Social Icons */
.profile-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-text);
  background: transparent;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icon:hover {
  background: rgba(0,0,0,0.03);
  transform: scale(1.1);
}

/* Links List */
.profile-links-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.profile-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.profile-link-item:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: var(--shadow-md);
}

.profile-link-item:active {
  transform: scale(0.98);
}

.link-item-content {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
}

.link-item-content i {
  font-size: 24px;
}

.profile-link-item > i {
  color: var(--color-text-light);
}

/* Footer Branding */
.profile-branding {
  margin-top: auto;
  text-align: center;
}

.profile-branding a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.profile-branding a:hover {
  color: var(--color-text);
}

/* Responsive Tweaks */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .hero-content {
    margin: 0 auto;
  }
  .claim-form {
    margin: 0 auto;
  }
  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 60px;
  }
  .hero-title {
    font-size: 40px;
  }
  .nav-links .login-link {
    display: none; /* simple mobile view */
  }
  .profile-page {
    padding: 40px 20px;
  }
}

/* Bento Features Section */
.bento-features {
  padding: 100px 0;
  background: white;
}

.bento-header {
  margin-bottom: 60px;
}

.bento-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.bento-card {
  background: #F7F7F8;
  border-radius: 24px;
  padding: 32px 32px 0 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  min-height: 340px;
}

.span-2 {
  grid-column: span 2;
}

.bento-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
  color: #111;
  max-width: 90%;
}

.bento-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

/* Card 1: Domain */
.domain-browser {
  background: white;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.domain-bar {
  background: #22C55E;
  color: white;
  width: 100%;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.domain-profile {
  text-align: center;
}

.domain-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.domain-profile h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.domain-profile p {
  font-size: 11px;
  color: #666;
  margin-bottom: 16px;
}

.domain-btn {
  background: #F3F4F6;
  font-size: 11px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

/* Card 2: Complete Site */
.bento-complete {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.complete-widget {
  background: white;
  border-radius: 24px;
  padding: 32px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  margin-bottom: 24px;
}

.complete-widget h4 {
  font-size: 16px;
  font-weight: 700;
}

.complete-dots {
  display: flex;
  gap: 6px;
}

.complete-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D1D5DB;
}

.complete-dots span.active {
  background: #9CA3AF;
}

/* Card 3: Stats */
.bento-stats {
  padding-bottom: 32px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.stat-box {
  background: white;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.stat-box strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.stat-box span {
  font-size: 10px;
  color: #6B7280;
  font-weight: 600;
}

.stat-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}

.stat-chart .bar {
  width: 6px;
  background: #3B82F6;
  border-radius: 4px;
}

.bar.h1 { height: 16px; }
.bar.h2 { height: 24px; }
.bar.h3 { height: 12px; }
.bar.h4 { height: 32px; }

/* Card 4: Embeds */
.bento-embeds {
  width: 100%;
  height: 100%;
  position: relative;
}

.embed-collage {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 120%;
  height: 120%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  justify-content: center;
}

.ec-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ec-widget {
  background: #EA4335;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 8px;
  color: white;
  width: 160px;
}

.ec-widget img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.ec-info div:first-child {
  font-size: 10px;
  font-weight: 800;
}

.ec-bar {
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  margin-top: 4px;
}

.ec-video-container {
  position: relative;
  width: 140px;
}

.ec-video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: block;
}

.ec-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFDD00;
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Card 5: Phones */
.bento-phones {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  padding-top: 20px;
}

.mini-bento-phone {
  width: 140px;
  height: 280px;
  border-radius: 24px 24px 0 0;
  border: 6px solid #222;
  border-bottom: none;
  background: white;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mini-bento-phone .notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: #222;
  border-radius: 0 0 10px 10px;
}

.bp-1 { background: #FF338D; }
.bp-2 { background: #FAFAFA; }
.bp-3 { background: linear-gradient(135deg, #4A00E0, #8E2DE2); }

.bp-content {
  padding: 30px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  object-fit: cover;
}

.bp-line {
  width: 60%;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  margin-bottom: 8px;
}

.bp-btn {
  width: 100%;
  height: 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 8px;
}

.bp-2 .bp-avatar, .bp-2 .bp-line { background: rgba(0,0,0,0.1); }
.bp-2 .bp-btn { background: #8B5CF6; border-radius: 20px;}

/* Card 6: Email */
.bento-email {
  padding-bottom: 32px;
}

.email-popup {
  background: white;
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
}

.email-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: -48px auto 12px;
  border: 4px solid white;
}

.email-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.email-input {
  background: #F3F4F6;
  color: #9CA3AF;
  font-size: 12px;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 12px;
  text-align: left;
}

.email-btn {
  background: #007AFF;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
}

/* Card 7: Posts */
.bento-posts {
  padding-bottom: 32px;
}

.post-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

.post-tag {
  background: #3B82F6;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 12px;
}

.post-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.post-card p {
  font-size: 11px;
  color: #6B7280;
  line-height: 1.5;
}

/* Card 8: QR */
.bento-qr {
  padding-bottom: 32px;
}

.qr-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  border: 1px solid #F3E8FF;
}

.qr-code-img {
  margin-bottom: 12px;
}

.qr-text {
  font-size: 12px;
  font-weight: 800;
  color: #9333EA;
  letter-spacing: 1px;
}

.qr-stats {
  position: absolute;
  right: 20px;
  bottom: 40px;
  background: white;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.qr-stats strong {
  font-size: 14px;
  font-weight: 800;
}

.qr-stats span {
  font-size: 10px;
  color: #6B7280;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .span-2 {
    grid-column: span 1;
  }
}

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

/* Split Feature Section */
.split-feature {
  background-color: #2D68F8; /* The vivid blue */
  padding: 120px 0;
  overflow: hidden;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-text h2 {
  color: #D4FF00;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.split-text p {
  color: white;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}

.btn-neon {
  display: inline-block;
  background-color: #D4FF00;
  color: #111;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 40px;
  transition: transform 0.2s;
}

.btn-neon:hover {
  transform: translateY(-2px);
}

.split-visuals {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-bg-prop {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 40px;
  opacity: 0.8;
  transform: rotate(-10deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.split-phone {
  position: relative;
  width: 260px;
  height: 520px;
  background: #F4EBE1; /* Sandy beige */
  border-radius: 32px;
  border: 8px solid #222;
  padding: 40px 16px 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  transform: rotate(-5deg);
  z-index: 2;
  overflow: hidden;
}

.split-phone .notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #222;
  border-radius: 0 0 12px 12px;
  z-index: 10;
}

.sp-header {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.sp-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 0.9;
  color: #5C3D2E;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.sp-header p {
  font-size: 10px;
  color: #8C6A5D;
  font-weight: 600;
}

.sp-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-row {
  display: flex;
  gap: 12px;
}

.sp-btn {
  background: rgba(255,255,255,0.6);
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #5C3D2E;
}

.sp-btn.full {
  width: 100%;
}

.split-overlap-card {
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 200px;
  background: #000;
  border-radius: 20px;
  padding: 8px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transform: rotate(-5deg);
}

.soc-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  color: white;
  z-index: 2;
  font-size: 18px;
}

.split-overlap-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0.8;
}

.soc-content {
  padding: 12px 8px 8px;
}

.soc-content h4 {
  color: white;
  font-size: 14px;
  margin-bottom: 12px;
}

.soc-btn {
  width: 100%;
  background: #D4FF00;
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.split-floating-icons {
  position: absolute;
  bottom: 10%;
  right: 15%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.sf-icon {
  width: 40px;
  height: 40px;
  background: #D4FF00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
  .split-text {
    order: -1;
    text-align: center;
  }
  .split-text p {
    margin: 0 auto 40px;
  }
}

/* Share Feature Section */
.share-feature {
  background-color: #780016;
  padding: 120px 0;
  overflow: hidden;
}

.share-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.share-text h2 {
  color: #F8E2E9;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.share-text p {
  color: white;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}

.btn-pink {
  display: inline-block;
  background-color: #F8E2E9;
  color: #111;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 40px;
  transition: transform 0.2s;
}

.btn-pink:hover {
  transform: translateY(-2px);
}

.share-visuals {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-stack {
  position: relative;
  width: 300px;
  height: 300px;
  margin-right: 120px;
}

.stack-card {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 24px;
  padding: 24px;
  box-shadow: -10px 10px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

.sc-5 { background-color: #B59B9E; top: -60px; right: -120px; z-index: 1; transform: scale(0.85); }
.sc-4 { background-color: #FF2B6D; top: -15px; right: -90px; z-index: 2; transform: scale(0.9); }
.sc-3 { background-color: #55585D; top: 30px; right: -60px; z-index: 3; transform: scale(0.95); }
.sc-2 { background-color: #F02828; top: 75px; right: -30px; z-index: 4; transform: scale(1); }
.sc-1 { background-color: #2D68F8; top: 120px; right: 0px; z-index: 5; transform: scale(1.05); }

.sc-profile {
  margin-bottom: 24px;
}

.sc-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.2);
}

.sc-lines {
  flex: 1;
}

.sc-line {
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  margin-bottom: 12px;
  width: 80%;
}

.sc-line.short {
  width: 50%;
}

.sc-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  font-size: 24px;
}

.sc-tooltip {
  position: absolute;
  bottom: 20px;
  left: -40px;
  background: white;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.sc-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: white;
}

@media (max-width: 992px) {
  .share-grid {
    grid-template-columns: 1fr;
  }
  .share-text {
    text-align: center;
  }
  .share-text p {
    margin: 0 auto 40px;
  }
  .share-visuals {
    height: 400px;
  }
  .card-stack {
    transform: scale(0.8) translateX(60px);
    margin-right: 0;
  }
}
