:root{
      --cream: #fff7e8;
      --cream-deep: #fff0d6;
      --orange: #ff8c5a;
      --orange-deep: #ef6f3b;
      --yellow: #ffd56a;
      --green: #8fc56b;
      --blue: #6eb6e8;
      --purple: #b696d8;
      --pink: #ffb6b6;
      --brown: #3f2d25;
      --text: #3b302a;
      --muted: #7c6b5f;
      --card: #ffffff;
      --border: #f0dfc8;
      --shadow: 0 10px 30px rgba(96, 64, 32, 0.08);
      --shadow-hover: 0 16px 36px rgba(96, 64, 32, 0.12);
      --radius-xl: 36px;
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-sm: 14px;
    }

    *{
      box-sizing: border-box;
    }

    html{
      scroll-behavior: smooth;
    }

    body{
      margin: 0;
      font-family: "Nunito", "Comic Neue", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 9% 12%, rgba(255, 213, 106, 0.24) 0 4px, transparent 5px),
        radial-gradient(circle at 92% 10%, rgba(182, 150, 216, 0.18) 0 5px, transparent 6px),
        radial-gradient(circle at 16% 78%, rgba(110, 182, 232, 0.15) 0 5px, transparent 6px),
        radial-gradient(circle at 82% 88%, rgba(255, 140, 90, 0.13) 0 6px, transparent 7px),
        linear-gradient(180deg, #fff7e8 0%, #fff4e2 46%, #fff7e8 100%);
      overflow-x: hidden;
    }

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

    .container{
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
    }

    .brand{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 30px;
      font-weight: 900;
      letter-spacing: -0.04em;
      white-space: nowrap;
    }

    .brand::before{
      content: "";
      width: 42px;
      height: 42px;
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.65), transparent 46%),
        linear-gradient(135deg, var(--orange), var(--yellow));
      box-shadow: 0 10px 24px rgba(255, 140, 90, 0.25);
      border: 2px solid rgba(255, 255, 255, 0.72);
    }

    .brand .brand-tot{
      color: var(--orange-deep);
    }

    .brand .brand-ink{
      color: #348fd2;
    }

    .hero{
      position: relative;
      overflow: hidden;
      border-radius: 0 0 36px 36px;
      background:
        radial-gradient(circle at 14% 18%, rgba(255, 213, 106, 0.38) 0 70px, transparent 72px),
        radial-gradient(circle at 83% 22%, rgba(255, 182, 182, 0.24) 0 84px, transparent 86px),
        linear-gradient(180deg, #fff3d8 0%, #fff8ec 100%);
    }

    .hero::before, .hero::after{
      content: "";
      position: absolute;
      pointer-events: none;
    }

    .hero::before{
      width: 420px;
      height: 170px;
      left: -130px;
      bottom: 24px;
      background:
        radial-gradient(circle at 18% 72%, #ffffff 0 35px, transparent 36px),
        radial-gradient(circle at 37% 54%, #ffffff 0 56px, transparent 57px),
        radial-gradient(circle at 61% 68%, #ffffff 0 44px, transparent 45px),
        radial-gradient(circle at 78% 70%, #ffffff 0 31px, transparent 32px);
      opacity: 0.58;
      filter: blur(0.2px);
    }

    .hero::after{
      right: 6%;
      top: 30px;
      width: 130px;
      height: 58px;
      background:
        linear-gradient(135deg, var(--orange) 0 50%, transparent 50%) 0 0 / 26px 28px repeat-x,
        linear-gradient(45deg, var(--blue) 0 50%, transparent 50%) 13px 0 / 26px 28px repeat-x;
      opacity: 0.38;
      border-radius: 16px;
    }

    .hero-inner{
      min-height: 510px;
      display: grid;
      grid-template-columns: 0.96fr 1.04fr;
      align-items: center;
      gap: 42px;
      padding: 54px 0 62px;
      position: relative;
      z-index: 1;
    }

    .eyebrow{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      color: #8b563d;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(240, 223, 200, 0.9);
      box-shadow: 0 8px 22px rgba(96, 64, 32, 0.05);
      font-size: 14px;
      font-weight: 900;
    }

    .eyebrow::before{
      content: "✦";
      color: var(--orange);
      font-size: 17px;
    }

    .hero-title{
      margin: 20px 0 18px;
      font-size: clamp(42px, 5vw, 64px);
      line-height: 1.08;
      letter-spacing: -0.055em;
      color: var(--brown);
      font-weight: 950;
      max-width: 640px;
    }

    .hero-title .soft-mark{
      position: relative;
      display: inline-block;
    }

    .hero-title .soft-mark::after{
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 4px;
      height: 14px;
      background: rgba(255, 213, 106, 0.55);
      border-radius: 999px;
      z-index: -1;
    }

    .hero-copy p{
      margin: 0;
      max-width: 520px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.72;
      font-weight: 650;
    }

    .hero-actions{
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 30px;
    }

    .button{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 14px;
      color: #3f2d25;
      border: 0;
      font-weight: 950;
      font-size: 15px;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(96, 64, 32, 0.10);
      transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
    }

    .button:hover{
      transform: translateY(-2px);
      filter: brightness(1.02);
      box-shadow: 0 14px 26px rgba(96, 64, 32, 0.13);
    }

    .button.orange{
      color: #fff;
      background: linear-gradient(180deg, var(--orange), var(--orange-deep));
    }

    .button.yellow{
      background: linear-gradient(180deg, #ffdf82, var(--yellow));
    }

    .button.blue{
      color: #fff;
      background: linear-gradient(180deg, #7cc5f4, #4a9dd7);
    }

    .hero-visual{
      position: relative;
      min-height: 414px;
    }

    .hero-blob{
      position: absolute;
      inset: 28px 0 18px 44px;
      border-radius: 42% 58% 50% 50% / 48% 44% 56% 52%;
      background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.9) 0 32px, transparent 34px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 213, 106, 0.25));
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .teacher-scene{
      position: absolute;
      right: 28px;
      top: 32px;
      width: 300px;
      height: 244px;
      border-radius: 34px;
      background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.78) 0 24px, transparent 25px),
        linear-gradient(180deg, #fff, #fff8ec);
      border: 1px solid rgba(240, 223, 200, 0.9);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .teacher-scene svg{
      width: 100%;
      height: 100%;
      display: block;
    }

    .hero-preview{
      position: absolute;
      width: 250px;
      min-height: 295px;
      border-radius: 24px;
      padding: 18px;
      background: #fff;
      border: 1px solid rgba(240, 223, 200, 0.94);
      box-shadow: 0 20px 46px rgba(96, 64, 32, 0.15);
      transform-origin: center;
    }

    .preview-name{
      left: 6px;
      top: 104px;
      transform: rotate(-7deg);
      z-index: 4;
    }

    .preview-scissor{
      right: 12px;
      bottom: 8px;
      transform: rotate(6deg);
      z-index: 3;
    }

    .worksheet-head{
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .worksheet-label{
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 10px;
      border-radius: 999px;
      color: #8a4c34;
      background: #fff0e7;
      font-size: 12px;
      font-weight: 950;
    }

    .worksheet-title{
      margin: 0 0 4px;
      color: var(--brown);
      font-size: 20px;
      font-weight: 950;
      letter-spacing: -0.03em;
    }

    .worksheet-sub{
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
    }

    .paper-holes{
      display: grid;
      gap: 5px;
      padding-top: 4px;
    }

    .paper-holes span{
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #f1e1cb;
    }

    .trace-word{
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 8px 0 14px;
      border-radius: 18px;
      background:
        linear-gradient(#fff 0 0) padding-box,
        repeating-linear-gradient(90deg, #ffd6c3 0 10px, transparent 10px 18px) border-box;
      border: 2px dashed #ffc3a8;
      color: rgba(63, 45, 37, 0.42);
      font-size: 44px;
      font-weight: 950;
      letter-spacing: 0.05em;
    }

    .writing-lines{
      display: grid;
      gap: 12px;
    }

    .writing-lines span{
      height: 1px;
      border-bottom: 2px dashed #ddbfa3;
    }

    .mini-doodles{
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 16px;
      color: #ff8c5a;
      font-size: 25px;
    }

    .scissor-paths{
      margin-top: 8px;
      display: grid;
      gap: 10px;
      padding: 12px;
      border-radius: 18px;
      background: #f8fbf3;
      border: 1px solid #e3eed8;
    }

    .path-line{
      height: 22px;
      position: relative;
      overflow: hidden;
    }

    .path-line svg{
      width: 100%;
      height: 100%;
      display: block;
    }

    .shape-row{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin: 14px 2px 0;
      color: var(--green);
      font-size: 24px;
    }

    .scissor-chip{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 15px;
      background: #eaf6df;
      color: #5f9e40;
      box-shadow: inset 0 0 0 1px rgba(143, 197, 107, 0.24);
    }

    .section{
      margin-top: 64px;
      position: relative;
    }

    .seo-links{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .seo-links a{
      display: block;
      padding: 14px 16px;
      border-radius: 18px;
      background: var(--card);
      border: 1px solid rgba(240, 220, 190, 0.85);
      box-shadow: var(--shadow);
      color: var(--brown);
      font-size: 14px;
      font-weight: 850;
      line-height: 1.35;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .seo-links a:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }

    @media (max-width: 900px){
      .seo-links{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 560px){
      .seo-links{ grid-template-columns: 1fr; }
    }

    .features{
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      margin-top: -22px;
      position: relative;
      z-index: 5;
    }

    .card{
      background: var(--card);
      border-radius: 24px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(240, 220, 190, 0.8);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .card:hover{
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .feature-card{
      min-height: 348px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .feature-top{
      padding: 18px 16px 0;
    }

    .feature-index{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      color: #fff;
      font-size: 14px;
      font-weight: 950;
      box-shadow: 0 8px 16px rgba(96, 64, 32, 0.11);
      margin-bottom: 12px;
    }

    .feature-card h3{
      margin: 0;
      font-size: 19px;
      line-height: 1.12;
      letter-spacing: -0.035em;
      color: var(--brown);
      font-weight: 950;
    }

    .feature-card p{
      margin: 7px 0 0;
      min-height: 38px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
      font-weight: 700;
    }

    .feature-preview{
      flex: 1;
      margin: 14px 14px 0;
      border-radius: 20px;
      border: 1px solid rgba(240, 220, 190, 0.68);
      background: #fffdf8;
      position: relative;
      overflow: hidden;
      min-height: 138px;
    }

    .feature-bottom{
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 16px;
      padding: 13px 16px 15px;
      font-size: 13px;
      font-weight: 950;
    }

    .feature-bottom span:last-child{
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.62);
    }

    .theme-orange .feature-index, .theme-orange .feature-bottom{
      background: #fff0e7;
      color: #bd5d36;
    }

    .theme-green .feature-index, .theme-green .feature-bottom{
      background: #edf7e4;
      color: #5a9440;
    }

    .theme-yellow .feature-index, .theme-yellow .feature-bottom{
      background: #fff6d8;
      color: #aa7621;
    }

    .theme-blue .feature-index, .theme-blue .feature-bottom{
      background: #eaf6fe;
      color: #3a86be;
    }

    .theme-purple .feature-index, .theme-purple .feature-bottom{
      background: #f3edf9;
      color: #7d62a4;
    }

    .theme-orange .feature-index{ background: var(--orange); color: #fff; }
    .theme-green .feature-index{ background: var(--green); color: #fff; }
    .theme-yellow .feature-index{ background: #f5ba34; color: #fff; }
    .theme-blue .feature-index{ background: var(--blue); color: #fff; }
    .theme-purple .feature-index{ background: var(--purple); color: #fff; }

    .preview-alpha{
      padding: 16px;
    }

    .alpha-main{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .alpha-main strong{
      font-size: 54px;
      color: rgba(239, 111, 59, 0.88);
      letter-spacing: -0.07em;
      line-height: 1;
    }

    .apple-icon{
      width: 52px;
      height: 52px;
      border-radius: 46% 54% 54% 46%;
      background: #ff8c5a;
      position: relative;
      box-shadow: inset 10px -10px 0 rgba(255, 255, 255, 0.12);
    }

    .apple-icon::before{
      content: "";
      position: absolute;
      top: -10px;
      left: 24px;
      width: 8px;
      height: 18px;
      border-radius: 8px;
      background: #8d6a41;
      transform: rotate(18deg);
    }

    .apple-icon::after{
      content: "";
      position: absolute;
      top: -11px;
      left: 31px;
      width: 22px;
      height: 13px;
      border-radius: 100% 0 100% 0;
      background: #8fc56b;
      transform: rotate(-15deg);
    }

    .trace-grid{
      margin-top: 16px;
      display: grid;
      gap: 9px;
    }

    .trace-grid span{
      height: 12px;
      border-top: 1px dashed #dfc0a7;
      border-bottom: 1px dashed #dfc0a7;
      background: linear-gradient(90deg, transparent, rgba(255, 140, 90, 0.06), transparent);
    }

    .pencil{
      position: absolute;
      left: 14px;
      bottom: 12px;
      width: 72px;
      height: 14px;
      background: #ffd56a;
      border-radius: 999px;
      transform: rotate(-18deg);
      box-shadow: inset -12px 0 0 #ffb14f;
    }

    .pencil::before{
      content: "";
      position: absolute;
      left: -13px;
      top: 0;
      width: 0;
      height: 0;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      border-right: 16px solid #d7a77d;
    }

    .pencil::after{
      content: "";
      position: absolute;
      right: -11px;
      top: 0;
      width: 16px;
      height: 14px;
      border-radius: 0 999px 999px 0;
      background: #ffb6b6;
    }

    .cut-shapes{
      height: 100%;
      padding: 17px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      align-content: center;
    }

    .cut-shape{
      width: 42px;
      height: 42px;
      margin: auto;
      border: 2px dashed #7dae5d;
      background: rgba(143, 197, 107, 0.07);
    }

    .cut-circle{ border-radius: 50%; }
    .cut-square{ border-radius: 12px; }
    .cut-triangle{
      border: 0;
      background: transparent;
      width: 0;
      height: 0;
      border-left: 24px solid transparent;
      border-right: 24px solid transparent;
      border-bottom: 43px dashed #8fc56b;
      opacity: 0.85;
    }

    .cut-star, .cut-heart{
      border: 0;
      background: transparent;
      font-size: 39px;
      color: rgba(143, 197, 107, 0.75);
      line-height: 1;
    }

    .cut-star::before{ content: "☆"; }
    .cut-heart::before{ content: "♡"; }

    .tiny-scissors{
      position: absolute;
      right: 16px;
      bottom: 12px;
      font-size: 31px;
      transform: rotate(-18deg);
    }

    .book-preview{
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(circle at 25% 26%, rgba(255, 213, 106, 0.25), transparent 34px),
        radial-gradient(circle at 74% 28%, rgba(143, 197, 107, 0.15), transparent 38px);
    }

    .open-book{
      width: 132px;
      height: 84px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
      transform: rotate(-3deg);
      filter: drop-shadow(0 10px 16px rgba(96, 64, 32, 0.10));
    }

    .open-book span{
      display: block;
      background: #fff;
      border: 2px solid #f0dfc8;
    }

    .open-book span:first-child{
      border-radius: 16px 4px 8px 18px;
      background:
        radial-gradient(circle at 55% 36%, #ffd56a 0 14px, transparent 15px),
        linear-gradient(90deg, transparent 0 45%, #e5c8aa 45% 47%, transparent 47%),
        #fffaf1;
    }

    .open-book span:last-child{
      border-radius: 4px 16px 18px 8px;
      background:
        radial-gradient(circle at 48% 36%, #8fc56b 0 8px, transparent 9px),
        radial-gradient(circle at 64% 42%, #ff8c5a 0 7px, transparent 8px),
        repeating-linear-gradient(0deg, transparent 0 13px, rgba(224, 195, 164, 0.6) 14px 15px),
        #fffaf1;
    }

    .bee{
      position: absolute;
      right: 25px;
      top: 22px;
      font-size: 24px;
      transform: rotate(12deg);
    }

    .slide-preview{
      padding: 14px;
      height: 100%;
    }

    .main-slide{
      height: 78px;
      border-radius: 16px;
      background:
        radial-gradient(circle at 20% 62%, #ffb6b6 0 11px, transparent 12px),
        radial-gradient(circle at 48% 54%, #ffd56a 0 13px, transparent 14px),
        radial-gradient(circle at 72% 61%, #8fc56b 0 12px, transparent 13px),
        linear-gradient(135deg, #e9f6ff, #ffffff);
      border: 1px solid #d7ecfb;
      padding: 10px;
    }

    .slide-title{
      width: 78%;
      height: 9px;
      border-radius: 999px;
      background: #6eb6e8;
      margin-bottom: 8px;
    }

    .slide-line{
      width: 52%;
      height: 6px;
      border-radius: 999px;
      background: rgba(110, 182, 232, 0.35);
    }

    .slide-thumbs{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 7px;
      margin-top: 10px;
    }

    .slide-thumbs span{
      height: 34px;
      border-radius: 10px;
      background: #f3fbff;
      border: 1px solid #d7ecfb;
    }

    .cutout-preview{
      height: 100%;
      position: relative;
      padding: 15px;
      background:
        linear-gradient(135deg, rgba(182, 150, 216, 0.12), transparent),
        #fffdf8;
    }

    .cutout-house{
      position: absolute;
      left: 18px;
      bottom: 18px;
      width: 70px;
      height: 54px;
      border-radius: 9px;
      background: #fff;
      border: 2px dashed #b696d8;
    }

    .cutout-house::before{
      content: "";
      position: absolute;
      top: -29px;
      left: 8px;
      width: 50px;
      height: 50px;
      background: #f3edf9;
      border-left: 2px dashed #b696d8;
      border-top: 2px dashed #b696d8;
      transform: rotate(45deg);
      border-radius: 8px 0 0 0;
    }

    .cutout-tree{
      position: absolute;
      right: 22px;
      bottom: 22px;
      width: 42px;
      height: 65px;
      border-radius: 50% 50% 42% 42%;
      background: rgba(143, 197, 107, 0.72);
      border: 2px dashed #7aaa59;
    }

    .cutout-tree::after{
      content: "";
      position: absolute;
      left: 18px;
      bottom: -18px;
      width: 8px;
      height: 25px;
      border-radius: 5px;
      background: #c49062;
    }

    .cutout-person{
      position: absolute;
      left: 92px;
      top: 34px;
      width: 38px;
      height: 76px;
    }

    .cutout-person::before{
      content: "";
      position: absolute;
      left: 10px;
      top: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #ffb6b6;
      border: 2px dashed #c78383;
    }

    .cutout-person::after{
      content: "";
      position: absolute;
      top: 25px;
      left: 5px;
      width: 30px;
      height: 44px;
      border-radius: 16px 16px 10px 10px;
      background: #fff;
      border: 2px dashed #b696d8;
    }

    .section-heading{
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 22px;
    }

    .section-title{
      margin: 0;
      font-size: clamp(31px, 3vw, 44px);
      line-height: 1.1;
      letter-spacing: -0.055em;
      color: var(--brown);
      font-weight: 950;
    }

    .section-kicker{
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      color: #9a6445;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .section-kicker::before{
      content: "";
      width: 28px;
      height: 3px;
      border-radius: 999px;
      background: var(--orange);
    }

    .section-text{
      margin: 10px 0 0;
      max-width: 610px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
      font-weight: 700;
    }

    .link-pill{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 42px;
      padding: 0 15px;
      border-radius: 999px;
      color: #bd5d36;
      background: rgba(255, 140, 90, 0.13);
      border: 1px solid rgba(255, 140, 90, 0.22);
      font-size: 14px;
      font-weight: 950;
      transition: 0.22s ease;
      white-space: nowrap;
    }

    .link-pill:hover{
      transform: translateY(-2px);
      background: rgba(255, 140, 90, 0.18);
    }

    .workflow{
      padding: 56px 46px;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 12% 22%, rgba(255, 213, 106, 0.22), transparent 75px),
        radial-gradient(circle at 90% 82%, rgba(110, 182, 232, 0.14), transparent 90px),
        rgba(255, 255, 255, 0.54);
      border: 1px solid rgba(240, 223, 200, 0.86);
      box-shadow: 0 16px 42px rgba(96, 64, 32, 0.06);
    }

    .workflow .section-heading{
      display: block;
      text-align: center;
      margin-bottom: 28px;
    }

    .workflow .section-text{
      margin-left: auto;
      margin-right: auto;
    }

    .workflow-steps{
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 15px;
      position: relative;
    }

    .workflow-step{
      position: relative;
      padding: 18px 14px 16px;
      text-align: center;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(240, 223, 200, 0.85);
      box-shadow: 0 8px 24px rgba(96, 64, 32, 0.06);
    }

    .workflow-step:not(:last-child)::after{
      content: "→";
      position: absolute;
      right: -16px;
      top: 44%;
      z-index: 2;
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #bd5d36;
      background: #fff1df;
      border: 1px solid #f0dfc8;
      font-weight: 950;
    }

    .step-no{
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-size: 12px;
      font-weight: 950;
      box-shadow: 0 8px 16px rgba(255, 140, 90, 0.24);
    }

    .step-icon{
      width: 58px;
      height: 58px;
      margin: 8px auto 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      background: #fff7e8;
      font-size: 27px;
    }

    .workflow-step h3{
      margin: 0;
      color: var(--brown);
      font-size: 16px;
      font-weight: 950;
      letter-spacing: -0.02em;
    }

    .workflow-step p{
      margin: 7px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 700;
    }

    .gallery-preview{
      margin-top: 66px;
    }

    .gallery-shell{
      position: relative;
      padding: 22px;
      border-radius: 32px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 248, 236, 0.76));
      border: 1px solid rgba(240, 223, 200, 0.86);
      box-shadow: 0 14px 40px rgba(96, 64, 32, 0.06);
    }

    .gallery-row{
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .gallery-card-link{
      color: inherit;
      text-decoration: none;
      display: block;
    }

    .gallery-card{
      min-height: 288px;
      overflow: hidden;
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(240, 220, 190, 0.88);
      box-shadow: 0 10px 24px rgba(96, 64, 32, 0.07);
      transition: 0.22s ease;
    }

    .gallery-card:hover{
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .resource-paper{
      margin: 13px;
      height: 178px;
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      background: #fffdf8;
      border: 1px solid rgba(224, 201, 170, 0.85);
      box-shadow: inset 0 0 0 7px rgba(255, 247, 232, 0.58);
    }

    .gallery-card h3{
      margin: 10px 15px 4px;
      color: var(--brown);
      font-size: 16px;
      line-height: 1.18;
      letter-spacing: -0.025em;
      font-weight: 950;
    }

    .gallery-card p{
      margin: 0 15px 15px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.42;
      font-weight: 750;
    }

    .paper-counting{
      background:
        radial-gradient(circle at 22% 32%, #ffd56a 0 13px, transparent 14px),
        radial-gradient(circle at 45% 43%, #ffb6b6 0 14px, transparent 15px),
        radial-gradient(circle at 72% 30%, #8fc56b 0 13px, transparent 14px),
        linear-gradient(180deg, #fffdf8, #fff8ec);
    }

    .number-boxes{
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
    }

    .number-boxes span{
      height: 28px;
      border-radius: 9px;
      background: #fff;
      border: 1px dashed #d7b893;
    }

    .paper-senses{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 20px;
      background: #f5fbff;
    }

    .sense-card{
      border-radius: 14px;
      background: #fff;
      border: 1px solid #dceefa;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 25px;
    }

    .paper-farm{
      background: #fffdf8;
      padding: 18px;
    }

    .farm-row{
      height: 34px;
      display: grid;
      grid-template-columns: 36px 1fr 36px;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 24px;
    }

    .farm-row i{
      display: block;
      height: 0;
      border-bottom: 2px dashed #c8aa86;
    }

    .paper-class{
      background:
        linear-gradient(180deg, #eaf6fe 0 62%, #fffdf8 62% 100%);
      padding: 16px;
    }

    .class-board{
      height: 84px;
      border-radius: 16px;
      background:
        radial-gradient(circle at 28% 56%, #ffd56a 0 13px, transparent 14px),
        radial-gradient(circle at 52% 56%, #ffb6b6 0 12px, transparent 13px),
        radial-gradient(circle at 75% 56%, #8fc56b 0 12px, transparent 13px),
        #ffffff;
      border: 1px solid #d7ecfb;
      margin-bottom: 13px;
    }

    .class-thumbs{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .class-thumbs span{
      height: 36px;
      border-radius: 11px;
      background: #fff;
      border: 1px solid #e8d7bf;
    }

    .paper-cutout{
      padding: 15px;
      background:
        radial-gradient(circle at 18% 26%, rgba(182, 150, 216, 0.22), transparent 38px),
        linear-gradient(180deg, #fffdf8, #f8f2ff);
    }

    .story-scene{
      position: relative;
      height: 100%;
    }

    .scene-house{
      position: absolute;
      left: 10px;
      bottom: 16px;
      width: 62px;
      height: 50px;
      border-radius: 10px;
      background: #fff;
      border: 2px dashed #b696d8;
    }

    .scene-house::before{
      content: "";
      position: absolute;
      left: 8px;
      top: -25px;
      width: 43px;
      height: 43px;
      background: #fff0d6;
      transform: rotate(45deg);
      border-left: 2px dashed #b696d8;
      border-top: 2px dashed #b696d8;
      border-radius: 8px 0 0 0;
    }

    .scene-tree{
      position: absolute;
      right: 10px;
      bottom: 17px;
      width: 40px;
      height: 78px;
      border-radius: 50%;
      background: rgba(143, 197, 107, 0.72);
      border: 2px dashed #75a955;
    }

    .scene-basket{
      position: absolute;
      left: 80px;
      bottom: 24px;
      width: 38px;
      height: 30px;
      border-radius: 0 0 16px 16px;
      border: 2px dashed #c49062;
      background: rgba(255, 213, 106, 0.24);
    }

    .gallery-controls{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
    }

    .round-control{
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      color: #8b563d;
      background: #fff;
      box-shadow: 0 8px 18px rgba(96, 64, 32, 0.08);
      cursor: pointer;
      font-size: 18px;
      font-weight: 950;
      transition: 0.22s ease;
    }

    .round-control:hover{
      transform: translateY(-2px);
    }

    .dots{
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .dots span{
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #e7d2b9;
    }

    .dots span.active{
      width: 22px;
      border-radius: 999px;
      background: var(--orange);
    }

    .about-section{
      margin-top: 66px;
      margin-bottom: 58px;
      display: grid;
      grid-template-columns: 0.86fr 1.1fr 0.86fr;
      gap: 24px;
      align-items: stretch;
      padding: 26px;
      border-radius: 36px;
      background:
        radial-gradient(circle at 10% 20%, rgba(255, 213, 106, 0.22), transparent 74px),
        radial-gradient(circle at 92% 82%, rgba(255, 182, 182, 0.20), transparent 86px),
        #fff;
      border: 1px solid rgba(240, 220, 190, 0.88);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .about-illustration, .about-bear{
      min-height: 308px;
      border-radius: 28px;
      background: linear-gradient(180deg, #fff8ec, #fff);
      border: 1px solid rgba(240, 223, 200, 0.82);
      overflow: hidden;
      position: relative;
    }

    .about-illustration svg, .about-bear svg{
      display: block;
      width: 100%;
      height: 100%;
    }

    .about-copy{
      padding: 18px 2px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-copy .section-title{
      margin-bottom: 13px;
    }

    .about-copy p{
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      font-weight: 720;
    }

    .about-benefits{
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .benefit{
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 13px;
      border-radius: 18px;
      background: #fffaf3;
      border: 1px solid rgba(240, 223, 200, 0.8);
    }

    .benefit-icon{
      flex: 0 0 38px;
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: #fff0e7;
      font-size: 20px;
    }

    .benefit strong{
      display: block;
      color: var(--brown);
      font-size: 14px;
      font-weight: 950;
    }

    .benefit span{
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
      font-weight: 700;
    }

    .badges{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }

    .badge{
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 34px;
      padding: 0 11px;
      border-radius: 999px;
      color: #79523f;
      background: #fff0d6;
      border: 1px solid rgba(240, 223, 200, 0.95);
      font-size: 12px;
      font-weight: 950;
    }

    @media (max-width: 1180px) {
      .container{
        width: min(100% - 36px, 1080px);
      }

      .features, .gallery-row{
        grid-template-columns: repeat(3, 1fr);
      }

      .workflow-steps{
        grid-template-columns: repeat(3, 1fr);
      }

      .workflow-step:not(:last-child)::after{
        display: none;
      }

      .about-section{
        grid-template-columns: 1fr;
      }

      .about-illustration, .about-bear{
        min-height: 260px;
      }
    }

    @media (max-width: 900px) {

      .hero-inner{
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 42px 0 50px;
      }

      .hero-visual{
        min-height: 430px;
      }

      .teacher-scene{
        right: 50%;
        transform: translateX(50%);
        top: 2px;
      }

      .preview-name{
        left: 0;
        top: 130px;
      }

      .preview-scissor{
        right: 0;
        bottom: 0;
      }

      .features{
        margin-top: 36px;
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-row{
        display: flex;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
      }

      .gallery-card{
        flex: 0 0 250px;
        scroll-snap-align: start;
      }

      .section-heading{
        align-items: flex-start;
        flex-direction: column;
      }

      .workflow{
        padding: 42px 22px;
      }

      .workflow-steps{
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 620px) {
      .container{
        width: min(100% - 24px, 540px);
      }

      .hero-title{
        font-size: 40px;
      }

      .hero-copy p{
        font-size: 16px;
      }

      .hero-actions{
        flex-direction: column;
        align-items: stretch;
      }

      .button{
        width: 100%;
      }

      .hero-visual{
        min-height: 620px;
      }

      .teacher-scene{
        width: 100%;
        max-width: 310px;
      }

      .hero-preview{
        width: min(100%, 270px);
      }

      .preview-name{
        left: 50%;
        transform: translateX(-50%) rotate(-4deg);
        top: 250px;
      }

      .preview-scissor{
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(4deg);
        bottom: 0;
      }

      .features, .workflow-steps{
        grid-template-columns: 1fr;
      }

      .feature-card{
        min-height: 330px;
      }

      .about-section{
        padding: 16px;
      }

      .about-illustration, .about-bear{
        min-height: 220px;
      }
    }
  
    /* Integrated with existing TotInk homepage structure */
    body.totink-education-home{
      margin: 0;
      min-height: 100vh;
    }

    .skip-link{
      position: fixed;
      left: 18px;
      top: -90px;
      z-index: 1000;
      padding: 10px 14px;
      border-radius: 999px;
      background: #fff;
      box-shadow: var(--shadow);
      text-decoration: none;
      color: var(--brown);
      font-weight: 900;
      transition: top .16s ease;
    }

    .skip-link:focus{
      top: 18px;
    }

    .nav-actions{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .nav-cta{
      min-height: 38px;
      padding: 0 13px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(180deg, var(--orange), var(--orange-deep));
      font-size: 13px;
      font-weight: 950;
      box-shadow: 0 10px 22px rgba(255, 140, 90, 0.20);
    }

    .resource-search{
      width: min(100%, 540px);
      min-height: 54px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      padding: 7px;
      border: 1px solid rgba(240, 223, 200, 0.92);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 14px 32px rgba(96, 64, 32, 0.08);
      backdrop-filter: blur(12px);
    }

    .resource-search input{
      min-width: 0;
      height: 40px;
      border: 0;
      outline: 0;
      background: transparent;
      padding: 0 8px 0 16px;
      color: var(--brown);
      font-size: 15px;
      font-weight: 800;
      font-family: inherit;
    }

    .resource-search input::placeholder{
      color: rgba(124, 107, 95, 0.72);
    }

    .resource-search button{
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--orange), var(--orange-deep));
      color: #fff;
      font-size: 18px;
      font-weight: 950;
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(255, 140, 90, 0.22);
    }

    .quick-resource-tabs{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .quick-resource-tabs a{
      min-height: 32px;
      display: inline-flex;
      align-items: center;
      padding: 0 11px;
      border-radius: 999px;
      color: #8b563d;
      background: rgba(255, 255, 255, 0.62);
      border: 1px solid rgba(240, 223, 200, 0.88);
      font-size: 12px;
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(96, 64, 32, 0.04);
    }

    .footer-copy p{
      margin: 12px 0 0;
      max-width: 360px;
      color: var(--muted);
      font-weight: 750;
      line-height: 1.55;
    }

    .footer-title{
      margin: 0 0 12px;
      color: var(--brown);
      font-size: 15px;
      font-weight: 950;
    }

    .footer-list{
      display: grid;
      gap: 9px;
    }

    .footer-list a{
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }

    .footer-list a:hover{
      color: var(--orange-deep);
    }

    @media (max-width: 1180px) {
    }

    @media (max-width: 760px) {
      .nav-actions{
        width: 100%;
        justify-content: space-between;
      }

      .nav-cta{
        flex: 1;
      }

      .resource-search{
        border-radius: 22px;
        grid-template-columns: 1fr auto;
      }
    }

  
  /* Popular Resources carousel: functional arrows + dots */
  .gallery-shell{
    overflow: hidden;
  }

  .gallery-row{
    display: flex !important;
    gap: 16px;
    overflow: visible !important;
    padding-bottom: 0 !important;
    transition: transform .36s ease;
    will-change: transform;
    scroll-snap-type: none !important;
  }

  .gallery-card{
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
  }

  .round-control:disabled{
    opacity: .42;
    cursor: not-allowed;
    transform: none;
  }

  .dots button{
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #e7d2b9;
    cursor: pointer;
    transition: width .22s ease, background .22s ease;
  }

  .dots button.active{
    width: 22px;
    border-radius: 999px;
    background: var(--orange);
  }

  @media (max-width: 900px) {
    .gallery-card{
      flex-basis: calc((100% - 16px) / 2);
    }
  }

  @media (max-width: 620px) {
    .gallery-row{
      gap: 14px;
    }

    .gallery-card{
      flex-basis: 100%;
    }
  }
