@charset "UTF-8";
 :root {
--secondary: #1a1a2e;
--gray-50: #fafafa;
--gray-200: #e5e5e5;
--gray-400: #a3a3a3;
--gray-600: #525252;
--gray-800: #262626;
--white: #ffffff;
--shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
--radius: 12px;
}
.slack-immedio { nav {
position: fixed;
top: 0;
left: 0;
right: 0;
padding: 1rem 2rem;
background: rgba(255,255,255,0.98);
backdrop-filter: blur(12px);
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--gray-200);
}
.logo {
display: flex;
align-items: center;
gap: 0.5rem;
text-decoration: none;
}
.logo-text {
font-weight: 700;
font-size: 1.5rem;
letter-spacing: -0.02em;
}
.logo-badge {
background: linear-gradient(135deg, #4A154B, #611f69);
color: white;
font-size: 0.7rem;
font-weight: 600;
padding: 0.25rem 0.5rem;
border-radius: 4px;
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}
.nav-links a {
text-decoration: none;
color: var(--gray-600);
font-weight: 500;
font-size: 0.95rem;
transition: color 0.2s;
}
.nav-links a:hover {
color: var(--color-brand-blueMedium);
} .hero {
display: flex;
align-items: center;
padding: 64px 16px;
position: relative;
overflow: hidden;
text-align: left;
}
.hero::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: radial-gradient(ellipse at top right, rgba(85,169,212,0.06) 0%, transparent 60%);
pointer-events: none;
}
.hero-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.hero-text-logo {
max-width: 200px;
margin-bottom: 32px;
}
.hero-text-logo img {
max-width: 100%;
object-fit: contain;
}
.hero-text h1 {
font-size: 2.75rem;
font-weight: bold;
line-height: 1.3;
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
}
.hero-text h1 .highlight {
color: var(--color-brand-blue);
}
.hero-text .lead {
font-size: 1.125rem;
margin-bottom: 2rem;
max-width: 480px;
}
.login-info {
background-color: var(--color-brand-blueNeutral);
color: var(--color-brand-blue);
padding: 16px;
font-weight: bold;
border-radius: 8px;
text-align: center;
margin: 16px 0;
} .btn-slack {
display: inline-flex;
align-items: center;
gap: 0.75rem;
background: #4A154B;
color: white;
padding: 16px 16px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
font-size: 1rem;
transition: all 0.2s ease;
box-shadow: 0 2px 8px rgba(74,21,75,0.25);
}
.btn-slack img {
width: 28px;
height: 28px;
}
.btn-slack:hover {
background: #611f69;
transform: translateY(-1px);
box-shadow: 0 4px 16px rgba(74,21,75,0.3);
}
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--gray-600);
padding: 0.875rem 1.25rem;
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
transition: color 0.2s;
}
.btn-secondary:hover {
color: var(--color-brand-blueMedium);
}
.cta-group {
display: flex;
gap: 1rem;
flex-wrap: wrap;
align-items: center;
} .hero-visual {
position: relative;
}
.slack-mockup {
background: var(--color-white);
border-radius: 8px;
box-shadow: var(--shadow-lg);
overflow: hidden;
border: 1px solid var(--color-brand-borderGray);
}
.slack-header {
background: #4A154B;
padding: 0.75rem 1rem;
display: flex;
align-items: center;
gap: 0.75rem;
}
.slack-dots {
display: flex;
gap: 6px;
}
.slack-dots span {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255,255,255,0.3);
}
.slack-channel {
color: white;
font-weight: 600;
font-size: 0.9rem;
}
.slack-body {
padding: 1.25rem;
}
.slack-message {
display: flex;
gap: 0.75rem;
border-radius: 8px;
opacity: 1;
}
.slack-message:nth-child(1) {
animation-delay: 0.3s;
}
.slack-avatar {
width: 36px;
height: 36px;
border-radius: 6px;
background: #5BA4D0;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 700;
font-size: 0.85rem;
flex-shrink: 0;
}
.slack-content {
flex: 1;
text-align: left;
}
.slack-sender {
font-weight: bold;
font-size: 0.9rem;
margin-bottom: 0.25rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.slack-sender .app-badge {
background: var(--color-brand-blue);
color: white;
font-size: 0.65rem;
padding: 0.15rem 0.35rem;
border-radius: 3px;
font-weight: 500;
}
.slack-time {
color: var(--gray-400);
font-size: 0.75rem;
font-weight: 400;
}
.slack-text {
font-size: 0.9rem;
color: var(--gray-600);
line-height: 1.5;
}
.slack-text strong {
font-size: 15px;
}
.slack-card {
background: var(--gray-50);
border-left: 3px solid var(--color-brand-blue);
padding: 0.75rem;
border-radius: 0 6px 6px 0;
margin-top: 0.5rem;
font-size: 0.85rem;
}
.slack-card-row {
display: flex;
gap: 1rem;
margin-bottom: 0.35rem;
}
.slack-card-row:last-child {
margin-bottom: 0;
}
.slack-card-label {
color: var(--gray-400);
min-width: 60px;
}
.slack-card-value {
color: var(--gray-800);
font-weight: 500;
}
.slack-mention {
background: rgba(29, 155, 209, 0.1);
color: #1d9bd1;
padding: 4px 6px;
border-radius: 3px;
font-weight: bold;
font-size: 12px;
}
.slack-details {
margin-top: 0.75rem;
font-size: 0.85rem;
}
.slack-detail-section {
margin-bottom: 0.6rem;
}
.slack-detail-section:last-child {
margin-bottom: 0;
}
.slack-detail-label {
font-weight: bold;
display: block;
margin-bottom: 0.15rem;
font-size: 15px;
}
.slack-detail-content {
color: var(--gray-600);
line-height: 1.5;
}
.slack-link {
color: #1d9bd1;
word-break: break-all;
} .features {
padding: 64px 16px;
background: var(--white);
}
.section-header {
text-align: center;
margin: 0 auto 4rem;
}
.section-label {
display: inline-block;
background: var(--color-brand-blueNeutral);
color: var(--color-brand-blueMedium);
padding: 0.4rem 1rem;
border-radius: 100px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 1rem;
}
.section-header h2 {
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
}
.section-header p {
color: var(--gray-600);
font-size: 1.05rem;
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
max-width: 1100px;
margin: 0 auto;
}
.feature-card {
background: var(--gray-50);
padding: 2rem;
border-radius: var(--radius);
transition: all 0.3s ease;
border: 1px solid transparent;
}
.feature-icon {
width: 48px;
height: 48px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
font-size: 2.5rem;
margin-bottom: 1.25rem;
}
.feature-card h3 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.feature-card p {
color: var(--gray-600);
font-size: 0.95rem;
line-height: 1.7;
} .how-it-works {
padding: 64px 16px;
background: var(--color-light-gray-light);
}
.how-it-works .section-label {
background: var(--color-brand-blueNeutral);
color: var(--color-brand-blue);
}
.steps-container {
max-width: 900px;
margin: 0 auto;
}
.step-item {
display: grid;
grid-template-columns: 60px 1fr;
gap: 1.5rem;
margin-bottom: 2.5rem;
position: relative;
text-align: left;
}
.step-item:last-child {
margin-bottom: 0;
}
.step-item::before {
content: '';
position: absolute;
left: 29px;
top: 60px;
bottom: -2.5rem;
width: 2px;
background: rgba(255,255,255,0.1);
}
.step-item:last-child::before {
display: none;
}
.step-number {
width: 60px;
height: 60px;
background: var(--color-brand-blue);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Inter', sans-serif;
font-weight: 700;
font-size: 1.25rem;
color: var(--white);
position: relative;
z-index: 1;
}
.step-content h3 {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.step-content p {
font-size: 0.95rem;
line-height: 1.7;
}
.step-content code {
background: rgba(255,255,255,0.1);
padding: 0.2rem 0.5rem;
border-radius: 4px;
font-family: 'SF Mono', monospace;
font-size: 0.85rem;
} .ai-disclaimer {
padding: 3rem 2rem;
background: linear-gradient(135deg, #fffbeb, #fef3c7);
}
.disclaimer-box {
max-width: 800px;
margin: 0 auto;
display: flex;
gap: 1.25rem;
align-items: flex-start;
}
.disclaimer-icon {
width: 44px;
height: 44px;
background: #f59e0b;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
flex-shrink: 0;
}
.disclaimer-content h3 {
font-size: 1rem;
font-weight: 600;
margin-bottom: 0.35rem;
color: #92400e;
}
.disclaimer-content p {
color: #78350f;
font-size: 0.9rem;
line-height: 1.6;
} .cta-section {
padding: 64px 16px;
text-align: center;
}
.cta-box {
max-width: 600px;
margin: 0 auto;
}
.cta-box h2 {
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 1rem;
}
.cta-box p {
color: var(--gray-600);
margin-bottom: 2rem;
font-size: 1.05rem;
} footer {
background: var(--secondary);
color: var(--white);
padding: 4rem 2rem 2rem;
}
.footer-content {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 3rem;
}
.footer-brand .logo-text {
color: var(--white);
margin-bottom: 1rem;
display: inline-block;
}
.footer-brand p {
color: rgba(255,255,255,0.6);
font-size: 0.9rem;
max-width: 280px;
line-height: 1.7;
}
.footer-section h4 {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 1.25rem;
color: rgba(255,255,255,0.5);
}
.footer-section ul {
list-style: none;
}
.footer-section li {
margin-bottom: 0.6rem;
}
.footer-section a {
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s;
}
.footer-section a:hover {
color: var(--white);
}
.footer-bottom {
max-width: 1100px;
margin: 3rem auto 0;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.85rem;
color: rgba(255,255,255,0.5);
}
.footer-legal a {
color: rgba(255,255,255,0.5);
text-decoration: none;
margin-left: 1.5rem;
transition: color 0.2s;
}
.footer-legal a:hover {
color: var(--white);
} @media (max-width: 1024px) {
.hero-container {
grid-template-columns: 1fr;
text-align: center;
}
.hero-text-logo {
margin: auto auto 24px auto;
}
.hero-text h1 {
font-size: 26px;
}
.hero-text .lead {
margin: 0 auto 2rem;
}
.nav-links {
display: none;
}
.cta-group {
justify-content: center;
}
.cta-box h2,
.section-header h2 {
font-size: 24px;
}
.features-grid {
grid-template-columns: 1fr;
max-width: 500px;
}
.step-item {
grid-template-columns: 1fr;
gap: 1rem;
}
.step-item::before {
display: none;
}
.step-number {
width: 48px;
height: 48px;
font-size: 1rem;
}
.footer-content {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {
.footer-content {
grid-template-columns: 1fr;
}
.footer-bottom {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.footer-legal a {
margin: 0 0.75rem;
}
}
}