/* ==========================================================================
   TAXLESS.MY — STUDENT ACCOUNTING & MFRS STUDY LINE
   Clean, Single-Screen Minimalist Layout (Gumbytes Style)
   ========================================================================== */

:root {
  --bg-main: #0a0a0d;
  --bg-card: rgba(20, 20, 26, 0.75);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Gumbytes Purple & Violet Tokens */
  --accent-purple: #8946ec;
  --accent-purple-light: #d2b4ff;
  --accent-purple-dark: #8039ea;
  --accent-emerald: #10b981;

  /* Typography */
  --text-pure: #ffffff;
  --text-main: #dbdff3;
  --text-muted: #9496a8;
  --text-dim: #64667a;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.25s;
}

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

html {
  font-size: 16px;
  color-scheme: dark;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

/* Ambient Glows */
.ambient_glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow_purple {
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 480px;
  background: radial-gradient(circle, rgba(137, 70, 236, 0.3) 0%, rgba(137, 70, 236, 0) 70%);
}

.glow_cyan {
  bottom: 5%;
  right: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(56, 189, 248, 0) 70%);
}

/* Page Wrapper */
.page_wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 3.5rem 1.5rem;
}

.container-large {
  width: 100%;
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.section_hero {
  text-align: center;
}

.hero_content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Brand Pill / Tagline */
.brand_pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0.75px dashed rgba(137, 70, 236, 0.45);
  background-color: rgba(137, 70, 236, 0.1);
  backdrop-filter: blur(4px);
  color: var(--accent-purple-light);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}

.brand_logo_mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #8039ea 0%, #9254ed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.brand_name {
  font-weight: 800;
  color: var(--text-pure);
  letter-spacing: -0.01em;
}

.brand_name span {
  color: var(--accent-purple-light);
}

.brand_divider {
  color: var(--accent-purple);
  opacity: 0.6;
}

.tagline_text {
  color: var(--accent-purple-light);
  font-weight: 500;
}

/* Heading */
.heading-style-h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #ffffff 10%, #d2b4ff 60%, #8946ec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero_subtext {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto 2.25rem auto;
  text-wrap: pretty;
}

/* Button */
.hero_button_group {
  margin-bottom: 3.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(180deg, #8039ea 0%, #9254ed 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.85rem;
  border-radius: 0.75rem;
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.36), 0 4px 18px rgba(128, 57, 234, 0.35);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), filter var(--duration);
  text-decoration: none;
  white-space: nowrap;
}

.button:hover {
  filter: brightness(1.08);
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.45), 0 6px 24px rgba(128, 57, 234, 0.5);
  transform: translateY(-1px);
}

.button:active {
  transform: scale(0.96);
}

.wa_svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.phone_badge {
  font-family: var(--font-mono);
  font-size: 0.775rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   WHATSAPP SIMULATED CHAT CARD (Gumbytes Hero Style)
   -------------------------------------------------------------------------- */
.hero_chat_card {
  position: relative;
  background-color: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.75rem;
  max-width: 38rem;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  text-align: left;
  overflow: hidden;
}

/* Top Glow Lines */
.card-line-glow-blur {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 1px;
  background: var(--accent-purple);
  filter: blur(6px);
  opacity: 0.85;
}

.card-line-glow-solid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-purple-light), transparent);
}

.chat_card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.chat_user_meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar_badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(137, 70, 236, 0.2);
  border: 1px solid rgba(137, 70, 236, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
}

.online_indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  border: 2px solid #141418;
}

.chat_name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-pure);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.verified_check {
  color: var(--accent-purple-light);
  font-size: 0.85rem;
}

.chat_status {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.chat_statute_pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-purple-light);
  background: rgba(137, 70, 236, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(137, 70, 236, 0.25);
}

.chat_stream {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.chat_bubble_row {
  display: flex;
}

.chat_bubble_row.is-client {
  justify-content: flex-end;
}

.chat_bubble_row.is-abear {
  justify-content: flex-start;
}

.chat_bubble {
  max-width: 88%;
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  font-size: 0.925rem;
  line-height: 1.5;
  position: relative;
}

.chat_bubble p + p {
  margin-top: 0.4rem;
}

.chat_bubble.is-client {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  border-bottom-right-radius: 4px;
}

.chat_bubble.is-abear {
  background: rgba(137, 70, 236, 0.12);
  border: 1px solid rgba(137, 70, 236, 0.3);
  color: #ffffff;
  border-bottom-left-radius: 4px;
}

.chat_time {
  display: block;
  font-size: 0.68rem;
  color: var(--text-dim);
  text-align: right;
  margin-top: 0.35rem;
}

.chat_attachment_pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin-top: 0.65rem;
}

.attachment_icon {
  font-size: 1.2rem;
}

.attachment_title {
  font-family: var(--font-mono);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--accent-purple-light);
}

.attachment_size {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.chat_card_footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  text-align: center;
}

.chat_footer_cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-purple-light);
  transition: color var(--duration);
}

.chat_footer_cta:hover {
  color: #ffffff;
}

.cta_arrow {
  transition: transform var(--duration);
}

.chat_footer_cta:hover .cta_arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .page_wrapper {
    padding: 2.5rem 1rem;
  }
  .heading-style-h1 {
    font-size: 2.1rem;
  }
  .hero_chat_card {
    padding: 1.25rem;
  }
  .button {
    width: 100%;
  }
}
