/* hero */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* features */
.product-features-section {
  position: relative;
}

/* tweak card */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-base);
}

.product-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* layout comps */
.product-main {
    flex-grow: 1;
    padding-top: calc(64px + 2rem);
    padding-left: 4rem;
    padding-right: 4rem;
    position: relative;
    padding-bottom: 4rem;
}

@media (max-width: 768px) {
    .product-main {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hidden-mobile {
        display: none !important;
    }
}

.glow-orb-tl {
    width: 800px;
    height: 800px;
    top: -200px;
    left: -200px;
}

.glow-orb-br {
    width: 600px;
    height: 600px;
    bottom: 20%;
    right: -100px;
    background-color: #135bec;
}

.bracket-pos-top-left { top: 100px; left: 4rem; }
.bracket-pos-top-right { top: 100px; right: 4rem; }
.bracket-pos-bottom-left { bottom: 4rem; left: 4rem; }
.bracket-pos-bottom-right { bottom: 4rem; right: 4rem; }

/* hero */
.product-hero {
    min-height: 819px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 4rem;
}

.hero-chip {
    color: white;
    margin-bottom: 2rem;
}

.hero-chip-icon {
    font-size: 16px;
    margin-right: 0.5rem;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 8vw, 110px);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    max-width: 64rem;
}

.hero-title-highlight {
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #0045bd, #135bec);
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #d1d5db;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.product-separator {
    margin-bottom: 4rem;
}

/* feature deep dive */
.feature-section {
    margin-bottom: 4rem;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .feature-grid { grid-template-columns: repeat(12, 1fr); }
    .feature-text { grid-column: span 5; }
    .feature-image-container { grid-column: span 7; }
}

.feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-chip {
    color: white;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #d1d5db;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list-icon {
    color: #0045bd;
}

.feature-image-container {
    height: 500px;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.feature-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mix-blend-mode: luminosity;
    transition: opacity 0.5s ease;
}

.feature-image-container:hover .feature-image {
    opacity: 0.6;
}

.feature-avatars {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.feature-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-avatar-primary {
    background-color: rgba(19, 91, 236, 0.2);
    border: 1px solid #0045bd;
}
.feature-avatar-text-primary { font-size: 0.75rem; color: #0045bd; }

.feature-avatar-tertiary {
    background-color: rgba(144, 46, 0, 0.2);
    border: 1px solid #902e00;
}
.feature-avatar-text-tertiary { font-size: 0.75rem; color: #902e00; }

/* bento grid */
.bento-section {
    margin-bottom: 4rem;
}

.bento-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bento-chip {
    color: white;
    margin-bottom: 1rem;
}

.bento-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: auto;
}
@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        height: 600px;
    }
    .bento-card-large {
        grid-column: span 2;
    }
}

.bento-card {
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    padding: 2rem;
}

.bento-card-large {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card-content {
    z-index: 10;
    max-width: 28rem;
}

.bento-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.bento-card-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #d1d5db;
}

.bento-card-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.bento-badge {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-color: rgba(0, 69, 189, 0.3);
}

.bento-badge-icon { color: #0045bd; }

.bento-badge-text {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.4em;
    font-weight: 400;
    color: white;
}

.bento-card-gradient {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 66.666667%;
    height: 66.666667%;
    background-image: linear-gradient(to top left, rgba(19, 91, 236, 0.2), transparent);
    pointer-events: none;
}

.bento-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-card-small {
    padding: 1.5rem;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-small-icon {
    color: #0045bd;
    margin-bottom: 1rem;
    font-size: 1.875rem;
}

.bento-small-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.bento-small-text {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.4em;
    font-weight: 400;
    color: #d1d5db;
}

/* cta */
.cta-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-glow {
    width: 400px;
    height: 400px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}
.glass-panel {
    background: rgba(29, 31, 40, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: #0045bd;
    opacity: 0.05;
    filter: blur(160px);
    pointer-events: none;
    z-index: -1;
}

.corner-bracket {
    position: absolute;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.corner-bracket-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner-bracket-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner-bracket-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.corner-bracket-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    box-shadow: inset 0 0 20px #135bec;
    border-color: #135bec;
}

.separator {
    width: 48px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0 auto;
}

.chip {
    background-color: #1a1f26;
    opacity: 0.8;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
}

/* mobile */
@media (max-width: 768px) {
  .feature-grid, .bento-grid {
    grid-template-columns: 1fr;
  }
  .product-hero, .feature-section, .bento-section, .cta-section {
    padding: 3rem 1rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .glass-panel {
    width: 100%;
    box-sizing: border-box;
  }
}
