:root {
	--blue-900: #0b3fcc;
	--blue-700: #1a5fff;
	--blue-600: #3d7aff;
	--blue-500: #5b92ff;
	--blue-400: #87b0ff;
	--blue-50: #ebf0ff;
	--cyan-500: #06b6d4;
	--gray-900: #0a0f1e;
	--gray-700: #2d3a5e;
	--gray-500: #5b6b93;
	--gray-300: #c4cde8;
	--gray-200: #dde3f0;
	--gray-100: #edf1fc;
	--white: #ffffff;

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-pill: 999px;

	--shadow-sm: 0 1px 2px rgba(10, 15, 30, 0.06);
	--shadow-md: 0 8px 24px rgba(26, 95, 255, 0.12);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	font-family:
		"Inter",
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		sans-serif;
	color: var(--gray-900);
	background:
		radial-gradient(1200px 600px at 85% -10%, rgba(91, 146, 255, 0.2), transparent 60%),
		radial-gradient(900px 500px at -10% 110%, rgba(26, 95, 255, 0.12), transparent 60%), linear-gradient(180deg, #ffffff 0%, #f7f9ff 60%, #ebf0ff 100%);
	min-height: 100%;
	display: flex;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
}

.card {
	width: 100%;
	max-width: 560px;
	text-align: center;
}

/* Logo */
.logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	user-select: none;
}

.logo-mark {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-md);
}

.logo-mark svg {
	width: 22px;
	height: 22px;
	color: #ffffff;
}

.logo-text {
	font-weight: 700;
	font-size: 22px;
	letter-spacing: -0.01em;
	color: var(--gray-900);
	width: 112px;
	display: flex;
}

.logo-text img {
	width: 100%;
}

.logo-text span {
	color: var(--blue-700);
}

/* Animation */
.anim {
	margin: 8px auto 24px;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.anim svg {
	width: 56px;
	height: 56px;
	color: var(--blue-700);
	animation: spin 6s linear infinite;
	transform-origin: 50% 50%;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.anim svg {
		animation: none;
	}
}

/* Badge */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	background: var(--blue-50);
	color: var(--blue-700);
	border: 1px solid rgba(26, 95, 255, 0.15);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue-700);
	box-shadow: 0 0 0 4px rgba(26, 95, 255, 0.15);
}

/* Title & description */
h1 {
	font-size: 32px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	font-weight: 700;
	margin: 0 0 14px;
	color: var(--gray-900);
}

p.lead {
	font-size: 16px;
	line-height: 1.6;
	color: var(--gray-500);
	margin: 0 auto 32px;
	max-width: 460px;
}

/* Actions */
.actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.actions button {
	background: transparent;
	color: transparent;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, var(--blue-700), var(--blue-500)) !important;
	color: #ffffff !important;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	box-shadow: var(--shadow-md);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		filter 0.15s ease;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	transform: translateY(-1px);
	filter: brightness(1.03);
	box-shadow: 0 10px 28px rgba(26, 95, 255, 0.22);
}

.btn-primary:focus-visible {
	outline: 3px solid rgba(26, 95, 255, 0.35);
	outline-offset: 2px;
}

.link-secondary {
	color: var(--blue-700);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	border-bottom: 1px solid transparent;
	transition:
		border-color 0.15s ease,
		color 0.15s ease;
}

.link-secondary:hover {
	border-bottom-color: var(--blue-500);
	color: var(--blue-600);
}

.link-secondary:focus-visible {
	outline: 3px solid rgba(26, 95, 255, 0.35);
	outline-offset: 4px;
	border-radius: 4px;
}

/* Footer */
footer {
	text-align: center;
	padding: 24px 24px 32px;
	color: var(--gray-500);
	font-size: 13px;
}

footer .sep {
	color: var(--gray-300);
	margin: 0 6px;
}

/* Responsive */
@media (max-width: 480px) {
	h1 {
		font-size: 26px;
	}
	p.lead {
		font-size: 15px;
	}
	.container {
		padding: 32px 20px;
	}
}

.gcal-demo-target {
  display: inline-flex;
  align-items: center;
}

.gcal-demo-target button.gcal-demo-btn,
.gcal-demo-target a.gcal-demo-btn,
.gcal-demo-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  padding: 11px 18px !important;
  border-radius: 999px !important;

  border: none !important;
  outline: none !important;

  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  color: #ffffff !important;
  box-shadow: 0 12px 30px -14px rgba(20, 184, 166, 0.7) !important;

  cursor: pointer !important;
  white-space: nowrap !important;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease) !important;
}

.gcal-demo-target button.gcal-demo-btn:hover,
.gcal-demo-target a.gcal-demo-btn:hover,
.gcal-demo-btn:hover {
  transform: translateY(-2px) !important;
}